| Name | Type | Description | Notes |
|---|---|---|---|
| parameters | List[DataTypeFunctionParameterEntry] | The parameters, in argument order. | |
| return_data_type_id | int | The return type. | [optional] |
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)