Struct google_content2_sandbox::TestOrderPaymentMethod[][src]

pub struct TestOrderPaymentMethod {
    pub expiration_month: Option<i32>,
    pub last_four_digits: Option<String>,
    pub expiration_year: Option<i32>,
    pub type_: Option<String>,
    pub predefined_billing_address: 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 last four digits of the card number.

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

The type of instrument. Note that real orders might have different values than the four values accepted by createTestOrder.

The billing address.

Trait Implementations

impl Default for TestOrderPaymentMethod
[src]

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

impl Clone for TestOrderPaymentMethod
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for TestOrderPaymentMethod
[src]

Formats the value using the given formatter. Read more

impl Part for TestOrderPaymentMethod
[src]

Auto Trait Implementations