Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 990 Bytes

File metadata and controls

31 lines (22 loc) · 990 Bytes

DocumentItemData

Properties

Name Type Description Notes
product_id int
quantity float
comment str [optional]

Example

from clientapi_billingo.models.document_item_data import DocumentItemData

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

# convert the object into a dict
document_item_data_dict = document_item_data_instance.to_dict()
# create an instance of DocumentItemData from a dict
document_item_data_from_dict = DocumentItemData.from_dict(document_item_data_dict)

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