Mayson Monorepo Documentation
    Preparing search index...

    A Personalization Design is a logical grouping of a Physical Bundle, card logo, and carrier text that represents a product line.

    interface PersonalizationDesign {
        id: string;
        object: "issuing.personalization_design";
        card_logo: string | Stripe.File;
        carrier_text: Stripe.Issuing.PersonalizationDesign.CarrierText;
        created: number;
        livemode: boolean;
        lookup_key: string;
        metadata: Metadata;
        name: string;
        physical_bundle: string | Stripe.Issuing.PhysicalBundle;
        preferences: Stripe.Issuing.PersonalizationDesign.Preferences;
        rejection_reasons: Stripe.Issuing.PersonalizationDesign.RejectionReasons;
        status: Stripe.Issuing.PersonalizationDesign.Status;
    }
    Index

    Properties

    id: string

    Unique identifier for the object.

    object: "issuing.personalization_design"

    String representing the object's type. Objects of the same type share the same value.

    card_logo: string | Stripe.File

    The file for the card logo to use with physical bundles that support card logos. Must have a purpose value of issuing_logo.

    Hash containing carrier text, for use with physical bundles that support carrier text.

    created: number

    Time at which the object was created. Measured in seconds since the Unix epoch.

    livemode: boolean

    Has the value true if the object exists in live mode or the value false if the object exists in test mode.

    lookup_key: string

    A lookup key used to retrieve personalization designs dynamically from a static string. This may be up to 200 characters.

    metadata: Metadata

    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: string

    Friendly display name.

    physical_bundle: string | Stripe.Issuing.PhysicalBundle

    The physical bundle object belonging to this personalization design.

    Whether this personalization design can be used to create cards.