Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

AbstractType

Application defined abstract type.

Properties

NameTypeDescriptionNotes
namestrThe fully qualified name of this abstract type.[optional]
parameter_typesList[V1alpha1Type]Parameter types for this abstract type.[optional]

Example

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)

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