Represents a group channel change logs params.

interface GroupChannelChangeLogsParams {
    customTypes?: string[];
    includeChatNotification?: boolean;
    includeEmpty?: boolean;
    includeFrozen?: boolean;
    includeMetaData?: boolean;
}

Properties

customTypes?: string[]

GroupChannel custom types filter. If not set, the changelogs of all channels will be returned.

includeChatNotification?: boolean

Whether to include chat notification channels in changelogs.

includeEmpty?: boolean

Whether to include the channels with no message. (default: true)

includeFrozen?: boolean

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

includeMetaData?: boolean

Whether to include channel metadata. (default: true)