Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.38 KB

File metadata and controls

31 lines (22 loc) · 1.38 KB

GenerateFunctionDataTypes

Properties

Name Type Description Notes
queued bool [DEPRECATED] This value has been replaced with the `data_types_list` field
reference str [DEPRECATED] This value has been replaced with the `data_types_list` field
data_types_list GenerationStatusList List of function data types information that are either already generated, or now queued for generation

Example

from revengai.models.generate_function_data_types import GenerateFunctionDataTypes

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

# convert the object into a dict
generate_function_data_types_dict = generate_function_data_types_instance.to_dict()
# create an instance of GenerateFunctionDataTypes from a dict
generate_function_data_types_from_dict = GenerateFunctionDataTypes.from_dict(generate_function_data_types_dict)

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