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
Include transactions with the specified IDs (deprecated, use `includeTransactionIds` instead)
[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.get_credit_note_preview_requestimportGetCreditNotePreviewRequest# TODO update the JSON string belowjson="{}"# create an instance of GetCreditNotePreviewRequest from a JSON stringget_credit_note_preview_request_instance=GetCreditNotePreviewRequest.from_json(json)
# print the JSON string representation of the objectprint(GetCreditNotePreviewRequest.to_json())
# convert the object into a dictget_credit_note_preview_request_dict=get_credit_note_preview_request_instance.to_dict()
# create an instance of GetCreditNotePreviewRequest from a dictget_credit_note_preview_request_from_dict=GetCreditNotePreviewRequest.from_dict(get_credit_note_preview_request_dict)