Conekta::CompanyResponse
September 19, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| id | String | The unique identifier for the company. | |
| name | String | The name of the company. | |
| active | Boolean | Indicates if the company is active. | |
| account_status | String | The current status of the company's account. | |
| parent_company_id | String | The identifier of the parent company, if any. | [optional] |
| onboarding_status | String | The current status of the company's onboarding process. | |
| documents | Array<CompanyResponseDocumentsInner> | A list of documents related to the company. | |
| created_at | Integer | Timestamp of when the company was created. | |
| object | String | The type of object, typically "company". | |
| three_ds_enabled | Boolean | Indicates if 3DS authentication is enabled for the company. | [optional] |
| three_ds_mode | String | The 3DS mode for the company, either 'smart' or 'strict'. This property is only applicable when three_ds_enabled is true. When three_ds_enabled is false, this field will be null. | [optional] |
Example
require 'conekta'
instance = Conekta::CompanyResponse.new(
id: 6827305a1ec60400015eb116,
name: test,
active: false,
account_status: signed_up,
parent_company_id: 680bf1da38716d00013543bc,
onboarding_status: pending,
documents: null,
created_at: 1748968241,
object: company,
three_ds_enabled: true,
three_ds_mode: strict
)