Class: Increase::Models::EntityCreateParams::Trust::Grantor

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/increase/models/entity_create_params.rb

Overview

See Also:

Defined Under Namespace

Classes: Address, Identification

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(city: , line1: , state: , zip: , line2: nil) ⇒ Object

Some parameter documentations has been truncated, see Address for more details.

The individual’s physical address. Mail receiving locations like PO Boxes and PMB’s are disallowed.

Parameters:

  • city (String) (defaults to: )

    The city of the address.

  • line1 (String) (defaults to: )

    The first line of the address. This is usually the street number and street.

  • state (String) (defaults to: )

    The two-letter United States Postal Service (USPS) abbreviation for the state of

  • zip (String) (defaults to: )

    The ZIP code of the address.

  • line2 (String) (defaults to: nil)

    The second line of the address. This might be the floor or room number.



# File 'lib/increase/models/entity_create_params.rb', line 2088

Instance Attribute Details

#addressIncrease::Models::EntityCreateParams::Trust::Grantor::Address

The individual’s physical address. Mail receiving locations like PO Boxes and PMB’s are disallowed.



2059
# File 'lib/increase/models/entity_create_params.rb', line 2059

required :address, -> { Increase::EntityCreateParams::Trust::Grantor::Address }

#confirmed_no_us_tax_idBoolean?

The identification method for an individual can only be a passport, driver’s license, or other document if you’ve confirmed the individual does not have a US tax id (either a Social Security Number or Individual Taxpayer Identification Number).

Returns:

  • (Boolean, nil)


2086
# File 'lib/increase/models/entity_create_params.rb', line 2086

optional :confirmed_no_us_tax_id, Increase::Internal::Type::Boolean

#date_of_birthDate

The person’s date of birth in YYYY-MM-DD format.

Returns:

  • (Date)


2065
# File 'lib/increase/models/entity_create_params.rb', line 2065

required :date_of_birth, Date

#identificationIncrease::Models::EntityCreateParams::Trust::Grantor::Identification

A means of verifying the person’s identity.



2071
# File 'lib/increase/models/entity_create_params.rb', line 2071

required :identification, -> { Increase::EntityCreateParams::Trust::Grantor::Identification }

#nameString

The person’s legal name.

Returns:

  • (String)


2077
# File 'lib/increase/models/entity_create_params.rb', line 2077

required :name, String