Interface FoundAffiliatePrograms

Represents a list of found affiliate programs.

interface FoundAffiliatePrograms {
    @type: "foundAffiliatePrograms";
    next_offset: string;
    programs: FoundAffiliateProgram[];
    total_count: number;
}

Properties

@type: "foundAffiliatePrograms"
next_offset: string

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

The list of affiliate programs.

total_count: number

The total number of found affiliate programs.