Skip to content

Latest commit

History

History
29 lines (20 loc) · 1.23 KB

File metadata and controls

29 lines (20 loc) · 1.23 KB

CreateAnalysisDataTypesInputBody

Properties

NameTypeDescriptionNotes
data_typesList[CreateDataTypeEntry]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)

[Back to Model list][Back to API list][Back to README]