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
The replacements. Every data_type_id must belong to the analysis, and none may repeat.
Example
fromrevengai.models.update_analysis_data_types_input_bodyimportUpdateAnalysisDataTypesInputBody# TODO update the JSON string belowjson="{}"# create an instance of UpdateAnalysisDataTypesInputBody from a JSON stringupdate_analysis_data_types_input_body_instance=UpdateAnalysisDataTypesInputBody.from_json(json)
# print the JSON string representation of the objectprint(UpdateAnalysisDataTypesInputBody.to_json())
# convert the object into a dictupdate_analysis_data_types_input_body_dict=update_analysis_data_types_input_body_instance.to_dict()
# create an instance of UpdateAnalysisDataTypesInputBody from a dictupdate_analysis_data_types_input_body_from_dict=UpdateAnalysisDataTypesInputBody.from_dict(update_analysis_data_types_input_body_dict)