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: IssuingPhysicalBundleId
Unique identifier for the object.
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
name: String
Friendly display name.
status: IssuingPhysicalBundleStatus
Whether this physical bundle can be used to create cards.
type_: IssuingPhysicalBundleType
Whether 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 · 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
Auto Trait Implementations§
impl Freeze for IssuingPhysicalBundle
impl RefUnwindSafe for IssuingPhysicalBundle
impl Send for IssuingPhysicalBundle
impl Sync for IssuingPhysicalBundle
impl Unpin 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