PubSubConnectionDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namestr[optional]
enabledbool[optional] [default to False]
publisher_idVariant[optional]
transport_profile_uristr[optional]
addressobject[optional]
connection_propertiesList[KeyValuePair][optional]
transport_settingsobject[optional]
writer_groupsList[WriterGroupDataType][optional]
reader_groupsList[ReaderGroupDataType][optional]

Example

from opcua_webapi.models.pub_sub_connection_data_type import PubSubConnectionDataType

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

# convert the object into a dict
pub_sub_connection_data_type_dict = pub_sub_connection_data_type_instance.to_dict()
# create an instance of PubSubConnectionDataType from a dict
pub_sub_connection_data_type_from_dict = PubSubConnectionDataType.from_dict(pub_sub_connection_data_type_dict)

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