Class: Increase::Models::Entity::Corporation
- Defined in:
- lib/increase/models/entity.rb
Defined Under Namespace
Classes: Address, BeneficialOwner
Instance Attribute Summary collapse
-
#address ⇒ Increase::Models::Entity::Corporation::Address
The corporation's address.
-
#beneficial_owners ⇒ Array<Increase::Models::Entity::Corporation::BeneficialOwner>
The identifying details of anyone controlling or owning 25% or more of the corporation.
-
#incorporation_state ⇒ String
The two-letter United States Postal Service (USPS) abbreviation for the corporation's state of incorporation.
-
#industry_code ⇒ String
The numeric North American Industry Classification System (NAICS) code submitted for the corporation.
-
#name_ ⇒ String
The legal name of the corporation.
-
#tax_identifier ⇒ String
The Employer Identification Number (EIN) for the corporation.
-
#website ⇒ String
The website of the corporation.
Method Summary
Methods inherited from BaseModel
Instance Attribute Details
#address ⇒ Increase::Models::Entity::Corporation::Address
The corporation's address.
82 |
# File 'lib/increase/models/entity.rb', line 82 required :address, -> { Increase::Models::Entity::Corporation::Address } |
#beneficial_owners ⇒ Array<Increase::Models::Entity::Corporation::BeneficialOwner>
The identifying details of anyone controlling or owning 25% or more of the corporation.
87 88 |
# File 'lib/increase/models/entity.rb', line 87 required :beneficial_owners, Increase::ArrayOf.new(-> { Increase::Models::Entity::Corporation::BeneficialOwner }) |
#incorporation_state ⇒ String
The two-letter United States Postal Service (USPS) abbreviation for the corporation's state of incorporation.
93 |
# File 'lib/increase/models/entity.rb', line 93 required :incorporation_state, String |
#industry_code ⇒ String
The numeric North American Industry Classification System (NAICS) code submitted for the corporation.
98 |
# File 'lib/increase/models/entity.rb', line 98 required :industry_code, String |
#name_ ⇒ String
The legal name of the corporation.
103 |
# File 'lib/increase/models/entity.rb', line 103 required :name_, String |
#tax_identifier ⇒ String
The Employer Identification Number (EIN) for the corporation.
108 |
# File 'lib/increase/models/entity.rb', line 108 required :tax_identifier, String |
#website ⇒ String
The website of the corporation.
113 |
# File 'lib/increase/models/entity.rb', line 113 required :website, String |