Skip to content

Latest commit

History

History
31 lines (22 loc) · 1.02 KB

File metadata and controls

31 lines (22 loc) · 1.02 KB

FunctionType

Function type with result and arg types.

Properties

NameTypeDescriptionNotes
result_typeV1alpha1Type[optional]
arg_typesList[V1alpha1Type]Argument types of the function.[optional]

Example

frompermify_async.models.function_typeimportFunctionType# TODO update the JSON string belowjson="{}"# create an instance of FunctionType from a JSON stringfunction_type_instance=FunctionType.from_json(json)
# print the JSON string representation of the objectprint(FunctionType.to_json())
# convert the object into a dictfunction_type_dict=function_type_instance.to_dict()
# create an instance of FunctionType from a dictfunction_type_from_dict=FunctionType.from_dict(function_type_dict)

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