PublishedDataSetDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namestr[optional]
data_set_folderList[str][optional]
data_set_meta_dataDataSetMetaDataType[optional]
extension_fieldsList[KeyValuePair][optional]
data_set_sourceobject[optional]

Example

from opcua_webapi.models.published_data_set_data_type import PublishedDataSetDataType

# TODO update the JSON string below
json = "{}"
# create an instance of PublishedDataSetDataType from a JSON string
published_data_set_data_type_instance = PublishedDataSetDataType.from_json(json)
# print the JSON string representation of the object
print(PublishedDataSetDataType.to_json())

# convert the object into a dict
published_data_set_data_type_dict = published_data_set_data_type_instance.to_dict()
# create an instance of PublishedDataSetDataType from a dict
published_data_set_data_type_from_dict = PublishedDataSetDataType.from_dict(published_data_set_data_type_dict)

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