You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Received document item product number of items in stock
[optional]
Example
fromfattureincloud_python_sdk.models.received_document_items_list_itemimportReceivedDocumentItemsListItem# TODO update the JSON string belowjson="{}"# create an instance of ReceivedDocumentItemsListItem from a JSON stringreceived_document_items_list_item_instance=ReceivedDocumentItemsListItem.from_json(json)
# print the JSON string representation of the objectprint(ReceivedDocumentItemsListItem.to_json())
# convert the object into a dictreceived_document_items_list_item_dict=received_document_items_list_item_instance.to_dict()
# create an instance of ReceivedDocumentItemsListItem from a dictreceived_document_items_list_item_from_dict=ReceivedDocumentItemsListItem.from_dict(received_document_items_list_item_dict)