BrokerConnectionTransportDataType
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| resource_uri | str | [optional] | |
| authentication_profile_uri | str | [optional] |
Example
from opcua_webapi.models.broker_connection_transport_data_type import BrokerConnectionTransportDataType
# TODO update the JSON string below
json = "{}"
# create an instance of BrokerConnectionTransportDataType from a JSON string
broker_connection_transport_data_type_instance = BrokerConnectionTransportDataType.from_json(json)
# print the JSON string representation of the object
print(BrokerConnectionTransportDataType.to_json())
# convert the object into a dict
broker_connection_transport_data_type_dict = broker_connection_transport_data_type_instance.to_dict()
# create an instance of BrokerConnectionTransportDataType from a dict
broker_connection_transport_data_type_from_dict = BrokerConnectionTransportDataType.from_dict(broker_connection_transport_data_type_dict)