PubSubGroupDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
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.pub_sub_group_data_type import PubSubGroupDataType

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

# convert the object into a dict
pub_sub_group_data_type_dict = pub_sub_group_data_type_instance.to_dict()
# create an instance of PubSubGroupDataType from a dict
pub_sub_group_data_type_from_dict = PubSubGroupDataType.from_dict(pub_sub_group_data_type_dict)

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