getUserTransactions method
Implementation
Future<PaginatedUserTransactions> getUserTransactions({
required String userId,
String? before,
String? after,
int? perPage,
}) async {
return await invokeMethod<PaginatedUserTransactions>(
(j) => PaginatedUserTransactions.fromJson(j),
'autogen_getUserTransactions',
{
'env': this.env.index,
'accessToken': this.accessToken,
'user_id': userId,
'before': before,
'after': after,
'per_page': perPage,
},
);
}