Skip to content

Latest commit

 

History

History
59 lines (50 loc) · 2.91 KB

File metadata and controls

59 lines (50 loc) · 2.91 KB

FiscalDocumentDetailedResponse

Properties

Name Type Description Notes
id str [optional]
number str [optional]
property_id str [optional]
user_id str [optional]
user_full_name str [optional]
source_name str [optional]
source_id str [optional]
source_kind SourceKind [optional]
kind FiscalDocumentKind [optional]
invoice_date date [optional]
invoice_date_property_timezone date [optional]
file_name str [optional]
amount float [optional]
balance float [optional]
due_date date [optional]
due_date_property_timezone date [optional]
recipients List[RecipientDetails] [optional]
status FiscalDocumentStatus [optional]
origin str [optional]
external_id str [optional]
fail_reason str [optional]
method CreationMethod [optional]
created_at datetime [optional]
parent_id str [optional]
updated_at datetime [optional]
government_integration GovernmentIntegration [optional]
latest_linked_document LatestLinkedDocument [optional]
linked_documents List[LinkedDocument] List of documents linked to this fiscal document (both parent and child relationships) [optional]
actions List[Action] Returns the list of actions available for the transaction [optional]
source_identifier str Reservation Identifier or a group code [optional]
simplified bool Applies to invoices only. [optional]

Example

from cloudbeds_fiscal_document.models.fiscal_document_detailed_response import FiscalDocumentDetailedResponse

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

# convert the object into a dict
fiscal_document_detailed_response_dict = fiscal_document_detailed_response_instance.to_dict()
# create an instance of FiscalDocumentDetailedResponse from a dict
fiscal_document_detailed_response_from_dict = FiscalDocumentDetailedResponse.from_dict(fiscal_document_detailed_response_dict)

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