Interface ChatAffiliatePrograms

Represents a list of affiliate programs that were connected to a chat.

interface ChatAffiliatePrograms {
    @type: "chatAffiliatePrograms";
    next_offset: string;
    programs: ChatAffiliateProgram[];
    total_count: number;
}

Properties

@type: "chatAffiliatePrograms"
next_offset: string

The offset for the next request. If empty, then there are no more results.

The list of connected affiliate programs.

total_count: number

The total number of affiliate programs that were connected to the chat.