Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.99 KB

File metadata and controls

38 lines (29 loc) · 1.99 KB

CreateSettlementInvoiceRequest

Properties

Name Type Description Notes
user_id int
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]
transaction_id_to_amount Dict[str, float] Map of transaction ID to amount (in major currency units, e.g., 10.50 for $10.50) for partial transaction inclusion [optional]
recipient RecipientRequest [optional]
manual_recipient ManualRecipientRequest [optional]
sequence_id int [optional]
due_date_property_timezone date [optional]

Example

from cloudbeds_fiscal_document.models.create_settlement_invoice_request import CreateSettlementInvoiceRequest

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

# convert the object into a dict
create_settlement_invoice_request_dict = create_settlement_invoice_request_instance.to_dict()
# create an instance of CreateSettlementInvoiceRequest from a dict
create_settlement_invoice_request_from_dict = CreateSettlementInvoiceRequest.from_dict(create_settlement_invoice_request_dict)

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