Pagination: {
    after?: Nullable<string>;
    before?: Nullable<string>;
    limit?: Nullable<number>;
    page?: Nullable<number>;
    sortBy?: Nullable<DasApiParamAssetSortBy>;
}

Definition of the pagination parameters.

Type declaration

  • Optional after?: Nullable<string>

    Retrieve assets after the specified ID value.

  • Optional before?: Nullable<string>

    Retrieve assets before the specified ID value.

  • Optional limit?: Nullable<number>

    The maximum number of assets to retrieve.

  • Optional page?: Nullable<number>

    The index of the "page" to retrieve. The first page has index 1.

  • Optional sortBy?: Nullable<DasApiParamAssetSortBy>

    Sorting criteria.

Generated using TypeDoc