StandaloneSubscribedDataSetDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namestr[optional]
data_set_folderList[str][optional]
data_set_meta_dataDataSetMetaDataType[optional]
subscribed_data_setobject[optional]

Example

from opcua_webapi.models.standalone_subscribed_data_set_data_type import StandaloneSubscribedDataSetDataType

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

# convert the object into a dict
standalone_subscribed_data_set_data_type_dict = standalone_subscribed_data_set_data_type_instance.to_dict()
# create an instance of StandaloneSubscribedDataSetDataType from a dict
standalone_subscribed_data_set_data_type_from_dict = StandaloneSubscribedDataSetDataType.from_dict(standalone_subscribed_data_set_data_type_dict)

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