Class: MethodRuby::Models::EntityCreateParams::Body::Individual::Individual
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- MethodRuby::Models::EntityCreateParams::Body::Individual::Individual
- Defined in:
- lib/method_ruby/models/entity_create_params.rb
Overview
Instance Attribute Summary collapse
-
#dob ⇒ Date?
Date of birth of the individual (YYYY-MM-DD).
-
#email ⇒ String?
Email address of the individual.
-
#first_name ⇒ String?
First name of the individual.
-
#last_name ⇒ String?
Last name of the individual.
-
#phone ⇒ String?
Phone number of the individual.
-
#ssn ⇒ String?
Social security number (9 digits).
-
#ssn_4 ⇒ String?
Last 4 digits of SSN.
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
#dob ⇒ Date?
Date of birth of the individual (YYYY-MM-DD).
86 |
# File 'lib/method_ruby/models/entity_create_params.rb', line 86 optional :dob, Date |
#email ⇒ String?
Email address of the individual.
92 |
# File 'lib/method_ruby/models/entity_create_params.rb', line 92 optional :email, String |
#first_name ⇒ String?
First name of the individual.
98 |
# File 'lib/method_ruby/models/entity_create_params.rb', line 98 optional :first_name, String |
#last_name ⇒ String?
Last name of the individual.
104 |
# File 'lib/method_ruby/models/entity_create_params.rb', line 104 optional :last_name, String |
#phone ⇒ String?
Phone number of the individual.
110 |
# File 'lib/method_ruby/models/entity_create_params.rb', line 110 optional :phone, String |
#ssn ⇒ String?
Social security number (9 digits). Mutually exclusive with ssn_4.
116 |
# File 'lib/method_ruby/models/entity_create_params.rb', line 116 optional :ssn, String |
#ssn_4 ⇒ String?
Last 4 digits of SSN. Mutually exclusive with ssn.
122 |
# File 'lib/method_ruby/models/entity_create_params.rb', line 122 optional :ssn_4, String |