Struct google_content2::AccountShippingCarrierRate [] [src]

pub struct AccountShippingCarrierRate {
    pub shipping_origin: Option<String>,
    pub carrier: Option<String>,
    pub name: Option<String>,
    pub sale_country: Option<i64>,
    pub carrier_service: Option<String>,
    pub modifier_flat_rate: Option<Price>,
    pub modifier_percent: Option<String>,
}

A carrier-calculated shipping rate.

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

Fields

Shipping origin represented as a postal code.

The carrier that is responsible for the shipping, such as "UPS", "FedEx", or "USPS".

The name of the carrier rate.

The sale country for which this carrier rate is valid, represented as a CLDR territory code.

The carrier service, such as "Ground" or "2Day".

Additive shipping rate modifier.

Multiplicative shipping rate modifier in percent. Represented as a floating point number without the percentage character.

Trait Implementations

impl Debug for AccountShippingCarrierRate
[src]

Formats the value using the given formatter.

impl Clone for AccountShippingCarrierRate
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AccountShippingCarrierRate
[src]

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

impl Part for AccountShippingCarrierRate
[src]