Class: Dataleon::Models::CompanyRegistration::Company
- Inherits:
-
Internal::Type::BaseModel
- Object
- Internal::Type::BaseModel
- Dataleon::Models::CompanyRegistration::Company
- Defined in:
- lib/dataleon/models/company_registration.rb
Overview
Defined Under Namespace
Classes: Contact
Instance Attribute Summary collapse
-
#address ⇒ String?
Full registered address of the company.
-
#closure_date ⇒ Date?
Closure date of the company, if applicable.
-
#commercial_name ⇒ String?
Trade or commercial name of the company.
-
#contact ⇒ Dataleon::Models::CompanyRegistration::Company::Contact?
Contact information for the company, including email, phone number, and address.
-
#country ⇒ String?
Country code where the company is registered.
-
#email ⇒ String?
Contact email address for the company.
-
#employees ⇒ Integer?
Number of employees in the company.
-
#employer_identification_number ⇒ String?
Employer Identification Number (EIN) or equivalent.
-
#insolvency_exists ⇒ Boolean?
Indicates whether an insolvency procedure exists for the company.
-
#insolvency_ongoing ⇒ Boolean?
Indicates whether an insolvency procedure is ongoing for the company.
-
#legal_form ⇒ String?
Legal form or structure of the company (e.g., LLC, SARL).
-
#name ⇒ String?
Legal registered name of the company.
-
#phone_number ⇒ String?
Contact phone number for the company, including country code.
-
#registration_date ⇒ Date?
Date when the company was officially registered.
-
#registration_id ⇒ String?
Official company registration number or ID.
-
#share_capital ⇒ String?
Total share capital of the company, including currency.
-
#status ⇒ String?
Current status of the company (e.g., active, inactive).
-
#tax_identification_number ⇒ String?
Tax identification number for the company.
-
#type ⇒ String?
Type of company within the workspace, e.g., main or affiliated.
-
#website_url ⇒ String?
Official website URL of the company.
Instance Method Summary collapse
-
#initialize(address: nil, closure_date: nil, commercial_name: nil, contact: nil, country: nil, email: nil, employees: nil, employer_identification_number: nil, insolvency_exists: nil, insolvency_ongoing: nil, legal_form: nil, name: nil, phone_number: nil, registration_date: nil, registration_id: nil, share_capital: nil, status: nil, tax_identification_number: nil, type: nil, website_url: nil) ⇒ Object
constructor
Some parameter documentations has been truncated, see Company 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(address: nil, closure_date: nil, commercial_name: nil, contact: nil, country: nil, email: nil, employees: nil, employer_identification_number: nil, insolvency_exists: nil, insolvency_ongoing: nil, legal_form: nil, name: nil, phone_number: nil, registration_date: nil, registration_id: nil, share_capital: nil, status: nil, tax_identification_number: nil, type: nil, website_url: nil) ⇒ Object
Some parameter documentations has been truncated, see Dataleon::Models::CompanyRegistration::Company for more details.
Main information about the company being registered, including legal name, registration ID, and address.
|
|
# File 'lib/dataleon/models/company_registration.rb', line 390
|
Instance Attribute Details
#address ⇒ String?
Full registered address of the company.
274 |
# File 'lib/dataleon/models/company_registration.rb', line 274 optional :address, String |
#closure_date ⇒ Date?
Closure date of the company, if applicable.
280 |
# File 'lib/dataleon/models/company_registration.rb', line 280 optional :closure_date, Date |
#commercial_name ⇒ String?
Trade or commercial name of the company.
286 |
# File 'lib/dataleon/models/company_registration.rb', line 286 optional :commercial_name, String |
#contact ⇒ Dataleon::Models::CompanyRegistration::Company::Contact?
Contact information for the company, including email, phone number, and address.
292 |
# File 'lib/dataleon/models/company_registration.rb', line 292 optional :contact, -> { Dataleon::CompanyRegistration::Company::Contact } |
#country ⇒ String?
Country code where the company is registered.
298 |
# File 'lib/dataleon/models/company_registration.rb', line 298 optional :country, String |
#email ⇒ String?
Contact email address for the company.
304 |
# File 'lib/dataleon/models/company_registration.rb', line 304 optional :email, String |
#employees ⇒ Integer?
Number of employees in the company.
310 |
# File 'lib/dataleon/models/company_registration.rb', line 310 optional :employees, Integer |
#employer_identification_number ⇒ String?
Employer Identification Number (EIN) or equivalent.
316 |
# File 'lib/dataleon/models/company_registration.rb', line 316 optional :employer_identification_number, String |
#insolvency_exists ⇒ Boolean?
Indicates whether an insolvency procedure exists for the company.
322 |
# File 'lib/dataleon/models/company_registration.rb', line 322 optional :insolvency_exists, Dataleon::Internal::Type::Boolean |
#insolvency_ongoing ⇒ Boolean?
Indicates whether an insolvency procedure is ongoing for the company.
328 |
# File 'lib/dataleon/models/company_registration.rb', line 328 optional :insolvency_ongoing, Dataleon::Internal::Type::Boolean |
#legal_form ⇒ String?
Legal form or structure of the company (e.g., LLC, SARL).
334 |
# File 'lib/dataleon/models/company_registration.rb', line 334 optional :legal_form, String |
#name ⇒ String?
Legal registered name of the company.
340 |
# File 'lib/dataleon/models/company_registration.rb', line 340 optional :name, String |
#phone_number ⇒ String?
Contact phone number for the company, including country code.
346 |
# File 'lib/dataleon/models/company_registration.rb', line 346 optional :phone_number, String |
#registration_date ⇒ Date?
Date when the company was officially registered.
352 |
# File 'lib/dataleon/models/company_registration.rb', line 352 optional :registration_date, Date |
#registration_id ⇒ String?
Official company registration number or ID.
358 |
# File 'lib/dataleon/models/company_registration.rb', line 358 optional :registration_id, String |
#share_capital ⇒ String?
Total share capital of the company, including currency.
364 |
# File 'lib/dataleon/models/company_registration.rb', line 364 optional :share_capital, String |
#status ⇒ String?
Current status of the company (e.g., active, inactive).
370 |
# File 'lib/dataleon/models/company_registration.rb', line 370 optional :status, String |
#tax_identification_number ⇒ String?
Tax identification number for the company.
376 |
# File 'lib/dataleon/models/company_registration.rb', line 376 optional :tax_identification_number, String |
#type ⇒ String?
Type of company within the workspace, e.g., main or affiliated.
382 |
# File 'lib/dataleon/models/company_registration.rb', line 382 optional :type, String |
#website_url ⇒ String?
Official website URL of the company.
388 |
# File 'lib/dataleon/models/company_registration.rb', line 388 optional :website_url, String |