Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.15 KB

File metadata and controls

31 lines (22 loc) · 1.15 KB

UpdateDataTypesOutputBody

Properties

Name Type Description Notes
data_types object
data_types_version int Version of the stored function data types after the update
function_id int Function ID

Example

from revengai.models.update_data_types_output_body import UpdateDataTypesOutputBody

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

# convert the object into a dict
update_data_types_output_body_dict = update_data_types_output_body_instance.to_dict()
# create an instance of UpdateDataTypesOutputBody from a dict
update_data_types_output_body_from_dict = UpdateDataTypesOutputBody.from_dict(update_data_types_output_body_dict)

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