Struct google_content2::Value[][src]

pub struct Value {
    pub carrier_rate_name: Option<String>,
    pub no_shipping: Option<bool>,
    pub price_percentage: Option<String>,
    pub flat_rate: Option<Price>,
    pub subtable_name: Option<String>,
}

The single value of a rate group or the value of a rate group table's cell. Exactly one of noShipping, flatRate, pricePercentage, carrierRateName, subtableName must be set.

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

Fields

The name of a carrier rate referring to a carrier rate defined in the same rate group. Can only be set if all other fields are not set.

If true, then the product can't ship. Must be true when set, can only be set if all other fields are not set.

A percentage of the price represented as a number in decimal notation (e.g., "5.4"). Can only be set if all other fields are not set.

A flat rate. Can only be set if all other fields are not set.

The name of a subtable. Can only be set in table cells (i.e., not for single values), and only if all other fields are not set.

Trait Implementations

impl Default for Value
[src]

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

impl Clone for Value
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for Value
[src]

Formats the value using the given formatter. Read more

impl Part for Value
[src]

Auto Trait Implementations

impl Send for Value

impl Sync for Value