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
content: Option<Vec<AccountShippingRateTableCell>>
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).
sale_country: Option<i64>
The sale country for which this table is valid, represented as a CLDR territory code.
name: Option<String>
The name of the rate table.
Trait Implementations
impl Debug for AccountShippingRateTable[src]
impl Clone for AccountShippingRateTable[src]
fn clone(&self) -> AccountShippingRateTable
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 AccountShippingRateTable[src]
fn default() -> AccountShippingRateTable
Returns the "default value" for a type. Read more