Struct google_content2::DatafeedTarget[][src]

pub struct DatafeedTarget {
    pub country: Option<String>,
    pub excluded_destinations: Option<Vec<String>>,
    pub language: Option<String>,
    pub included_destinations: Option<Vec<String>>,
}

There is no detailed description.

This type is not used in any activity, and only used as part of another schema.

Fields

The country where the items in the feed will be included in the search index, represented as a CLDR territory code.

The list of destinations to exclude for this target (corresponds to unchecked check boxes in Merchant Center).

The two-letter ISO 639-1 language of the items in the feed. Must be a valid language for targets[].country.

The list of destinations to include for this target (corresponds to checked check boxes in Merchant Center). Default destinations are always included unless provided in the excluded_destination field.

Trait Implementations

impl Default for DatafeedTarget
[src]

Returns the "default value" for a type. Read more

impl Clone for DatafeedTarget
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for DatafeedTarget
[src]

Formats the value using the given formatter. Read more

impl Part for DatafeedTarget
[src]

Auto Trait Implementations