Class: Increase::Models::EntityCreateParams::Corporation

Inherits:
Internal::Type::BaseModel show all
Defined in:
lib/increase/models/entity_create_params.rb

Defined Under Namespace

Modules: BeneficialOwnershipExemptionReason Classes: Address, BeneficialOwner

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

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: , state: , zip: , line2: nil) ⇒ Object

Some parameter documentations has been truncated, see Address for more details.

The entity’s physical address. Mail receiving locations like PO Boxes and PMB’s are disallowed.

Parameters:

  • city (String) (defaults to: )

    The city of the address.

  • line1 (String) (defaults to: )

    The first line of the address. This is usually the street number and street.

  • state (String) (defaults to: )

    The two-letter United States Postal Service (USPS) abbreviation for the state of

  • zip (String) (defaults to: )

    The ZIP code of the address.

  • line2 (String) (defaults to: nil)

    The second line of the address. This might be the floor or room number.



# File 'lib/increase/models/entity_create_params.rb', line 190


Instance Attribute Details

#addressIncrease::Models::EntityCreateParams::Corporation::Address

The entity’s physical address. Mail receiving locations like PO Boxes and PMB’s are disallowed.



136
# File 'lib/increase/models/entity_create_params.rb', line 136

required :address, -> { Increase::EntityCreateParams::Corporation::Address }

#beneficial_ownersArray<Increase::Models::EntityCreateParams::Corporation::BeneficialOwner>

The identifying details of each person who owns 25% or more of the business and one control person, like the CEO, CFO, or other executive. You can submit between 1 and 5 people to this list.



144
145
# File 'lib/increase/models/entity_create_params.rb', line 144

required :beneficial_owners,
-> { Increase::Internal::Type::ArrayOf[Increase::EntityCreateParams::Corporation::BeneficialOwner] }

#beneficial_ownership_exemption_reasonSymbol, ...

If the entity is exempt from the requirement to submit beneficial owners, provide the justification. If a reason is provided, you do not need to submit a list of beneficial owners.



165
166
# File 'lib/increase/models/entity_create_params.rb', line 165

optional :beneficial_ownership_exemption_reason,
enum: -> { Increase::EntityCreateParams::Corporation::BeneficialOwnershipExemptionReason }

#incorporation_stateString?

The two-letter United States Postal Service (USPS) abbreviation for the corporation’s state of incorporation.

Returns:

  • (String, nil)


173
# File 'lib/increase/models/entity_create_params.rb', line 173

optional :incorporation_state, String

#industry_codeString?

The North American Industry Classification System (NAICS) code for the corporation’s primary line of business. This is a number, like ‘5132` for `Software Publishers`. A full list of classification codes is available [here](increase.com/documentation/data-dictionary#north-american-industry-classification-system-codes).

Returns:

  • (String, nil)


182
# File 'lib/increase/models/entity_create_params.rb', line 182

optional :industry_code, String

#nameString

The legal name of the corporation.

Returns:

  • (String)


151
# File 'lib/increase/models/entity_create_params.rb', line 151

required :name, String

#tax_identifierString

The Employer Identification Number (EIN) for the corporation.

Returns:

  • (String)


157
# File 'lib/increase/models/entity_create_params.rb', line 157

required :tax_identifier, String

#websiteString?

The website of the corporation.

Returns:

  • (String, nil)


188
# File 'lib/increase/models/entity_create_params.rb', line 188

optional :website, String

Class Method Details

.valuesArray<Symbol>

Returns:

  • (Array<Symbol>)


# File 'lib/increase/models/entity_create_params.rb', line 635