Skip to content

Latest commit

History

History
31 lines (22 loc) · 973 Bytes

File metadata and controls

31 lines (22 loc) · 973 Bytes

MapType

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

Properties

NameTypeDescriptionNotes
key_typeV1alpha1Type[optional]
value_typeV1alpha1Type[optional]

Example

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)

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