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] |
from permify.models.map_type import MapType
# TODO update the JSON string below
json = "{}"
# create an instance of MapType from a JSON string
map_type_instance = MapType.from_json(json)
# print the JSON string representation of the object
print(MapType.to_json())
# convert the object into a dict
map_type_dict = map_type_instance.to_dict()
# create an instance of MapType from a dict
map_type_from_dict = MapType.from_dict(map_type_dict)