Struct google_content2::api::OrderPaymentMethod [−][src]
pub struct OrderPaymentMethod {
pub billing_address: Option<OrderAddress>,
pub expiration_month: Option<i32>,
pub expiration_year: Option<i32>,
pub last_four_digits: Option<String>,
pub phone_number: Option<String>,
pub type_: Option<String>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields
billing_address: Option<OrderAddress>The billing address.
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).
last_four_digits: Option<String>The last four digits of the card number.
phone_number: Option<String>The billing phone number.
type_: Option<String>The type of instrument. Acceptable values are: - “AMEX” - “DISCOVER” - “JCB” - “MASTERCARD” - “UNIONPAY” - “VISA” - “``”
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for OrderPaymentMethod
impl Send for OrderPaymentMethod
impl Sync for OrderPaymentMethod
impl Unpin for OrderPaymentMethod
impl UnwindSafe for OrderPaymentMethod
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more