Link to Order Details for the line item.
| Name | Type | Description | Notes |
|---|---|---|---|
| topic | str | Provides the details of the line item. | [optional] |
| href | str | The API 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] |
from xi.sdk.resellers.models.order_detail_b2_b_lines_inner_links_inner import OrderDetailB2BLinesInnerLinksInner
# TODO update the JSON string below
json = "{}"
# create an instance of OrderDetailB2BLinesInnerLinksInner from a JSON string
order_detail_b2_b_lines_inner_links_inner_instance = OrderDetailB2BLinesInnerLinksInner.from_json(json)
# print the JSON string representation of the object
print(OrderDetailB2BLinesInnerLinksInner.to_json())
# convert the object into a dict
order_detail_b2_b_lines_inner_links_inner_dict = order_detail_b2_b_lines_inner_links_inner_instance.to_dict()
# create an instance of OrderDetailB2BLinesInnerLinksInner from a dict
order_detail_b2_b_lines_inner_links_inner_from_dict = OrderDetailB2BLinesInnerLinksInner.from_dict(order_detail_b2_b_lines_inner_links_inner_dict)