Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.46 KB

DataSetWriterDataType.md

File metadata and controls

37 lines (28 loc) · 1.46 KB

DataSetWriterDataType

Properties

Name Type Description Notes
name str [optional]
enabled bool [optional] [default to False]
data_set_writer_id int [optional] [default to 0]
data_set_field_content_mask int [optional] [default to 0]
key_frame_count int [optional] [default to 0]
data_set_name str [optional]
data_set_writer_properties List[KeyValuePair] [optional]
transport_settings object [optional]
message_settings object [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]