interface OpenChannelListQueryParams {
    customTypes?: string[];
    includeFrozen?: boolean;
    includeMetaData?: boolean;
    limit?: number;
    nameKeyword?: string;
    urlKeyword?: string;
}

Hierarchy

  • BaseListQueryParams
    • OpenChannelListQueryParams

Properties

customTypes?: string[]

A filter to return only channels with the specified customType.

includeFrozen?: boolean

Indicate whether to include frozen channels or not. (default: true)

includeMetaData?: boolean

Indicate whether to include channel metadata on fetch. (default: true)

limit?: number

The maximum number of data per queried page.

nameKeyword?: string

Indicate search keyword for channel name.

urlKeyword?: string

Indicate search keyword for channel URL.