BrokerDataSetWriterTransportDataType

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]
meta_data_update_timefloat[optional] [default to 0]

Example

from opcua_webapi.models.broker_data_set_writer_transport_data_type import BrokerDataSetWriterTransportDataType

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

# convert the object into a dict
broker_data_set_writer_transport_data_type_dict = broker_data_set_writer_transport_data_type_instance.to_dict()
# create an instance of BrokerDataSetWriterTransportDataType from a dict
broker_data_set_writer_transport_data_type_from_dict = BrokerDataSetWriterTransportDataType.from_dict(broker_data_set_writer_transport_data_type_dict)

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