| Name |
Type |
Description |
Notes |
| mode |
str |
|
[optional] |
| value |
str |
|
[optional] |
from kenar_api_client.models.search_post_item_price import SearchPostItemPrice
# TODO update the JSON string below
json = "{}"
# create an instance of SearchPostItemPrice from a JSON string
search_post_item_price_instance = SearchPostItemPrice.from_json(json)
# print the JSON string representation of the object
print(SearchPostItemPrice.to_json())
# convert the object into a dict
search_post_item_price_dict = search_post_item_price_instance.to_dict()
# create an instance of SearchPostItemPrice from a dict
search_post_item_price_from_dict = SearchPostItemPrice.from_dict(search_post_item_price_dict)
[Back to Model list] [Back to API list] [Back to README]