Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.9 KB

File metadata and controls

39 lines (30 loc) · 1.9 KB

CompanyResponse

Properties

Name Type Description Notes
id str The unique identifier for the company.
name str The name of the company.
active bool Indicates if the company is active.
account_status str The current status of the company's account.
parent_company_id str The identifier of the parent company, if any. [optional]
onboarding_status str The current status of the company's onboarding process.
documents List[CompanyResponseDocumentsInner] A list of documents related to the company.
created_at int Timestamp of when the company was created.
object str The type of object, typically "company".
three_ds_enabled bool Indicates if 3DS authentication is enabled for the company. [optional]
three_ds_mode str 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

from conekta.models.company_response import CompanyResponse

# TODO update the JSON string below
json = "{}"
# create an instance of CompanyResponse from a JSON string
company_response_instance = CompanyResponse.from_json(json)
# print the JSON string representation of the object
print(CompanyResponse.to_json())

# convert the object into a dict
company_response_dict = company_response_instance.to_dict()
# create an instance of CompanyResponse from a dict
company_response_from_dict = CompanyResponse.from_dict(company_response_dict)

[Back to Model list] [Back to API list] [Back to README]