Name | Type | Description | Notes |
---|---|---|---|
name | str | [optional] | |
enabled | bool | [optional] [default to False] | |
publisher_id | Variant | [optional] | |
transport_profile_uri | str | [optional] | |
address | object | [optional] | |
connection_properties | List[KeyValuePair] | [optional] | |
transport_settings | object | [optional] | |
writer_groups | List[WriterGroupDataType] | [optional] | |
reader_groups | List[ReaderGroupDataType] | [optional] |
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)