[][src]Struct google_partners2::OfferCustomer

pub struct OfferCustomer {
    pub name: Option<String>,
    pub country_code: Option<String>,
    pub spend_x_amount: Option<String>,
    pub adwords_url: Option<String>,
    pub creation_time: Option<String>,
    pub external_cid: Option<String>,
    pub eligibility_days_left: Option<i32>,
    pub get_y_amount: Option<String>,
    pub offer_type: Option<String>,
}

Customers qualified for an offer.

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

Fields

name: Option<String>

Name of the customer.

country_code: Option<String>

Country code of the customer.

spend_x_amount: Option<String>

Formatted Spend X amount with currency code.

adwords_url: Option<String>

URL to the customer's AdWords page.

creation_time: Option<String>

Time the customer was created.

external_cid: Option<String>

External CID for the customer.

eligibility_days_left: Option<i32>

Days the customer is still eligible.

get_y_amount: Option<String>

Formatted Get Y amount with currency code.

offer_type: Option<String>

Type of the offer

Trait Implementations

impl Part for OfferCustomer[src]

impl Default for OfferCustomer[src]

impl Clone for OfferCustomer[src]

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

Performs copy-assignment from source. Read more

impl Debug for OfferCustomer[src]

impl Serialize for OfferCustomer[src]

impl<'de> Deserialize<'de> for OfferCustomer[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]