Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.45 KB

File metadata and controls

33 lines (24 loc) · 1.45 KB

CreateCompanyRequestComercialInfo

Commercial information for the company.

Properties

Name Type Description Notes
website str The company's website URL. [optional]
mcc str The Merchant Category Code (MCC) for the company. [optional]
merchant_support_email str Email address for merchant support. [optional]
merchant_support_phone str Phone number for merchant support. [optional]

Example

from conekta.models.create_company_request_comercial_info import CreateCompanyRequestComercialInfo

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

# convert the object into a dict
create_company_request_comercial_info_dict = create_company_request_comercial_info_instance.to_dict()
# create an instance of CreateCompanyRequestComercialInfo from a dict
create_company_request_comercial_info_from_dict = CreateCompanyRequestComercialInfo.from_dict(create_company_request_comercial_info_dict)

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