You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fromopcua_webapi.models.broker_data_set_writer_transport_data_typeimportBrokerDataSetWriterTransportDataType# TODO update the JSON string belowjson="{}"# create an instance of BrokerDataSetWriterTransportDataType from a JSON stringbroker_data_set_writer_transport_data_type_instance=BrokerDataSetWriterTransportDataType.from_json(json)
# print the JSON string representation of the objectprint(BrokerDataSetWriterTransportDataType.to_json())
# convert the object into a dictbroker_data_set_writer_transport_data_type_dict=broker_data_set_writer_transport_data_type_instance.to_dict()
# create an instance of BrokerDataSetWriterTransportDataType from a dictbroker_data_set_writer_transport_data_type_from_dict=BrokerDataSetWriterTransportDataType.from_dict(broker_data_set_writer_transport_data_type_dict)