Represents GroupChannel changelogs.

interface GroupChannelChangelogs {
    deletedChannelUrls: string[];
    hasMore: boolean;
    token: string;
    ts?: number;
    updatedChannels: GroupChannel[];
}

Properties

deletedChannelUrls: string[]

Deleted channel URLs.

hasMore: boolean

Whether there're more changelogs.

token: string

Group channel changelogs pagination token.

ts?: number
updatedChannels: GroupChannel[]

Updated channels.