Increase.DigitalCardProfiles.DigitalCardProfile (Increase v1.0.0)

Copy Markdown View Source

This contains artwork and metadata relating to a Card's appearance in digital wallet apps like Apple Pay and Google Pay. For more information, see our guide on digital card artwork.

Fields

  • id - The Card Profile identifier.
  • app_icon_file_id - The identifier of the File containing the card's icon image.
  • background_image_file_id - The identifier of the File containing the card's front image.
  • card_description - A user-facing description for the card itself.
  • contact_email - An email address the user can contact to receive support for their card.
  • contact_phone - A phone number the user can contact to receive support for their card.
  • contact_website - A website the user can visit to view and receive support for their card.
  • created_at - The ISO 8601 date and time at which the Digital Card Profile was created.
  • description - A description you can use to identify the Card Profile.
  • idempotency_key - The idempotency key you chose for this object. This value is unique across Increase and is used to ensure that a request is only processed once. Learn more about idempotency.
  • issuer_name - A user-facing description for whoever is issuing the card.
  • status - The status of the Card Profile.
  • text_color - The Card's text color, specified as an RGB triple.
  • type - A constant representing the object's type. For this resource it will always be digital_card_profile.

Summary

Types

t()

@type t() :: %Increase.DigitalCardProfiles.DigitalCardProfile{
  app_icon_file_id: String.t(),
  background_image_file_id: String.t(),
  card_description: String.t(),
  contact_email: String.t() | nil,
  contact_phone: String.t() | nil,
  contact_website: String.t() | nil,
  created_at: DateTime.t(),
  description: String.t(),
  id: String.t(),
  idempotency_key: String.t() | nil,
  issuer_name: String.t(),
  status: String.t(),
  text_color: Increase.DigitalCardProfiles.DigitalCardProfile.TextColor.t(),
  type: String.t()
}