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 types to create. Each namespace, name and kind must be new to the analysis.
Example
fromrevengai.models.create_analysis_data_types_input_bodyimportCreateAnalysisDataTypesInputBody# TODO update the JSON string belowjson="{}"# create an instance of CreateAnalysisDataTypesInputBody from a JSON stringcreate_analysis_data_types_input_body_instance=CreateAnalysisDataTypesInputBody.from_json(json)
# print the JSON string representation of the objectprint(CreateAnalysisDataTypesInputBody.to_json())
# convert the object into a dictcreate_analysis_data_types_input_body_dict=create_analysis_data_types_input_body_instance.to_dict()
# create an instance of CreateAnalysisDataTypesInputBody from a dictcreate_analysis_data_types_input_body_from_dict=CreateAnalysisDataTypesInputBody.from_dict(create_analysis_data_types_input_body_dict)