Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.54 KB

PubSubConnectionDataType.md

File metadata and controls

37 lines (28 loc) · 1.54 KB

PubSubConnectionDataType

Properties

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]

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]