BrokerDataSetReaderTransportDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
queue_namestr[optional]
resource_uristr[optional]
authentication_profile_uristr[optional]
requested_delivery_guaranteeintLink to specification.[optional]
meta_data_queue_namestr[optional]

Example

from opcua_webapi.models.broker_data_set_reader_transport_data_type import BrokerDataSetReaderTransportDataType

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

# convert the object into a dict
broker_data_set_reader_transport_data_type_dict = broker_data_set_reader_transport_data_type_instance.to_dict()
# create an instance of BrokerDataSetReaderTransportDataType from a dict
broker_data_set_reader_transport_data_type_from_dict = BrokerDataSetReaderTransportDataType.from_dict(broker_data_set_reader_transport_data_type_dict)

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