@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
39 lines (38 loc) • 1.05 kB
text/typescript
export interface ListWalletTransactionsRequest {
/**
* ID of the wallet. String starting with **ewallet_**.
*/
wallet: `ewallet_${string}`;
/**
* Three-letter ISO 4217 code for the currency of the transactions. Uppercase.
*/
currency?: string;
/**
* Timestamp of the last transaction or later, in [*Unix time*](ref:glossary).
*/
end_date?: number;
/**
* The ID of the wallet transaction created after the last wallet transaction you want to retrieve. String starting with **wt_**.
*/
ending_before?: `wt_${string}`;
/**
* Page number to retrieve.
*/
page_number?: string;
/**
* Number of results per page.
*/
page_size?: string;
/**
* Timestamp of the first transaction or earlier, in [*Unix time*](ref:glossary).
*/
start_date?: number;
/**
* The ID of the wallet transaction created before the first wallet transaction you want to retrieve. String starting with **wt_**.
*/
starting_after?: `wt_${string}`;
/**
* Type of transaction.
*/
type?: string;
};