| Name | Type | Description | Notes |
|---|---|---|---|
| id | int | Company id | [optional] |
| name | str | Company name | [optional] |
| str | Company email | [optional] | |
| type | CompanyType | [optional] | |
| access_info | CompanyInfoAccessInfo | [optional] | |
| fic_license_expire | date | [optional] | |
| fic_plan_name | FattureInCloudPlanType | [optional] | |
| plan_info | CompanyInfoPlanInfo | [optional] | |
| accountant_id | int | Company accountant id | [optional] |
| is_accountant | bool | Is the logged account an accountant. | [optional] |
from fattureincloud_python_sdk.models.company_info import CompanyInfo
# TODO update the JSON string below
json = "{}"
# create an instance of CompanyInfo from a JSON string
company_info_instance = CompanyInfo.from_json(json)
# print the JSON string representation of the object
print(CompanyInfo.to_json())
# convert the object into a dict
company_info_dict = company_info_instance.to_dict()
# create an instance of CompanyInfo from a dict
company_info_from_dict = CompanyInfo.from_dict(company_info_dict)