Interface CollectionsApiListCollectionsRequest

interface CollectionsApiListCollectionsRequest {
    pageSize?: number;
    cursor?: string;
    orderBy?:
        | "updated_at"
        | "name"
        | "address"
        | "project_id"
        | "created_at";
    direction?: string;
    blacklist?: string;
    whitelist?: string;
    keyword?: string;
}

Hierarchy

  • CollectionsApiListCollectionsRequest
    • CollectionsApiListCollectionsRequest

Properties

pageSize?: number

Page size of the result

CollectionsApiListCollections

cursor?: string

Cursor

CollectionsApiListCollections

orderBy?:
    | "updated_at"
    | "name"
    | "address"
    | "project_id"
    | "created_at"

Property to sort by

CollectionsApiListCollections

direction?: string

Direction to sort (asc/desc)

CollectionsApiListCollections

blacklist?: string

List of collections not to be included, separated by commas

CollectionsApiListCollections

whitelist?: string

List of collections to be included, separated by commas

CollectionsApiListCollections

keyword?: string

Keyword to search in collection name and description

CollectionsApiListCollections