DataSetWriterDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namestr[optional]
enabledbool[optional] [default to False]
data_set_writer_idint[optional] [default to 0]
data_set_field_content_maskint[optional] [default to 0]
key_frame_countint[optional] [default to 0]
data_set_namestr[optional]
data_set_writer_propertiesList[KeyValuePair][optional]
transport_settingsobject[optional]
message_settingsobject[optional]

Example

from opcua_webapi.models.data_set_writer_data_type import DataSetWriterDataType

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

# convert the object into a dict
data_set_writer_data_type_dict = data_set_writer_data_type_instance.to_dict()
# create an instance of DataSetWriterDataType from a dict
data_set_writer_data_type_from_dict = DataSetWriterDataType.from_dict(data_set_writer_data_type_dict)

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