WriterGroupDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
writer_group_idint[optional] [default to 0]
publishing_intervalfloat[optional] [default to 0]
keep_alive_timefloat[optional] [default to 0]
priorityint[optional] [default to 0]
locale_idsList[str][optional]
header_layout_uristr[optional]
transport_settingsobject[optional]
message_settingsobject[optional]
data_set_writersList[DataSetWriterDataType][optional]
namestr[optional]
enabledbool[optional] [default to False]
security_modeintLink to specification.[optional]
security_group_idstr[optional]
security_key_servicesList[EndpointDescription][optional]
max_network_message_sizeint[optional] [default to 0]
group_propertiesList[KeyValuePair][optional]

Example

from opcua_webapi.models.writer_group_data_type import WriterGroupDataType

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

# convert the object into a dict
writer_group_data_type_dict = writer_group_data_type_instance.to_dict()
# create an instance of WriterGroupDataType from a dict
writer_group_data_type_from_dict = WriterGroupDataType.from_dict(writer_group_data_type_dict)

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