Class: MethodRuby::Models::Accounts::VerificationSessionUpdateParams::PreAuth
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- MethodRuby::Models::Accounts::VerificationSessionUpdateParams::PreAuth
- Defined in:
- lib/method_ruby/models/accounts/verification_session_update_params.rb
Instance Attribute Summary collapse
-
#cvv ⇒ String?
The card CVV.
-
#exp_month ⇒ String?
The card expiration month.
-
#exp_year ⇒ String?
The card expiration year.
-
#number ⇒ String?
The full card number.
Method Summary
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, #initialize, 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
This class inherits a constructor from MethodRuby::Internal::Type::BaseModel
Instance Attribute Details
#cvv ⇒ String?
The card CVV. Required if null or cvv_check is fail.
242 |
# File 'lib/method_ruby/models/accounts/verification_session_update_params.rb', line 242 optional :cvv, String |
#exp_month ⇒ String?
The card expiration month. Required if null or exp_check is fail.
248 |
# File 'lib/method_ruby/models/accounts/verification_session_update_params.rb', line 248 optional :exp_month, String |
#exp_year ⇒ String?
The card expiration year. Required if null or exp_check is fail.
254 |
# File 'lib/method_ruby/models/accounts/verification_session_update_params.rb', line 254 optional :exp_year, String |
#number ⇒ String?
The full card number. Required if the number on the session is null.
260 |
# File 'lib/method_ruby/models/accounts/verification_session_update_params.rb', line 260 optional :number, String |