pub struct PaymentsPrimitivesPaymentRecordsResourceCustomerDetails {
pub customer: Option<String>,
pub email: Option<String>,
pub name: Option<String>,
pub phone: Option<String>,
}Expand description
Information about the customer for this payment.
Fields§
§customer: Option<String>ID of the Stripe Customer associated with this payment.
email: Option<String>The customer’s email address.
name: Option<String>The customer’s name.
phone: Option<String>The customer’s phone number.
Trait Implementations§
Source§impl Clone for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
impl Clone for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
Source§fn clone(&self) -> PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
fn clone(&self) -> PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
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 PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
impl FromValueOpt for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
impl RefUnwindSafe for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
impl Send for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
impl Sync for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
impl Unpin for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
impl UnwindSafe for PaymentsPrimitivesPaymentRecordsResourceCustomerDetails
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