Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

FiscalDocumentPatchRequest

Properties

Name Type Description Notes
status FiscalDocumentStatus [optional]
fail_reason str [optional]
government_integration GovernmentIntegration [optional]

Example

from cloudbeds_fiscal_document.models.fiscal_document_patch_request import FiscalDocumentPatchRequest

# TODO update the JSON string below
json = "{}"
# create an instance of FiscalDocumentPatchRequest from a JSON string
fiscal_document_patch_request_instance = FiscalDocumentPatchRequest.from_json(json)
# print the JSON string representation of the object
print(FiscalDocumentPatchRequest.to_json())

# convert the object into a dict
fiscal_document_patch_request_dict = fiscal_document_patch_request_instance.to_dict()
# create an instance of FiscalDocumentPatchRequest from a dict
fiscal_document_patch_request_from_dict = FiscalDocumentPatchRequest.from_dict(fiscal_document_patch_request_dict)

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