PubSubGroupDataType
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| enabled | bool | [optional] [default to False] | |
| security_mode | int | Link to specification. | [optional] |
| security_group_id | str | [optional] | |
| security_key_services | List[EndpointDescription] | [optional] | |
| max_network_message_size | int | [optional] [default to 0] | |
| group_properties | List[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)