Represents a list of withdrawals.

interface WithdrawalList {
    meta: PagingResultMeta;
    withdrawals: Withdrawal[];
}

Properties

Properties

Paging information regarding the returned records, when response is paginated.

withdrawals: Withdrawal[]

The list of withdrawals.