Class: Straddle::Models::UnmaskedComplianceProfile::IndividualComplianceProfile

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/straddle/models/unmasked_compliance_profile.rb,
sig/straddle/models/unmasked_compliance_profile.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

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.

Parameters:

  • dob: (Date, nil)
  • ssn: (String, nil)


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.

Parameters:

  • value (Date, nil)

Returns:

  • (Date, nil)


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.

Parameters:

  • value (String, nil)

Returns:

  • (String, nil)


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? }

Returns:

  • ({ dob: Date?, ssn: String? })


19
# File 'sig/straddle/models/unmasked_compliance_profile.rbs', line 19

def to_hash: -> { dob: Date?, ssn: String? }