Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.56 KB

CompanyResponse.md

File metadata and controls

37 lines (28 loc) · 1.56 KB

CompanyResponse

Company model

Properties

Name Type Description Notes
id str The child company's unique identifier [optional]
created_at int The resource's creation date (unix timestamp) [optional]
name str The child company's name [optional]
object str The resource's type [optional]
parent_company_id str Id of the parent company [optional]
use_parent_fiscal_data bool Whether the parent company's fiscal data is to be used for liquidation and tax purposes [optional]
payout_destination CompanyPayoutDestinationResponse [optional]
fiscal_info CompanyFiscalInfoResponse [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]