getAccountTransactions method
Implementation
Future<PaginatedAccountTransactions> getAccountTransactions({
required String accountId,
String? before,
String? after,
int? perPage,
}) async {
return await invokeMethod<PaginatedAccountTransactions>(
(j) => PaginatedAccountTransactions.fromJson(j),
'autogen_getAccountTransactions',
{
'env': this.env.index,
'accessToken': this.accessToken,
'account_id': accountId,
'before': before,
'after': after,
'per_page': perPage,
},
);
}