Application defined abstract type.
from permify.models.abstract_type import AbstractType
# TODO update the JSON string below
json = "{}"
# create an instance of AbstractType from a JSON string
abstract_type_instance = AbstractType.from_json(json)
# print the JSON string representation of the object
print AbstractType.to_json()
# convert the object into a dict
abstract_type_dict = abstract_type_instance.to_dict()
# create an instance of AbstractType from a dict
abstract_type_form_dict = abstract_type.from_dict(abstract_type_dict)