| Name | Type | Description | Notes |
|---|---|---|---|
| analysis_id | int | ||
| items | List[DataTypeEntry] | The analysis's types the returned signatures name, ordered by data_type_id. |
fromrevengai.models.analysis_data_types_groupimportAnalysisDataTypesGroup# TODO update the JSON string belowjson="{}"# create an instance of AnalysisDataTypesGroup from a JSON stringanalysis_data_types_group_instance=AnalysisDataTypesGroup.from_json(json)
# print the JSON string representation of the objectprint(AnalysisDataTypesGroup.to_json())
# convert the object into a dictanalysis_data_types_group_dict=analysis_data_types_group_instance.to_dict()
# create an instance of AnalysisDataTypesGroup from a dictanalysis_data_types_group_from_dict=AnalysisDataTypesGroup.from_dict(analysis_data_types_group_dict)