Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.03 KB

AbstractType.md

File metadata and controls

31 lines (22 loc) · 1.03 KB

AbstractType

Application defined abstract type.

Properties

Name Type Description Notes
name str The fully qualified name of this abstract type. [optional]
parameter_types List[V1alpha1Type] Parameter types for this abstract type. [optional]

Example

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_from_dict = AbstractType.from_dict(abstract_type_dict)

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