Type alias ReadApiAssetList

ReadApiAssetList: {
    total: number;
    limit: number;
    items: ReadApiAsset[];
    page: Option<number>;
    before: Option<string>;
    after: Option<string>;
    errors: Option<ReadApiRpcResponseError[]>;
}

Type declaration

  • total: number
  • limit: number
  • items: ReadApiAsset[]

    listing of individual assets, and their associated metadata

  • page: Option<number>

    page is only provided when using page based pagination, as apposed to asset id before/after based pagination

  • before: Option<string>

    asset Id searching before

  • after: Option<string>

    asset Id searching after

  • errors: Option<ReadApiRpcResponseError[]>

    listing of errors provided by the ReadApi RPC

Generated using TypeDoc