Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.15 KB

File metadata and controls

32 lines (23 loc) · 1.15 KB

FunctionDataTypes

Properties

Name Type Description Notes
completed bool Whether the service has completed data types generation
status str The current status of the data types service
data_types FunctionInfoOutput [optional]
data_types_version int [optional]

Example

from revengai.models.function_data_types import FunctionDataTypes

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

# convert the object into a dict
function_data_types_dict = function_data_types_instance.to_dict()
# create an instance of FunctionDataTypes from a dict
function_data_types_from_dict = FunctionDataTypes.from_dict(function_data_types_dict)

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