Class: Increase::Models::PhysicalCardProfile
- Defined in:
- lib/increase/models/physical_card_profile.rb
Instance Attribute Summary collapse
-
#back_image_file_id ⇒ String
The identifier of the File containing the physical card's back image.
-
#carrier_image_file_id ⇒ String
The identifier of the File containing the physical card's carrier image.
-
#contact_phone ⇒ String
A phone number the user can contact to receive support for their card.
-
#created_at ⇒ String
The ISO 8601 date and time at which the Card Dispute was created.
-
#creator ⇒ Symbol
The creator of this Physical Card Profile.
-
#description ⇒ String
A description you can use to identify the Physical Card Profile.
-
#front_image_file_id ⇒ String
The identifier of the File containing the physical card's front image.
-
#id ⇒ String
The Card Profile identifier.
-
#idempotency_key ⇒ String
The idempotency key you chose for this object.
-
#is_default ⇒ Boolean
Whether this Physical Card Profile is the default for all cards in its Increase group.
-
#status ⇒ Symbol
The status of the Physical Card Profile.
-
#type ⇒ Symbol
A constant representing the object's type.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#back_image_file_id ⇒ String
The identifier of the File containing the physical card's back image.
14 |
# File 'lib/increase/models/physical_card_profile.rb', line 14 required :back_image_file_id, String |
#carrier_image_file_id ⇒ String
The identifier of the File containing the physical card's carrier image.
19 |
# File 'lib/increase/models/physical_card_profile.rb', line 19 required :carrier_image_file_id, String |
#contact_phone ⇒ String
A phone number the user can contact to receive support for their card.
24 |
# File 'lib/increase/models/physical_card_profile.rb', line 24 required :contact_phone, String |
#created_at ⇒ String
The ISO 8601 date and time at which the Card Dispute was created.
29 |
# File 'lib/increase/models/physical_card_profile.rb', line 29 required :created_at, String |
#creator ⇒ Symbol
The creator of this Physical Card Profile.
34 |
# File 'lib/increase/models/physical_card_profile.rb', line 34 required :creator, Increase::Enum.new(:increase, :user) |
#description ⇒ String
A description you can use to identify the Physical Card Profile.
39 |
# File 'lib/increase/models/physical_card_profile.rb', line 39 required :description, String |
#front_image_file_id ⇒ String
The identifier of the File containing the physical card's front image.
44 |
# File 'lib/increase/models/physical_card_profile.rb', line 44 required :front_image_file_id, String |
#id ⇒ String
The Card Profile identifier.
9 |
# File 'lib/increase/models/physical_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.
49 |
# File 'lib/increase/models/physical_card_profile.rb', line 49 required :idempotency_key, String |
#is_default ⇒ Boolean
Whether this Physical Card Profile is the default for all cards in its Increase group.
54 |
# File 'lib/increase/models/physical_card_profile.rb', line 54 required :is_default, Increase::BooleanModel |
#status ⇒ Symbol
The status of the Physical Card Profile.
59 60 61 62 63 64 65 66 67 |
# File 'lib/increase/models/physical_card_profile.rb', line 59 required :status, Increase::Enum.new( :pending_creating, :pending_reviewing, :rejected, :pending_submitting, :active, :archived ) |
#type ⇒ Symbol
A constant representing the object's type. For this resource it will always be physical_card_profile
.
72 |
# File 'lib/increase/models/physical_card_profile.rb', line 72 required :type, Increase::Enum.new(:physical_card_profile) |