Struct google_content2::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
expiration_month: Option<i32>
The card expiration month (January = 1, February = 2 etc.).
expiration_year: Option<i32>
The card expiration year (4-digit, e.g. 2015).
phone_number: Option<String>
The billing phone number.
billing_address: Option<OrderAddress>
The billing address.
type_: Option<String>
The type of instrument (VISA, Mastercard, etc).
last_four_digits: Option<String>
The last four digits of the card number.
Trait Implementations
impl Debug for OrderPaymentMethod[src]
impl Clone for OrderPaymentMethod[src]
fn clone(&self) -> OrderPaymentMethod
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0
Performs copy-assignment from source. Read more
impl Default for OrderPaymentMethod[src]
fn default() -> OrderPaymentMethod
Returns the "default value" for a type. Read more