Struct google_content2::AccountShippingRateTable [] [src]

pub struct AccountShippingRateTable {
    pub content: Option<Vec<AccountShippingRateTableCell>>,
    pub sale_country: Option<i64>,
    pub name: Option<String>,
}

A single or bi-dimensional table of shipping rates. Each dimension is defined in terms of consecutive price/weight ranges, delivery locations, or shipping labels.

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

Fields

One-dimensional table cells define one condition along the same dimension. Bi-dimensional table cells use two dimensions with respectively M and N distinct values and must contain exactly M * N cells with distinct conditions (for each possible value pairs).

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

The name of the rate table.

Trait Implementations

impl Debug for AccountShippingRateTable
[src]

Formats the value using the given formatter.

impl Clone for AccountShippingRateTable
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for AccountShippingRateTable
[src]

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

impl Part for AccountShippingRateTable
[src]