pub struct IssuingPersonalizationDesign {
pub card_logo: Option<Expandable<File>>,
pub carrier_text: Option<IssuingPersonalizationDesignCarrierText>,
pub created: Timestamp,
pub id: IssuingPersonalizationDesignId,
pub livemode: bool,
pub lookup_key: Option<String>,
pub metadata: HashMap<String, String>,
pub name: Option<String>,
pub physical_bundle: Expandable<IssuingPhysicalBundle>,
pub preferences: IssuingPersonalizationDesignPreferences,
pub rejection_reasons: IssuingPersonalizationDesignRejectionReasons,
pub status: IssuingPersonalizationDesignStatus,
}
Expand description
A Personalization Design is a logical grouping of a Physical Bundle, card logo, and carrier text that represents a product line.
Fields§
§card_logo: Option<Expandable<File>>
The file for the card logo to use with physical bundles that support card logos.
Must have a purpose
value of issuing_logo
.
carrier_text: Option<IssuingPersonalizationDesignCarrierText>
Hash containing carrier text, for use with physical bundles that support carrier text.
created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
id: IssuingPersonalizationDesignId
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.
lookup_key: Option<String>
A lookup key used to retrieve personalization designs dynamically from a static string. This may be up to 200 characters.
metadata: HashMap<String, String>
Set of key-value pairs that you can attach to an object. This can be useful for storing additional information about the object in a structured format.
name: Option<String>
Friendly display name.
physical_bundle: Expandable<IssuingPhysicalBundle>
The physical bundle object belonging to this personalization design.
preferences: IssuingPersonalizationDesignPreferences
§rejection_reasons: IssuingPersonalizationDesignRejectionReasons
§status: IssuingPersonalizationDesignStatus
Whether this personalization design can be used to create cards.
Trait Implementations§
Source§impl Clone for IssuingPersonalizationDesign
impl Clone for IssuingPersonalizationDesign
Source§fn clone(&self) -> IssuingPersonalizationDesign
fn clone(&self) -> IssuingPersonalizationDesign
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more