pub struct CustomerDetailsApiSchema {
pub email_address: Option<String>,
pub first_name: Option<String>,
pub last_name: Option<String>,
pub billing_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>,
pub mobile_number: Option<String>,
pub shipping_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>,
pub tax_id: Option<String>,
pub national_document_id: Option<String>,
}
Fields§
§email_address: Option<String>
Customer email address.
Note: It is recommended to include this field if a 3DS check will be performed
first_name: Option<String>
The customer’s first name
last_name: Option<String>
The customer’s last name
billing_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>
Customer billing address.
Note: It is recommended to include this field if a 3DS check will be performed
mobile_number: Option<String>
The customer’s mobile number
shipping_address: Option<CoreApiApiCommonsSchemasAddessAddressApiSchema>
Customer shipping address
tax_id: Option<String>
The customer’s tax id number for tax exemptions
national_document_id: Option<String>
The customer’s national identification number
Trait Implementations§
Source§impl Debug for CustomerDetailsApiSchema
impl Debug for CustomerDetailsApiSchema
Source§impl<'de> Deserialize<'de> for CustomerDetailsApiSchema
impl<'de> Deserialize<'de> for CustomerDetailsApiSchema
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
Source§impl Display for CustomerDetailsApiSchema
impl Display for CustomerDetailsApiSchema
Auto Trait Implementations§
impl Freeze for CustomerDetailsApiSchema
impl RefUnwindSafe for CustomerDetailsApiSchema
impl Send for CustomerDetailsApiSchema
impl Sync for CustomerDetailsApiSchema
impl Unpin for CustomerDetailsApiSchema
impl UnwindSafe for CustomerDetailsApiSchema
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