Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 2.03 KB

OrderStatusAsyncNotificationRequestResourceInner.md

File metadata and controls

34 lines (25 loc) · 2.03 KB

OrderStatusAsyncNotificationRequestResourceInner

Properties

Name Type Description Notes
event_type str The event name sent in the event request. [optional]
order_number str The Ingram Micro order number. [optional]
customer_order_number str The reseller's unique PO/Order number. [optional]
order_entry_time_stamp str The timestamp at which the order was created. [optional]
lines List[OrderStatusAsyncNotificationRequestResourceInnerLinesInner] The line-level details for the order. [optional]
links List[OrderStatusAsyncNotificationRequestResourceInnerLinksInner] Link to Order Details for the order(s). [optional]

Example

from xi.sdk.resellers.models.order_status_async_notification_request_resource_inner import OrderStatusAsyncNotificationRequestResourceInner

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

# convert the object into a dict
order_status_async_notification_request_resource_inner_dict = order_status_async_notification_request_resource_inner_instance.to_dict()
# create an instance of OrderStatusAsyncNotificationRequestResourceInner from a dict
order_status_async_notification_request_resource_inner_from_dict = OrderStatusAsyncNotificationRequestResourceInner.from_dict(order_status_async_notification_request_resource_inner_dict)

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