PubSubConfigurationDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
published_data_setsList[PublishedDataSetDataType][optional]
connectionsList[PubSubConnectionDataType][optional]
enabledbool[optional] [default to False]

Example

from opcua_webapi.models.pub_sub_configuration_data_type import PubSubConfigurationDataType

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

# convert the object into a dict
pub_sub_configuration_data_type_dict = pub_sub_configuration_data_type_instance.to_dict()
# create an instance of PubSubConfigurationDataType from a dict
pub_sub_configuration_data_type_from_dict = PubSubConfigurationDataType.from_dict(pub_sub_configuration_data_type_dict)

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