Interface ListAssetsResponse

interface ListAssetsResponse {
    cursor: string;
    remaining: number;
    result: AssetWithOrders[];
}

Hierarchy

  • ListAssetsResponse
    • ListAssetsResponse

Properties

cursor: string

Generated cursor returned by previous query

ListAssetsResponse

remaining: number

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

ListAssetsResponse

result: AssetWithOrders[]

Assets matching query parameters

ListAssetsResponse