Class: Increase::Models::Simulations::CardAuthenticationCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::Simulations::CardAuthenticationCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/increase/models/simulations/card_authentication_create_params.rb
Overview
Defined Under Namespace
Modules: Category, DeviceChannel
Instance Attribute Summary collapse
-
#card_id ⇒ String
The identifier of the Card to be authorized.
-
#category ⇒ Symbol, ...
The category of the card authentication attempt.
-
#device_channel ⇒ Symbol, ...
The device channel of the card authentication attempt.
-
#merchant_acceptor_id ⇒ String?
The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
-
#merchant_category_code ⇒ String?
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the card is transacting with.
-
#merchant_country ⇒ String?
The country the merchant resides in.
-
#merchant_name ⇒ String?
The name of the merchant.
-
#purchase_amount ⇒ Integer?
The purchase amount in cents.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(card_id:, category: nil, device_channel: nil, merchant_acceptor_id: nil, merchant_category_code: nil, merchant_country: nil, merchant_name: nil, purchase_amount: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see CardAuthenticationCreateParams for more details.
Methods included from Internal::Type::RequestParameters::Converter
Methods included from Internal::Type::RequestParameters
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(card_id:, category: nil, device_channel: nil, merchant_acceptor_id: nil, merchant_category_code: nil, merchant_country: nil, merchant_name: nil, purchase_amount: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::Simulations::CardAuthenticationCreateParams for more details.
|
|
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 62
|
Instance Attribute Details
#card_id ⇒ String
The identifier of the Card to be authorized.
15 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 15 required :card_id, String |
#category ⇒ Symbol, ...
The category of the card authentication attempt.
21 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 21 optional :category, enum: -> { Increase::Simulations::CardAuthenticationCreateParams::Category } |
#device_channel ⇒ Symbol, ...
The device channel of the card authentication attempt.
27 28 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 27 optional :device_channel, enum: -> { Increase::Simulations::CardAuthenticationCreateParams::DeviceChannel } |
#merchant_acceptor_id ⇒ String?
The merchant identifier (commonly abbreviated as MID) of the merchant the card is transacting with.
35 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 35 optional :merchant_acceptor_id, String |
#merchant_category_code ⇒ String?
The Merchant Category Code (commonly abbreviated as MCC) of the merchant the card is transacting with.
42 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 42 optional :merchant_category_code, String |
#merchant_country ⇒ String?
The country the merchant resides in.
48 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 48 optional :merchant_country, String |
#merchant_name ⇒ String?
The name of the merchant
54 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 54 optional :merchant_name, String |
#purchase_amount ⇒ Integer?
The purchase amount in cents.
60 |
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 60 optional :purchase_amount, Integer |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/simulations/card_authentication_create_params.rb', line 95
|