Struct google_content2::ProductTax [] [src]

pub struct ProductTax {
    pub rate: Option<f64>,
    pub location_id: Option<String>,
    pub postal_code: Option<String>,
    pub country: Option<String>,
    pub region: Option<String>,
    pub tax_ship: Option<bool>,
}

There is no detailed description.

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

Fields

The percentage of tax rate that applies to the item price.

The numeric id of a location that the tax rate applies to as defined in the AdWords API.

The postal code range that the tax rate applies to, represented by a ZIP code, a ZIP code prefix using * wildcard, a range between two ZIP codes or two ZIP code prefixes of equal length. Examples: 94114, 94*, 94002-95460, 94*-95*.

The country within which the item is taxed, specified as a CLDR territory code.

The geographic region to which the tax rate applies.

Set to true if tax is charged on shipping.

Trait Implementations

impl Debug for ProductTax
[src]

Formats the value using the given formatter.

impl Clone for ProductTax
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Default for ProductTax
[src]

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

impl Part for ProductTax
[src]