Class: Increase::Models::Entity::Trust::Trustee
- Defined in:
- lib/increase/models/entity.rb
Defined Under Namespace
Classes: Individual
Instance Attribute Summary collapse
-
#individual ⇒ Increase::Models::Entity::Trust::Trustee::Individual
The individual trustee of the trust.
-
#structure ⇒ Symbol
The structure of the trustee.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#individual ⇒ Increase::Models::Entity::Trust::Trustee::Individual
The individual trustee of the trust. Will be present if the trustee's structure
is equal to individual
.
594 |
# File 'lib/increase/models/entity.rb', line 594 required :individual, -> { Increase::Models::Entity::Trust::Trustee::Individual } |
#structure ⇒ Symbol
The structure of the trustee. Will always be equal to individual
.
599 |
# File 'lib/increase/models/entity.rb', line 599 required :structure, Increase::Enum.new(:individual) |