Class: Increase::Models::EntityUpdateParams
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::EntityUpdateParams
- Extended by:
- Internal::Type::RequestParameters::Converter
- Includes:
- Internal::Type::RequestParameters
- Defined in:
- lib/increase/models/entity_update_params.rb
Overview
Defined Under Namespace
Classes: Corporation, GovernmentAuthority, NaturalPerson, RiskRating, ThirdPartyVerification, Trust
Instance Attribute Summary collapse
-
#corporation ⇒ Increase::Models::EntityUpdateParams::Corporation?
Details of the corporation entity to update.
-
#details_confirmed_at ⇒ Time?
When your user last confirmed the Entity’s details.
-
#government_authority ⇒ Increase::Models::EntityUpdateParams::GovernmentAuthority?
Details of the government authority entity to update.
-
#natural_person ⇒ Increase::Models::EntityUpdateParams::NaturalPerson?
Details of the natural person entity to update.
-
#risk_rating ⇒ Increase::Models::EntityUpdateParams::RiskRating?
An assessment of the entity’s potential risk of involvement in financial crimes, such as money laundering.
-
#third_party_verification ⇒ Increase::Models::EntityUpdateParams::ThirdPartyVerification?
If you are using a third-party service for identity verification, you can use this field to associate this Entity with the identifier that represents them in that service.
-
#trust ⇒ Increase::Models::EntityUpdateParams::Trust?
Details of the trust entity to update.
Attributes included from Internal::Type::RequestParameters
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(city: , line1: , state: , zip: , line2: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see NaturalPerson::Address 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(city: , line1: , state: , zip: , line2: nil) ⇒ Object
Some parameter documentations has been truncated, see Increase::Models::EntityUpdateParams::NaturalPerson::Address for more details.
The entity’s physical address. Mail receiving locations like PO Boxes and PMB’s are disallowed.
|
|
# File 'lib/increase/models/entity_update_params.rb', line 150
|
Instance Attribute Details
#corporation ⇒ Increase::Models::EntityUpdateParams::Corporation?
Details of the corporation entity to update. If you specify this parameter and the entity is not a corporation, the request will fail.
15 |
# File 'lib/increase/models/entity_update_params.rb', line 15 optional :corporation, -> { Increase::EntityUpdateParams::Corporation } |
#details_confirmed_at ⇒ Time?
When your user last confirmed the Entity’s details. Depending on your program, you may be required to affirmatively confirm details with your users on an annual basis.
23 |
# File 'lib/increase/models/entity_update_params.rb', line 23 optional :details_confirmed_at, Time |
#government_authority ⇒ Increase::Models::EntityUpdateParams::GovernmentAuthority?
Details of the government authority entity to update. If you specify this parameter and the entity is not a government authority, the request will fail.
30 |
# File 'lib/increase/models/entity_update_params.rb', line 30 optional :government_authority, -> { Increase::EntityUpdateParams::GovernmentAuthority } |
#natural_person ⇒ Increase::Models::EntityUpdateParams::NaturalPerson?
Details of the natural person entity to update. If you specify this parameter and the entity is not a natural person, the request will fail.
37 |
# File 'lib/increase/models/entity_update_params.rb', line 37 optional :natural_person, -> { Increase::EntityUpdateParams::NaturalPerson } |
#risk_rating ⇒ Increase::Models::EntityUpdateParams::RiskRating?
An assessment of the entity’s potential risk of involvement in financial crimes, such as money laundering.
44 |
# File 'lib/increase/models/entity_update_params.rb', line 44 optional :risk_rating, -> { Increase::EntityUpdateParams::RiskRating } |
#third_party_verification ⇒ Increase::Models::EntityUpdateParams::ThirdPartyVerification?
If you are using a third-party service for identity verification, you can use this field to associate this Entity with the identifier that represents them in that service.
52 |
# File 'lib/increase/models/entity_update_params.rb', line 52 optional :third_party_verification, -> { Increase::EntityUpdateParams::ThirdPartyVerification } |
#trust ⇒ Increase::Models::EntityUpdateParams::Trust?
Details of the trust entity to update. If you specify this parameter and the entity is not a trust, the request will fail.
59 |
# File 'lib/increase/models/entity_update_params.rb', line 59 optional :trust, -> { Increase::EntityUpdateParams::Trust } |
Class Method Details
.values ⇒ Array<Symbol>
|
|
# File 'lib/increase/models/entity_update_params.rb', line 364
|