Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.37 KB

File metadata and controls

33 lines (24 loc) · 1.37 KB

FiscalDocumentSummaryResponse

Properties

Name Type Description Notes
id str [optional]
kind FiscalDocumentKind [optional]
status FiscalDocumentStatus [optional]
government_integration GovernmentIntegration [optional]
linked_to str [optional]

Example

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)

[Back to Model list] [Back to API list] [Back to README]