You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List of function data types information that are either already generated, or now queued for generation
Example
fromrevengai.models.generate_function_data_typesimportGenerateFunctionDataTypes# TODO update the JSON string belowjson="{}"# create an instance of GenerateFunctionDataTypes from a JSON stringgenerate_function_data_types_instance=GenerateFunctionDataTypes.from_json(json)
# print the JSON string representation of the objectprint(GenerateFunctionDataTypes.to_json())
# convert the object into a dictgenerate_function_data_types_dict=generate_function_data_types_instance.to_dict()
# create an instance of GenerateFunctionDataTypes from a dictgenerate_function_data_types_from_dict=GenerateFunctionDataTypes.from_dict(generate_function_data_types_dict)