[][src]Struct google_dfareporting3d2::PricingSchedulePricingPeriod

pub struct PricingSchedulePricingPeriod {
    pub units: Option<String>,
    pub start_date: Option<String>,
    pub rate_or_cost_nanos: Option<String>,
    pub end_date: Option<String>,
    pub pricing_comment: Option<String>,
}

Pricing Period

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

Fields

units: Option<String>

Units of this pricing period. Acceptable values are 0 to 10000000000, inclusive.

start_date: Option<String>

Pricing period start date. This date must be later than, or the same day as, the placement start date. The hours, minutes, and seconds of the start date should not be set, as doing so will result in an error.

rate_or_cost_nanos: Option<String>

Rate or cost of this pricing period in nanos (i.e., multipled by 1000000000). Acceptable values are 0 to 1000000000000000000, inclusive.

end_date: Option<String>

Pricing period end date. This date must be later than, or the same day as, the pricing period start date, but not later than the placement end date. The period end date can be the same date as the period start date. If, for example, you set 6/25/2015 as both the start and end dates, the effective pricing period date is just that day only, 6/25/2015. The hours, minutes, and seconds of the end date should not be set, as doing so will result in an error.

pricing_comment: Option<String>

Comments for this pricing period.

Trait Implementations

impl Part for PricingSchedulePricingPeriod[src]

impl Default for PricingSchedulePricingPeriod[src]

impl Clone for PricingSchedulePricingPeriod[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for PricingSchedulePricingPeriod[src]

impl Serialize for PricingSchedulePricingPeriod[src]

impl<'de> Deserialize<'de> for PricingSchedulePricingPeriod[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]