| Name | Type | Description | Notes |
|---|---|---|---|
| data_types | List[CreateDataTypeEntry] | The types to create. Each namespace, name and kind must be new to the analysis. |
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)