Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.31 KB

BrokerWriterGroupTransportDataType.md

File metadata and controls

32 lines (23 loc) · 1.31 KB

BrokerWriterGroupTransportDataType

Properties

Name Type Description Notes
queue_name str [optional]
resource_uri str [optional]
authentication_profile_uri str [optional]
requested_delivery_guarantee int [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]