Class: Increase::Models::DigitalCardProfile
- Defined in:
- lib/increase/models/digital_card_profile.rb
Defined Under Namespace
Classes: TextColor
Instance Attribute Summary collapse
-
#app_icon_file_id ⇒ String
The identifier of the File containing the card's icon image.
-
#background_image_file_id ⇒ String
The identifier of the File containing the card's front image.
-
#card_description ⇒ String
A user-facing description for the card itself.
-
#contact_email ⇒ String
An email address the user can contact to receive support for their card.
-
#contact_phone ⇒ String
A phone number the user can contact to receive support for their card.
-
#contact_website ⇒ String
A website the user can visit to view and receive support for their card.
-
#created_at ⇒ String
The ISO 8601 date and time at which the Card Dispute was created.
-
#description ⇒ String
A description you can use to identify the Card Profile.
-
#id ⇒ String
The Card Profile identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#issuer_name ⇒ String
A user-facing description for whoever is issuing the card.
-
#status ⇒ Symbol
The status of the Card Profile.
-
#text_color ⇒ Increase::Models::DigitalCardProfile::TextColor
The Card's text color, specified as an RGB triple.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#app_icon_file_id ⇒ String
The identifier of the File containing the card's icon image.
14 |
# File 'lib/increase/models/digital_card_profile.rb', line 14 required :app_icon_file_id, String |
#background_image_file_id ⇒ String
The identifier of the File containing the card's front image.
19 |
# File 'lib/increase/models/digital_card_profile.rb', line 19 required :background_image_file_id, String |
#card_description ⇒ String
A user-facing description for the card itself.
24 |
# File 'lib/increase/models/digital_card_profile.rb', line 24 required :card_description, String |
#contact_email ⇒ String
An email address the user can contact to receive support for their card.
29 |
# File 'lib/increase/models/digital_card_profile.rb', line 29 required :contact_email, String |
#contact_phone ⇒ String
A phone number the user can contact to receive support for their card.
34 |
# File 'lib/increase/models/digital_card_profile.rb', line 34 required :contact_phone, String |
#contact_website ⇒ String
A website the user can visit to view and receive support for their card.
39 |
# File 'lib/increase/models/digital_card_profile.rb', line 39 required :contact_website, String |
#created_at ⇒ String
The ISO 8601 date and time at which the Card Dispute was created.
44 |
# File 'lib/increase/models/digital_card_profile.rb', line 44 required :created_at, String |
#description ⇒ String
A description you can use to identify the Card Profile.
49 |
# File 'lib/increase/models/digital_card_profile.rb', line 49 required :description, String |
#id ⇒ String
The Card Profile identifier.
9 |
# File 'lib/increase/models/digital_card_profile.rb', line 9 required :id, String |
#idempotency_key ⇒ String
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.
54 |
# File 'lib/increase/models/digital_card_profile.rb', line 54 required :idempotency_key, String |
#issuer_name ⇒ String
A user-facing description for whoever is issuing the card.
59 |
# File 'lib/increase/models/digital_card_profile.rb', line 59 required :issuer_name, String |
#status ⇒ Symbol
The status of the Card Profile.
64 |
# File 'lib/increase/models/digital_card_profile.rb', line 64 required :status, Increase::Enum.new(:pending, :rejected, :active, :archived) |
#text_color ⇒ Increase::Models::DigitalCardProfile::TextColor
The Card's text color, specified as an RGB triple.
69 |
# File 'lib/increase/models/digital_card_profile.rb', line 69 required :text_color, -> { Increase::Models::DigitalCardProfile::TextColor } |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be digital_card_profile
.
74 |
# File 'lib/increase/models/digital_card_profile.rb', line 74 required :type, Increase::Enum.new(:digital_card_profile) |