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

Copy Markdown View Source

Details of the government authority entity. Will be present if structure is equal to government_authority.

Fields

  • address - The government authority's address.
  • authorized_persons - The identifying details of authorized persons of the government authority.
  • category - The category of the government authority.
  • name - The government authority's name.
  • tax_identifier - The Employer Identification Number (EIN) of the government authority.
  • website - The government authority's website.

Summary

Types

t()

@type t() :: %Increase.Entities.Entity.GovernmentAuthority{
  address: Increase.Entities.Entity.GovernmentAuthority.Address.t(),
  authorized_persons: [
    Increase.Entities.Entity.GovernmentAuthority.AuthorizedPerson.t()
  ],
  category: String.t(),
  name: String.t(),
  tax_identifier: String.t() | nil,
  website: String.t() | nil
}