ReaderGroupDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
transport_settingsobject[optional]
message_settingsobject[optional]
data_set_readersList[DataSetReaderDataType][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.reader_group_data_type import ReaderGroupDataType

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

# convert the object into a dict
reader_group_data_type_dict = reader_group_data_type_instance.to_dict()
# create an instance of ReaderGroupDataType from a dict
reader_group_data_type_from_dict = ReaderGroupDataType.from_dict(reader_group_data_type_dict)

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