pub struct UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress {
pub city: Option<String>,
pub country: Option<String>,
pub line1: Option<String>,
pub line2: Option<String>,
pub postal_code: Option<String>,
pub state: Option<String>,
}
Fields§
§city: Option<String>
City, district, suburb, town, or village.
country: Option<String>
Two-letter country code (ISO 3166-1 alpha-2).
line1: Option<String>
Address line 1 (e.g., street, PO Box, or company name).
line2: Option<String>
Address line 2 (e.g., apartment, suite, unit, or building).
postal_code: Option<String>
ZIP or postal code.
state: Option<String>
State, county, province, or region.
Trait Implementations§
Source§impl Clone for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl Clone for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
Source§fn clone(&self) -> UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
fn clone(&self) -> UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl Default for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
Source§fn default() -> UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
fn default() -> UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl<'de> Deserialize<'de> for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
Source§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 Freeze for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl RefUnwindSafe for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl Send for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl Sync for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl Unpin for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
impl UnwindSafe for UpdatePaymentIntentPaymentMethodDataBillingDetailsAddress
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more