Class: Increase::Models::Entity::Corporation
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Increase::Models::Entity::Corporation
- Defined in:
- lib/increase/models/entity.rb
Overview
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.
-
#email ⇒ String?
An email address for the business.
-
#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.
Instance Method Summary collapse
-
#initialize(city:, line1:, line2:, state:, zip:) ⇒ Object
constructor
Some parameter documentations has been truncated, see Address for more details.
Methods inherited from Internal::Type::BaseModel
==, #==, #[], coerce, #deconstruct_keys, #deep_to_h, dump, fields, hash, #hash, inherited, inspect, #inspect, known_fields, optional, recursively_to_h, required, #to_h, #to_json, #to_s, to_sorbet_type, #to_yaml
Methods included from Internal::Type::Converter
#coerce, coerce, #dump, dump, #inspect, inspect, meta_info, new_coerce_state, type_info
Methods included from Internal::Util::SorbetRuntimeSupport
#const_missing, #define_sorbet_constant!, #sorbet_constant_defined?, #to_sorbet_type, to_sorbet_type
Constructor Details
#initialize(city:, line1:, line2:, state:, zip:) ⇒ Object
Some parameter documentations has been truncated, see Address for more details.
The corporation’s address.
|
|
# File 'lib/increase/models/entity.rb', line 219
|
Instance Attribute Details
#address ⇒ Increase::Models::Entity::Corporation::Address
The corporation’s address.
171 |
# File 'lib/increase/models/entity.rb', line 171 required :address, -> { Increase::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.
178 179 |
# File 'lib/increase/models/entity.rb', line 178 required :beneficial_owners, -> { Increase::Internal::Type::ArrayOf[Increase::Entity::Corporation::BeneficialOwner] } |
#email ⇒ String?
An email address for the business.
185 |
# File 'lib/increase/models/entity.rb', line 185 required :email, String, nil?: true |
#incorporation_state ⇒ String?
The two-letter United States Postal Service (USPS) abbreviation for the corporation’s state of incorporation.
192 |
# File 'lib/increase/models/entity.rb', line 192 required :incorporation_state, String, nil?: true |
#industry_code ⇒ String?
The numeric North American Industry Classification System (NAICS) code submitted for the corporation.
199 |
# File 'lib/increase/models/entity.rb', line 199 required :industry_code, String, nil?: true |
#name ⇒ String
The legal name of the corporation.
205 |
# File 'lib/increase/models/entity.rb', line 205 required :name, String |
#tax_identifier ⇒ String?
The Employer Identification Number (EIN) for the corporation.
211 |
# File 'lib/increase/models/entity.rb', line 211 required :tax_identifier, String, nil?: true |
#website ⇒ String?
The website of the corporation.
217 |
# File 'lib/increase/models/entity.rb', line 217 required :website, String, nil?: true |