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

Copy Markdown View Source

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

Fields

  • address - The corporation's address.
  • beneficial_owners - The identifying details of anyone controlling or owning 25% or more of the corporation.
  • beneficial_ownership_exemption_reason - If the entity is exempt from the requirement to submit beneficial owners, the justification for the exemption.
  • email - An email address for the business.
  • incorporation_state - The two-letter United States Postal Service (USPS) abbreviation for the corporation's state of incorporation.
  • industry_code - The numeric North American Industry Classification System (NAICS) code submitted for the corporation.
  • legal_identifier - The legal identifier of the corporation.
  • name - The legal name of the corporation.
  • website - The website of the corporation.

Summary

Types

t()

@type t() :: %Increase.Entities.Entity.Corporation{
  address: Increase.Entities.Entity.Corporation.Address.t(),
  beneficial_owners: [Increase.Entities.Entity.Corporation.BeneficialOwner.t()],
  beneficial_ownership_exemption_reason: String.t() | nil,
  email: String.t() | nil,
  incorporation_state: String.t() | nil,
  industry_code: String.t() | nil,
  legal_identifier:
    Increase.Entities.Entity.Corporation.LegalIdentifier.t() | nil,
  name: String.t(),
  website: String.t() | nil
}