pub struct CreateCheckoutSessionPaymentIntentDataShipping {
pub address: CreateCheckoutSessionPaymentIntentDataShippingAddress,
pub carrier: Option<String>,
pub name: String,
pub phone: Option<String>,
pub tracking_number: Option<String>,
}Expand description
Shipping information for this payment.
Fields§
§address: CreateCheckoutSessionPaymentIntentDataShippingAddressShipping address.
carrier: Option<String>The delivery service that shipped a physical product, such as Fedex, UPS, USPS, etc.
name: StringRecipient name.
phone: Option<String>Recipient phone (including extension).
tracking_number: Option<String>The tracking number for a physical product, obtained from the delivery service. If multiple tracking numbers were generated for this purchase, please separate them with commas.
Implementations§
Trait Implementations§
Source§impl Clone for CreateCheckoutSessionPaymentIntentDataShipping
impl Clone for CreateCheckoutSessionPaymentIntentDataShipping
Source§fn clone(&self) -> CreateCheckoutSessionPaymentIntentDataShipping
fn clone(&self) -> CreateCheckoutSessionPaymentIntentDataShipping
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Eq for CreateCheckoutSessionPaymentIntentDataShipping
impl StructuralPartialEq for CreateCheckoutSessionPaymentIntentDataShipping
Auto Trait Implementations§
impl Freeze for CreateCheckoutSessionPaymentIntentDataShipping
impl RefUnwindSafe for CreateCheckoutSessionPaymentIntentDataShipping
impl Send for CreateCheckoutSessionPaymentIntentDataShipping
impl Sync for CreateCheckoutSessionPaymentIntentDataShipping
impl Unpin for CreateCheckoutSessionPaymentIntentDataShipping
impl UnsafeUnpin for CreateCheckoutSessionPaymentIntentDataShipping
impl UnwindSafe for CreateCheckoutSessionPaymentIntentDataShipping
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