Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 907 Bytes

File metadata and controls

29 lines (20 loc) · 907 Bytes

ReceiptItemData

Properties

Name Type Description Notes
product_id int

Example

from clientapi_billingo.models.receipt_item_data import ReceiptItemData

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

# convert the object into a dict
receipt_item_data_dict = receipt_item_data_instance.to_dict()
# create an instance of ReceiptItemData from a dict
receipt_item_data_from_dict = ReceiptItemData.from_dict(receipt_item_data_dict)

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