Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 986 Bytes

File metadata and controls

30 lines (21 loc) · 986 Bytes

SingleAllocation

Properties

Name Type Description Notes
transaction_id int [optional]
allocated_amount float [optional]

Example

from cloudbeds_fiscal_document.models.single_allocation import SingleAllocation

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

# convert the object into a dict
single_allocation_dict = single_allocation_instance.to_dict()
# create an instance of SingleAllocation from a dict
single_allocation_from_dict = SingleAllocation.from_dict(single_allocation_dict)

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