Class: Straddle::Models::UnmaskedComplianceProfile::IndividualComplianceProfile
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Straddle::Models::UnmaskedComplianceProfile::IndividualComplianceProfile
- Defined in:
- lib/straddle/models/unmasked_compliance_profile.rb,
sig/straddle/models/unmasked_compliance_profile.rbs
Instance Attribute Summary collapse
-
#dob ⇒ Date?
Date of birth in
YYYY-MM-DDformat. -
#ssn ⇒ String?
Social Security number in
XXX-XX-XXXXformat.
Instance Method Summary collapse
-
#initialize ⇒ IndividualComplianceProfile
constructor
A new instance of IndividualComplianceProfile.
- #to_hash ⇒ { dob: Date?, ssn: String? }
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 ⇒ IndividualComplianceProfile
Returns a new instance of IndividualComplianceProfile.
17 |
# File 'sig/straddle/models/unmasked_compliance_profile.rbs', line 17
def initialize: (dob: Date?, ssn: String?) -> void
|
Instance Attribute Details
#dob ⇒ Date?
Date of birth in YYYY-MM-DD format. Required for Patriot Act-compliant KYC
verification.
18 |
# File 'lib/straddle/models/unmasked_compliance_profile.rb', line 18 required :dob, Date, nil?: true |
#ssn ⇒ String?
Social Security number in XXX-XX-XXXX format. Required for Patriot
Act-compliant KYC verification.
25 |
# File 'lib/straddle/models/unmasked_compliance_profile.rb', line 25 required :ssn, String, nil?: true |
Instance Method Details
#to_hash ⇒ { dob: Date?, ssn: String? }
19 |
# File 'sig/straddle/models/unmasked_compliance_profile.rbs', line 19
def to_hash: -> { dob: Date?, ssn: String? }
|