mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2025-12-06 07:55:31 +00:00
836 B
836 B
MapItem
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| key | str | [optional] | |
| value | str | [optional] |
Example
from instant_tests_api.models.map_item import MapItem
# TODO update the JSON string below
json = "{}"
# create an instance of MapItem from a JSON string
map_item_instance = MapItem.from_json(json)
# print the JSON string representation of the object
print MapItem.to_json()
# convert the object into a dict
map_item_dict = map_item_instance.to_dict()
# create an instance of MapItem from a dict
map_item_form_dict = map_item.from_dict(map_item_dict)