Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.45 KB

OrderCreateResponseOrdersInnerLinksInner.md

File metadata and controls

31 lines (22 loc) · 1.45 KB

OrderCreateResponseOrdersInnerLinksInner

Properties

Name Type Description Notes
topic str Provides the details of the orders. [optional]
href str The URL endpoint for accessing the relevant data. [optional]
type str The type of call that can be made to the href link (GET, POST, Etc.). [optional]

Example

from xi.sdk.resellers.models.order_create_response_orders_inner_links_inner import OrderCreateResponseOrdersInnerLinksInner

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

# convert the object into a dict
order_create_response_orders_inner_links_inner_dict = order_create_response_orders_inner_links_inner_instance.to_dict()
# create an instance of OrderCreateResponseOrdersInnerLinksInner from a dict
order_create_response_orders_inner_links_inner_from_dict = OrderCreateResponseOrdersInnerLinksInner.from_dict(order_create_response_orders_inner_links_inner_dict)

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