Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] | |
description | LocalizedText | [optional] | |
fields | List[FieldMetaData] | [optional] | |
data_set_class_id | str | [optional] | |
configuration_version | ConfigurationVersionDataType | [optional] | |
namespaces | List[str] | [optional] | |
structure_data_types | List[StructureDescription] | [optional] | |
enum_data_types | List[EnumDescription] | [optional] | |
simple_data_types | List[SimpleTypeDescription] | [optional] |
from opcua_webapi.models.data_set_meta_data_type import DataSetMetaDataType
# TODO update the JSON string below
json = "{}"
# create an instance of DataSetMetaDataType from a JSON string
data_set_meta_data_type_instance = DataSetMetaDataType.from_json(json)
# print the JSON string representation of the object
print(DataSetMetaDataType.to_json())
# convert the object into a dict
data_set_meta_data_type_dict = data_set_meta_data_type_instance.to_dict()
# create an instance of DataSetMetaDataType from a dict
data_set_meta_data_type_from_dict = DataSetMetaDataType.from_dict(data_set_meta_data_type_dict)