Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.46 KB

File metadata and controls

32 lines (23 loc) · 1.46 KB

OrderFeatureFlags

The featureFlag JSON object containing an order's feature related information.

Properties

Name Type Description Notes
order_accepted_type str The acceptance type for the order. Refer to FAQs for more details about orderAcceptedType.
order_type str The type of order.
is_mex_edit_order bool A boolean value that indicates if the order is edited or recalculated. It does not necessarily mean the order was edited by the merchant. The changes could have been made by Grab, the Merchant, or the Customer. [optional]

Example

from grabfood.models.order_feature_flags import OrderFeatureFlags

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

# convert the object into a dict
order_feature_flags_dict = order_feature_flags_instance.to_dict()
# create an instance of OrderFeatureFlags from a dict
order_feature_flags_from_dict = OrderFeatureFlags.from_dict(order_feature_flags_dict)

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