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: Option<String>
Shipping origin represented as a postal code.
carrier: Option<String>
The carrier that is responsible for the shipping, such as "UPS", "FedEx", or "USPS".
name: Option<String>
The name of the carrier rate.
sale_country: Option<i64>
The sale country for which this carrier rate is valid, represented as a CLDR territory code.
carrier_service: Option<String>
The carrier service, such as "Ground" or "2Day".
modifier_flat_rate: Option<Price>
Additive shipping rate modifier.
modifier_percent: Option<String>
Multiplicative shipping rate modifier in percent. Represented as a floating point number without the percentage character.
Trait Implementations
impl Debug for AccountShippingCarrierRate[src]
impl Clone for AccountShippingCarrierRate[src]
fn clone(&self) -> AccountShippingCarrierRate
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for AccountShippingCarrierRate[src]
fn default() -> AccountShippingCarrierRate
Returns the "default value" for a type. Read more