Skip to content

Latest commit

History

History
30 lines (21 loc) · 1.13 KB

File metadata and controls

30 lines (21 loc) · 1.13 KB

FunctionTypeDefinition

Properties

NameTypeDescriptionNotes
parametersList[DataTypeFunctionParameterEntry]The parameters, in argument order.
return_data_type_idintThe return type.[optional]

Example

fromrevengai.models.function_type_definitionimportFunctionTypeDefinition# TODO update the JSON string belowjson="{}"# create an instance of FunctionTypeDefinition from a JSON stringfunction_type_definition_instance=FunctionTypeDefinition.from_json(json)
# print the JSON string representation of the objectprint(FunctionTypeDefinition.to_json())
# convert the object into a dictfunction_type_definition_dict=function_type_definition_instance.to_dict()
# create an instance of FunctionTypeDefinition from a dictfunction_type_definition_from_dict=FunctionTypeDefinition.from_dict(function_type_definition_dict)

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