List type with typed elements, e.g. list<example.proto.MyMessage>
.
Name | Type | Description | Notes |
---|---|---|---|
elem_type | V1alpha1Type | [optional] |
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)