Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 906 Bytes

ListType.md

File metadata and controls

30 lines (21 loc) · 906 Bytes

ListType

List type with typed elements, e.g. list<example.proto.MyMessage>.

Properties

Name Type Description Notes
elem_type V1alpha1Type [optional]

Example

from permify.models.list_type import ListType

# TODO update the JSON string below
json = "{}"
# create an instance of ListType from a JSON string
list_type_instance = ListType.from_json(json)
# print the JSON string representation of the object
print(ListType.to_json())

# convert the object into a dict
list_type_dict = list_type_instance.to_dict()
# create an instance of ListType from a dict
list_type_from_dict = ListType.from_dict(list_type_dict)

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