Increase.Entities.Entity.Trust (Increase v1.0.0)

Copy Markdown View Source

Details of the trust entity. Will be present if structure is equal to trust.

Fields

  • address - The trust's address.
  • category - Whether the trust is revocable or irrevocable.
  • formation_document_file_id - The ID for the File containing the formation document of the trust.
  • formation_state - The two-letter United States Postal Service (USPS) abbreviation for the state in which the trust was formed.
  • grantor - The grantor of the trust. Will be present if the category is revocable.
  • name - The trust's name.
  • tax_identifier - The Employer Identification Number (EIN) of the trust itself.
  • trustees - The trustees of the trust.

Summary

Types

t()

@type t() :: %Increase.Entities.Entity.Trust{
  address: Increase.Entities.Entity.Trust.Address.t(),
  category: String.t(),
  formation_document_file_id: String.t() | nil,
  formation_state: String.t() | nil,
  grantor: Increase.Entities.Entity.Trust.Grantor.t() | nil,
  name: String.t(),
  tax_identifier: String.t() | nil,
  trustees: [Increase.Entities.Entity.Trust.Trustee.t()]
}