Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.77 KB

File metadata and controls

37 lines (28 loc) · 1.77 KB

GetFolioExportRequest

Properties

Name Type Description Notes
folio_ids List[int] Include transactions from the specified folio IDs. If omitted, all transactions for the source are included. [optional]
source_kind SourceKind
source_id int source ID of folio
credit_debit_view bool Should transactions be separated into debit/credits [optional]
revenue_compact bool Compact revenue transactions, valid only for sourceKind = RESERVATION [optional]
date_from date Minimum date filter (inclusive). Required for sourceKind = HOUSE_ACCOUNT, optional for others. [optional]
date_to date Maximum date filter (inclusive), optional. [optional]
format ExportFormat [optional]
recipient RecipientRequest [optional]

Example

from cloudbeds_fiscal_document.models.get_folio_export_request import GetFolioExportRequest

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

# convert the object into a dict
get_folio_export_request_dict = get_folio_export_request_instance.to_dict()
# create an instance of GetFolioExportRequest from a dict
get_folio_export_request_from_dict = GetFolioExportRequest.from_dict(get_folio_export_request_dict)

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