Map type with parameterized key and value types, e.g. map<string, int>.
| Name | Type | Description | Notes |
|---|---|---|---|
| key_type | V1alpha1Type | [optional] | |
| value_type | V1alpha1Type | [optional] |
frompermify_async.models.map_typeimportMapType# TODO update the JSON string belowjson="{}"# create an instance of MapType from a JSON stringmap_type_instance=MapType.from_json(json)
# print the JSON string representation of the objectprint(MapType.to_json())
# convert the object into a dictmap_type_dict=map_type_instance.to_dict()
# create an instance of MapType from a dictmap_type_from_dict=MapType.from_dict(map_type_dict)