Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 967 Bytes

MapType.md

File metadata and controls

31 lines (22 loc) · 967 Bytes

MapType

Map type with parameterized key and value types, e.g. map<string, int>.

Properties

Name Type Description Notes
key_type V1alpha1Type [optional]
value_type V1alpha1Type [optional]

Example

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)

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