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

Name Type Description Notes
parameters List[DataTypeFunctionParameterEntry] The parameters, in argument order.
return_data_type_id int The return type. [optional]

Example

from revengai.models.function_type_definition import FunctionTypeDefinition

# TODO update the JSON string below
json = "{}"
# create an instance of FunctionTypeDefinition from a JSON string
function_type_definition_instance = FunctionTypeDefinition.from_json(json)
# print the JSON string representation of the object
print(FunctionTypeDefinition.to_json())

# convert the object into a dict
function_type_definition_dict = function_type_definition_instance.to_dict()
# create an instance of FunctionTypeDefinition from a dict
function_type_definition_from_dict = FunctionTypeDefinition.from_dict(function_type_definition_dict)

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