Stripe.Resources.Issuing.PhysicalBundle (tiger_stripe v0.3.0)

Copy Markdown View Source

IssuingPhysicalBundle

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.

Summary

Types

features()

@type features() :: %{
  optional(:card_logo) => String.t() | nil,
  optional(:carrier_text) => String.t() | nil,
  optional(:second_line) => String.t() | nil,
  optional(String.t()) => term()
}
  • card_logo - The policy for how to use card logo images in a card design with this physical bundle. Possible values: optional, required, unsupported.
  • carrier_text - The policy for how to use carrier letter text in a card design with this physical bundle. Possible values: optional, required, unsupported.
  • second_line - The policy for how to use a second line on a card with this physical bundle. Possible values: optional, required, unsupported.

t()

@type t() :: %Stripe.Resources.Issuing.PhysicalBundle{
  features: features(),
  id: String.t(),
  livemode: boolean(),
  name: String.t(),
  object: String.t(),
  status: String.t(),
  type: String.t()
}
  • features - Expandable.
  • id - Unique identifier for the object. Max length: 5000.
  • livemode - Has the value true if the object exists in live mode or the value false if the object exists in test mode.
  • name - Friendly display name. Max length: 5000.
  • object - String representing the object's type. Objects of the same type share the same value. Possible values: issuing.physical_bundle.
  • status - Whether this physical bundle can be used to create cards. Possible values: active, inactive, review.
  • type - Whether this physical bundle is a standard Stripe offering or custom-made for you. Possible values: custom, standard.

Functions

expandable_fields()

object_name()