Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.01 KB

File metadata and controls

29 lines (20 loc) · 1.01 KB

PostLimitOrderResponse

Properties

Name Type Description Notes
order_id str Unique order identifier [optional]

Example

from luno_openapi.models.post_limit_order_response import PostLimitOrderResponse

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

# convert the object into a dict
post_limit_order_response_dict = post_limit_order_response_instance.to_dict()
# create an instance of PostLimitOrderResponse from a dict
post_limit_order_response_from_dict = PostLimitOrderResponse.from_dict(post_limit_order_response_dict)

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