| Name | Type | Description | Notes |
|---|---|---|---|
| country | str | ISO 3166-1 alpha-2 country code | |
| name | str | Legal name of the company | |
| tax_id | str | Primary tax identification number | [optional] |
| addresses | List[FiscalizationAddress] | [optional] | |
| emails | List[FiscalizationEmail] | [optional] | |
| phones | List[FiscalizationPhone] | [optional] | |
| identities | Dict[str, str] | Additional tax/legal identities (key-value pairs) | [optional] |
| extensions | Dict[str, str] | Country-specific tax configuration | [optional] |
| property_id | int | Property ID this registration belongs to | |
| status | FiscalizationRegistrationStatus | ||
| provider_id | str | Provider-specific ID (e.g., Invopop party ID) | [optional] |
| is_default | bool | Whether this is the default fiscalization registration | [optional] |
| created_at | datetime | [optional] | |
| updated_at | datetime | [optional] |
from cloudbeds_fiscal_document.models.fiscalization_registration_response import FiscalizationRegistrationResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FiscalizationRegistrationResponse from a JSON string
fiscalization_registration_response_instance = FiscalizationRegistrationResponse.from_json(json)
# print the JSON string representation of the object
print(FiscalizationRegistrationResponse.to_json())
# convert the object into a dict
fiscalization_registration_response_dict = fiscalization_registration_response_instance.to_dict()
# create an instance of FiscalizationRegistrationResponse from a dict
fiscalization_registration_response_from_dict = FiscalizationRegistrationResponse.from_dict(fiscalization_registration_response_dict)