| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | Controlled company id | [optional] |
| name | str | Controlled company id | [optional] |
| type | CompanyType | [optional] | |
| access_token | str | Controlled company access token Only if type=company] | [optional] |
| fic_license_expire | date | [optional] | |
| fic_plan | FattureInCloudPlanType | [optional] | |
| connection_id | float | Controlled company connection id | [optional] |
| tax_code | str | Controlled company tax code | [optional] |
from fattureincloud_python_sdk.models.controlled_company import ControlledCompany
# TODO update the JSON string below
json = "{}"
# create an instance of ControlledCompany from a JSON string
controlled_company_instance = ControlledCompany.from_json(json)
# print the JSON string representation of the object
print(ControlledCompany.to_json())
# convert the object into a dict
controlled_company_dict = controlled_company_instance.to_dict()
# create an instance of ControlledCompany from a dict
controlled_company_from_dict = ControlledCompany.from_dict(controlled_company_dict)