Class: Lithic::Models::CardProgram
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Lithic::Models::CardProgram
- Defined in:
- lib/lithic/models/card_program.rb
Overview
Instance Attribute Summary collapse
-
#account_level_management_enabled ⇒ Boolean
Whether the card program is participating in Account Level Management.
-
#cardholder_currency ⇒ String?
3-character alphabetic ISO 4217 code for the currency of the cardholder.
-
#created ⇒ Time
Timestamp of when the card program was created.
-
#name ⇒ String
The name of the card program.
-
#pan_range_end ⇒ String
The first digits of the card number that this card program ends with.
-
#pan_range_start ⇒ String
The first digits of the card number that this card program starts with.
-
#settlement_currencies ⇒ Array<String>?
List of 3-character alphabetic ISO 4217 codes for the currencies that the card program supports for settlement.
-
#token ⇒ String
Globally unique identifier.
Instance Method Summary collapse
-
#initialize(token:, account_level_management_enabled:, created:, name:, pan_range_end:, pan_range_start:, cardholder_currency: nil, settlement_currencies: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see CardProgram for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, inspect, #inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(token:, account_level_management_enabled:, created:, name:, pan_range_end:, pan_range_start:, cardholder_currency: nil, settlement_currencies: nil) ⇒ Object
Some parameter documentations has been truncated, see Lithic::Models::CardProgram for more details.
|
|
# File 'lib/lithic/models/card_program.rb', line 57
|
Instance Attribute Details
#account_level_management_enabled ⇒ Boolean
Whether the card program is participating in Account Level Management. Currently applicable to Visa card programs only.
18 |
# File 'lib/lithic/models/card_program.rb', line 18 required :account_level_management_enabled, Lithic::Internal::Type::Boolean |
#cardholder_currency ⇒ String?
3-character alphabetic ISO 4217 code for the currency of the cardholder.
48 |
# File 'lib/lithic/models/card_program.rb', line 48 optional :cardholder_currency, String |
#created ⇒ Time
Timestamp of when the card program was created.
24 |
# File 'lib/lithic/models/card_program.rb', line 24 required :created, Time |
#name ⇒ String
The name of the card program.
30 |
# File 'lib/lithic/models/card_program.rb', line 30 required :name, String |
#pan_range_end ⇒ String
The first digits of the card number that this card program ends with.
36 |
# File 'lib/lithic/models/card_program.rb', line 36 required :pan_range_end, String |
#pan_range_start ⇒ String
The first digits of the card number that this card program starts with.
42 |
# File 'lib/lithic/models/card_program.rb', line 42 required :pan_range_start, String |
#settlement_currencies ⇒ Array<String>?
List of 3-character alphabetic ISO 4217 codes for the currencies that the card program supports for settlement.
55 |
# File 'lib/lithic/models/card_program.rb', line 55 optional :settlement_currencies, Lithic::Internal::Type::ArrayOf[String] |
#token ⇒ String
Globally unique identifier.
11 |
# File 'lib/lithic/models/card_program.rb', line 11 required :token, String |