@bebapps/rapyd-sdk
Version:
An un-official [Rapyd](https://rapyd.net) SDK for Node.js.
11 lines (10 loc) • 340 B
text/typescript
export interface GetDetailsOfWalletTransactionRequest {
/**
* ID of the wallet. String starting with **ewallet_**.
*/
wallet: `ewallet_${string}`;
/**
* ID of the transaction, from the response to [List Wallet Transactions](ref:list-wallet-transactions). String starting with **wt_**.
*/
transaction: `wt_${string}`;
};