pub struct IssuingPhysicalBundle {
pub features: IssuingPhysicalBundleFeatures,
pub id: IssuingPhysicalBundleId,
pub livemode: bool,
pub name: String,
pub status: IssuingPhysicalBundleStatus,
pub type_: IssuingPhysicalBundleType,
}Expand description
A Physical Bundle represents the bundle of physical items - card stock, carrier letter, and envelope - that is shipped to a cardholder when you create a physical card.
Fields§
§features: IssuingPhysicalBundleFeatures§id: IssuingPhysicalBundleIdUnique identifier for the object.
livemode: boolIf the object exists in live mode, the value is true.
If the object exists in test mode, the value is false.
name: StringFriendly display name.
status: IssuingPhysicalBundleStatusWhether this physical bundle can be used to create cards.
type_: IssuingPhysicalBundleTypeWhether this physical bundle is a standard Stripe offering or custom-made for you.
Trait Implementations§
Source§impl Clone for IssuingPhysicalBundle
impl Clone for IssuingPhysicalBundle
Source§fn clone(&self) -> IssuingPhysicalBundle
fn clone(&self) -> IssuingPhysicalBundle
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 moreSource§impl Debug for IssuingPhysicalBundle
impl Debug for IssuingPhysicalBundle
Source§impl Deserialize for IssuingPhysicalBundle
impl Deserialize for IssuingPhysicalBundle
Source§impl FromValueOpt for IssuingPhysicalBundle
impl FromValueOpt for IssuingPhysicalBundle
fn from_value(v: Value) -> Option<Self>
Source§impl Object for IssuingPhysicalBundle
impl Object for IssuingPhysicalBundle
Source§impl PartialEq for IssuingPhysicalBundle
impl PartialEq for IssuingPhysicalBundle
Source§fn eq(&self, other: &IssuingPhysicalBundle) -> bool
fn eq(&self, other: &IssuingPhysicalBundle) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for IssuingPhysicalBundle
impl StructuralPartialEq for IssuingPhysicalBundle
Auto Trait Implementations§
impl Freeze for IssuingPhysicalBundle
impl RefUnwindSafe for IssuingPhysicalBundle
impl Send for IssuingPhysicalBundle
impl Sync for IssuingPhysicalBundle
impl Unpin for IssuingPhysicalBundle
impl UnsafeUnpin for IssuingPhysicalBundle
impl UnwindSafe for IssuingPhysicalBundle
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