pub struct PaymentsPrimitivesPaymentRecordsResourceBillingDetails {
pub address: PaymentsPrimitivesPaymentRecordsResourceAddress,
pub email: Option<String>,
pub name: Option<String>,
pub phone: Option<String>,
}Expand description
Billing details used by the customer for this payment.
Fields§
§address: PaymentsPrimitivesPaymentRecordsResourceAddress§email: Option<String>The billing email associated with the method of payment.
name: Option<String>The billing name associated with the method of payment.
phone: Option<String>The billing phone number associated with the method of payment.
Trait Implementations§
Source§impl Clone for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
impl Clone for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
Source§fn clone(&self) -> PaymentsPrimitivesPaymentRecordsResourceBillingDetails
fn clone(&self) -> PaymentsPrimitivesPaymentRecordsResourceBillingDetails
Returns a duplicate 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 FromValueOpt for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
impl FromValueOpt for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
impl RefUnwindSafe for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
impl Send for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
impl Sync for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
impl Unpin for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
impl UnwindSafe for PaymentsPrimitivesPaymentRecordsResourceBillingDetails
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