Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

EditOrderItemModifier

Properties

Name Type Description Notes
id str The modifier's external ID in partner system. [optional]
quantity int The modifier's quantity. 0 to remove the modifier, 1 to add or keep the modifier. [optional]

Example

from grabfood.models.edit_order_item_modifier import EditOrderItemModifier

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

# convert the object into a dict
edit_order_item_modifier_dict = edit_order_item_modifier_instance.to_dict()
# create an instance of EditOrderItemModifier from a dict
edit_order_item_modifier_from_dict = EditOrderItemModifier.from_dict(edit_order_item_modifier_dict)

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