| Name | Type | Description | Notes |
|---|---|---|---|
| id | str | [optional] | |
| kind | FiscalDocumentKind | [optional] | |
| status | FiscalDocumentStatus | [optional] | |
| government_integration | GovernmentIntegration | [optional] | |
| linked_to | str | [optional] |
from cloudbeds_fiscal_document.models.fiscal_document_summary_response import FiscalDocumentSummaryResponse
# TODO update the JSON string below
json = "{}"
# create an instance of FiscalDocumentSummaryResponse from a JSON string
fiscal_document_summary_response_instance = FiscalDocumentSummaryResponse.from_json(json)
# print the JSON string representation of the object
print(FiscalDocumentSummaryResponse.to_json())
# convert the object into a dict
fiscal_document_summary_response_dict = fiscal_document_summary_response_instance.to_dict()
# create an instance of FiscalDocumentSummaryResponse from a dict
fiscal_document_summary_response_from_dict = FiscalDocumentSummaryResponse.from_dict(fiscal_document_summary_response_dict)