Struct google_content2::ShippingSettings[][src]

pub struct ShippingSettings {
    pub services: Option<Vec<Service>>,
    pub postal_code_groups: Option<Vec<PostalCodeGroup>>,
    pub account_id: Option<String>,
}

The merchant account's shipping settings.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The target account's list of services. Optional.

A list of postal code groups that can be referred to in services. Optional.

The ID of the account to which these account shipping settings belong. Ignored upon update, always present in get request responses.

Trait Implementations

impl Default for ShippingSettings
[src]

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

impl Clone for ShippingSettings
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ShippingSettings
[src]

Formats the value using the given formatter. Read more

impl RequestValue for ShippingSettings
[src]

impl ResponseResult for ShippingSettings
[src]

Auto Trait Implementations