Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.68 KB

File metadata and controls

37 lines (28 loc) · 1.68 KB

GetCreditNotePreviewRequest

Properties

Name Type Description Notes
sequence_id int [optional]
invoice_id int
reason str [optional]
user_id int [optional]
method CreationMethod
transaction_ids List[int] 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

from cloudbeds_fiscal_document.models.get_credit_note_preview_request import GetCreditNotePreviewRequest

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

# convert the object into a dict
get_credit_note_preview_request_dict = get_credit_note_preview_request_instance.to_dict()
# create an instance of GetCreditNotePreviewRequest from a dict
get_credit_note_preview_request_from_dict = GetCreditNotePreviewRequest.from_dict(get_credit_note_preview_request_dict)

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