export TermScope

interface TermScope {
    catalog_id?: number;
    end_at?: null | string;
    is_date_limited?: boolean;
    item_ids?: null | string[];
    royalty_types?: null | string[];
    start_at?: string;
    territories?: null | string[];
}

Properties

catalog_id?: number
end_at?: null | string

If IsDateLimited=True, specifies the ending date to which to this term applies, can be null if no end date

is_date_limited?: boolean

If false then StartDate and EndDate are ignored for calculator scopes

item_ids?: null | string[]
royalty_types?: null | string[]
start_at?: string

If IsDateLimited=True, specifies the starting date from which to this term applies

territories?: null | string[]