Struct google_content2_sandbox::OrderPaymentMethod[][src]

pub struct OrderPaymentMethod {
    pub expiration_month: Option<i32>,
    pub expiration_year: Option<i32>,
    pub phone_number: Option<String>,
    pub billing_address: Option<OrderAddress>,
    pub type_: Option<String>,
    pub last_four_digits: Option<String>,
}

There is no detailed description.

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

Fields

The card expiration month (January = 1, February = 2 etc.).

The card expiration year (4-digit, e.g. 2015).

The billing phone number.

The billing address.

The type of instrument.

Acceptable values are:

  • "AMEX"
  • "DISCOVER"
  • "JCB"
  • "MASTERCARD"
  • "UNIONPAY"
  • "VISA"
  • ""

The last four digits of the card number.

Trait Implementations

impl Default for OrderPaymentMethod
[src]

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

impl Clone for OrderPaymentMethod
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for OrderPaymentMethod
[src]

Formats the value using the given formatter. Read more

impl Part for OrderPaymentMethod
[src]

Auto Trait Implementations