BrokerWriterGroupTransportDataType

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]

Example

from opcua_webapi.models.broker_writer_group_transport_data_type import BrokerWriterGroupTransportDataType

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

# convert the object into a dict
broker_writer_group_transport_data_type_dict = broker_writer_group_transport_data_type_instance.to_dict()
# create an instance of BrokerWriterGroupTransportDataType from a dict
broker_writer_group_transport_data_type_from_dict = BrokerWriterGroupTransportDataType.from_dict(broker_writer_group_transport_data_type_dict)

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