Application defined abstract type.
| 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] |
frompermify_async.models.abstract_typeimportAbstractType# TODO update the JSON string belowjson="{}"# create an instance of AbstractType from a JSON stringabstract_type_instance=AbstractType.from_json(json)
# print the JSON string representation of the objectprint(AbstractType.to_json())
# convert the object into a dictabstract_type_dict=abstract_type_instance.to_dict()
# create an instance of AbstractType from a dictabstract_type_from_dict=AbstractType.from_dict(abstract_type_dict)