Struct shopify::order::Customer [] [src]

pub struct Customer {
    pub id: i64,
    pub email: Option<String>,
    pub accepts_marketing: bool,
    pub created_at: String,
    pub updated_at: String,
    pub first_name: String,
    pub last_name: Option<String>,
    pub orders_count: i64,
    pub state: String,
    pub total_spent: String,
    pub last_order_id: Option<i64>,
    pub note: Value,
    pub verified_email: bool,
    pub multipass_identifier: Value,
    pub tax_exempt: bool,
    pub phone: Option<String>,
    pub tags: String,
    pub last_order_name: Option<String>,
    pub default_address: Option<DefaultAddress>,
}

Fields

Trait Implementations

impl Debug for Customer
[src]

[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Customer

impl Sync for Customer