Interface ListWithdrawalsResponse

interface ListWithdrawalsResponse {
    cursor: string;
    remaining: number;
    result: Withdrawal[];
}

Hierarchy

  • ListWithdrawalsResponse
    • ListWithdrawalsResponse

Properties

cursor: string

Generated cursor returned by previous query

ListWithdrawalsResponse

remaining: number

Remaining results flag. 1: there are remaining results matching this query, 0: no remaining results

ListWithdrawalsResponse

result: Withdrawal[]

Withdrawals matching query parameters

ListWithdrawalsResponse