getBillTransactions method
Implementation
Future<PaginatedBillTransactions> getBillTransactions({
required String billId,
String? before,
String? after,
int? perPage,
}) async {
return await invokeMethod<PaginatedBillTransactions>(
(j) => PaginatedBillTransactions.fromJson(j),
'autogen_getBillTransactions',
{
'env': this.env.index,
'accessToken': this.accessToken,
'bill_id': billId,
'before': before,
'after': after,
'per_page': perPage,
},
);
}