Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.38 KB

File metadata and controls

33 lines (24 loc) · 1.38 KB

CreateCompanyRequest

Properties

Name Type Description Notes
name str The name of the company. [optional]
type_company str The type of company, 'owner' [optional]
comercial_info CreateCompanyRequestComercialInfo [optional]
fiscal_info CreateCompanyRequestFiscalInfo [optional]
bank_account_info CreateCompanyRequestBankAccountInfo [optional]

Example

from conekta.models.create_company_request import CreateCompanyRequest

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

# convert the object into a dict
create_company_request_dict = create_company_request_instance.to_dict()
# create an instance of CreateCompanyRequest from a dict
create_company_request_from_dict = CreateCompanyRequest.from_dict(create_company_request_dict)

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