Class: Increase::Models::CardValidationCreateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::CardValidationCreateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/increase/models/card_validation_create_params.rb
Overview
Instance Attribute Summary collapse
-
#account_id ⇒ String
The identifier of the Account from which to send the validation.
-
#card_token_id ⇒ String
The Increase identifier for the Card Token that represents the card number you’re validating.
-
#cardholder_first_name ⇒ String?
The cardholder’s first name.
-
#cardholder_last_name ⇒ String?
The cardholder’s last name.
-
#cardholder_middle_name ⇒ String?
The cardholder’s middle name.
-
#cardholder_postal_code ⇒ String?
The postal code of the cardholder’s address.
-
#cardholder_street_address ⇒ String?
The cardholder’s street address.
-
#merchant_category_code ⇒ String
A four-digit code (MCC) identifying the type of business or service provided by the merchant.
-
#merchant_city_name ⇒ String
The city where the merchant (typically your business) is located.
-
#merchant_name ⇒ String
The merchant name that will appear in the cardholder’s statement descriptor.
-
#merchant_postal_code ⇒ String
The postal code for the merchant’s (typically your business’s) location.
-
#merchant_state ⇒ String
The U.S.
Attributes included from Internal::Type::RequestParameters
Instance Method Summary collapse
-
#initialize(account_id: , card_token_id: , merchant_category_code: , merchant_city_name: , merchant_name: , merchant_postal_code: , merchant_state: , cardholder_first_name: nil, cardholder_last_name: nil, cardholder_middle_name: nil, cardholder_postal_code: nil, cardholder_street_address: nil, request_options: {}) ⇒ Object
constructor
Some parameter documentations has been truncated, see CardValidationCreateParams 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(account_id: , card_token_id: , merchant_category_code: , merchant_city_name: , merchant_name: , merchant_postal_code: , merchant_state: , cardholder_first_name: nil, cardholder_last_name: nil, cardholder_middle_name: nil, cardholder_postal_code: nil, cardholder_street_address: nil, request_options: {}) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::CardValidationCreateParams for more details.
|
|
# File 'lib/increase/models/card_validation_create_params.rb', line 85
|
Instance Attribute Details
#account_id ⇒ String
The identifier of the Account from which to send the validation.
14 |
# File 'lib/increase/models/card_validation_create_params.rb', line 14 required :account_id, String |
#card_token_id ⇒ String
The Increase identifier for the Card Token that represents the card number you’re validating.
21 |
# File 'lib/increase/models/card_validation_create_params.rb', line 21 required :card_token_id, String |
#cardholder_first_name ⇒ String?
The cardholder’s first name.
59 |
# File 'lib/increase/models/card_validation_create_params.rb', line 59 optional :cardholder_first_name, String |
#cardholder_last_name ⇒ String?
The cardholder’s last name.
65 |
# File 'lib/increase/models/card_validation_create_params.rb', line 65 optional :cardholder_last_name, String |
#cardholder_middle_name ⇒ String?
The cardholder’s middle name.
71 |
# File 'lib/increase/models/card_validation_create_params.rb', line 71 optional :cardholder_middle_name, String |
#cardholder_postal_code ⇒ String?
The postal code of the cardholder’s address.
77 |
# File 'lib/increase/models/card_validation_create_params.rb', line 77 optional :cardholder_postal_code, String |
#cardholder_street_address ⇒ String?
The cardholder’s street address.
83 |
# File 'lib/increase/models/card_validation_create_params.rb', line 83 optional :cardholder_street_address, String |
#merchant_category_code ⇒ String
A four-digit code (MCC) identifying the type of business or service provided by the merchant.
28 |
# File 'lib/increase/models/card_validation_create_params.rb', line 28 required :merchant_category_code, String |
#merchant_city_name ⇒ String
The city where the merchant (typically your business) is located.
34 |
# File 'lib/increase/models/card_validation_create_params.rb', line 34 required :merchant_city_name, String |
#merchant_name ⇒ String
The merchant name that will appear in the cardholder’s statement descriptor. Typically your business name.
41 |
# File 'lib/increase/models/card_validation_create_params.rb', line 41 required :merchant_name, String |
#merchant_postal_code ⇒ String
The postal code for the merchant’s (typically your business’s) location.
47 |
# File 'lib/increase/models/card_validation_create_params.rb', line 47 required :merchant_postal_code, String |
#merchant_state ⇒ String
The U.S. state where the merchant (typically your business) is located.
53 |
# File 'lib/increase/models/card_validation_create_params.rb', line 53 required :merchant_state, String |