Interface ConditionDTO

interface ConditionDTO {
    advanced: boolean;
    brands: string[];
    categories: string[];
    enabled: boolean;
    enabledInJs: boolean;
    exc_brands: string[];
    exc_categories: string[];
    exc_locations: string[][];
    exc_page_types: PageType[];
    exc_referer_urls: string[];
    exc_tags: string[];
    exc_url_parameters: string[];
    exc_urls: string[];
    hide_on_desktop: boolean;
    hide_on_mobile: boolean;
    locations: string[][];
    max_cart_size: number;
    max_cart_value: number;
    max_page_views: number;
    min_cart_size: number;
    min_cart_value: number;
    min_page_views: number;
    page_types: PageType[];
    referer_urls: string[];
    tags: string[];
    treat_url_conditions_as_filters: boolean;
    url_parameters: string[];
    urls: string[];
}

Properties

advanced: boolean
brands: string[]
categories: string[]
enabled: boolean
enabledInJs: boolean
exc_brands: string[]
exc_categories: string[]
exc_locations: string[][]
exc_page_types: PageType[]
exc_referer_urls: string[]
exc_tags: string[]
exc_url_parameters: string[]
exc_urls: string[]
hide_on_desktop: boolean
hide_on_mobile: boolean
locations: string[][]
max_cart_size: number
max_cart_value: number
max_page_views: number
min_cart_size: number
min_cart_value: number
min_page_views: number
page_types: PageType[]
referer_urls: string[]
tags: string[]
treat_url_conditions_as_filters: boolean
url_parameters: string[]
urls: string[]