Class: Increase::Models::Entity::Trust
- Defined in:
- lib/increase/models/entity.rb
Defined Under Namespace
Classes: Address, Grantor, Trustee
Instance Attribute Summary collapse
-
#address ⇒ Increase::Models::Entity::Trust::Address
The trust's address.
-
#category ⇒ Symbol
Whether the trust is
revocable
orirrevocable
. -
#formation_document_file_id ⇒ String
The ID for the File containing the formation document of the trust.
-
#formation_state ⇒ String
The two-letter United States Postal Service (USPS) abbreviation for the state in which the trust was formed.
-
#grantor ⇒ Increase::Models::Entity::Trust::Grantor
The grantor of the trust.
-
#name_ ⇒ String
The trust's name.
-
#tax_identifier ⇒ String
The Employer Identification Number (EIN) of the trust itself.
-
#trustees ⇒ Array<Increase::Models::Entity::Trust::Trustee>
The trustees of the trust.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#address ⇒ Increase::Models::Entity::Trust::Address
The trust's address.
458 |
# File 'lib/increase/models/entity.rb', line 458 required :address, -> { Increase::Models::Entity::Trust::Address } |
#category ⇒ Symbol
Whether the trust is revocable
or irrevocable
.
463 |
# File 'lib/increase/models/entity.rb', line 463 required :category, Increase::Enum.new(:revocable, :irrevocable) |
#formation_document_file_id ⇒ String
The ID for the File containing the formation document of the trust.
468 |
# File 'lib/increase/models/entity.rb', line 468 required :formation_document_file_id, String |
#formation_state ⇒ String
The two-letter United States Postal Service (USPS) abbreviation for the state in which the trust was formed.
473 |
# File 'lib/increase/models/entity.rb', line 473 required :formation_state, String |
#grantor ⇒ Increase::Models::Entity::Trust::Grantor
The grantor of the trust. Will be present if the category
is revocable
.
478 |
# File 'lib/increase/models/entity.rb', line 478 required :grantor, -> { Increase::Models::Entity::Trust::Grantor } |
#name_ ⇒ String
The trust's name.
483 |
# File 'lib/increase/models/entity.rb', line 483 required :name_, String |
#tax_identifier ⇒ String
The Employer Identification Number (EIN) of the trust itself.
488 |
# File 'lib/increase/models/entity.rb', line 488 required :tax_identifier, String |