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
Version of the stored function data types after the update
function_id
int
Function ID
Example
fromrevengai.models.update_data_types_output_bodyimportUpdateDataTypesOutputBody# TODO update the JSON string belowjson="{}"# create an instance of UpdateDataTypesOutputBody from a JSON stringupdate_data_types_output_body_instance=UpdateDataTypesOutputBody.from_json(json)
# print the JSON string representation of the objectprint(UpdateDataTypesOutputBody.to_json())
# convert the object into a dictupdate_data_types_output_body_dict=update_data_types_output_body_instance.to_dict()
# create an instance of UpdateDataTypesOutputBody from a dictupdate_data_types_output_body_from_dict=UpdateDataTypesOutputBody.from_dict(update_data_types_output_body_dict)