You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Date for the pro forma invoice (defaults to current date if not provided)
[optional]
folio_ids
List[int]
Include all transactions from the specified folio IDs
[optional]
exclude_transaction_ids
List[int]
Exclude transactions with the specified IDs
[optional]
include_transaction_ids
List[int]
Include transactions with the specified IDs
[optional]
Example
fromcloudbeds_fiscal_document.models.pro_forma_invoice_preview_requestimportProFormaInvoicePreviewRequest# TODO update the JSON string belowjson="{}"# create an instance of ProFormaInvoicePreviewRequest from a JSON stringpro_forma_invoice_preview_request_instance=ProFormaInvoicePreviewRequest.from_json(json)
# print the JSON string representation of the objectprint(ProFormaInvoicePreviewRequest.to_json())
# convert the object into a dictpro_forma_invoice_preview_request_dict=pro_forma_invoice_preview_request_instance.to_dict()
# create an instance of ProFormaInvoicePreviewRequest from a dictpro_forma_invoice_preview_request_from_dict=ProFormaInvoicePreviewRequest.from_dict(pro_forma_invoice_preview_request_dict)