Skip to content

Latest commit

 

History

History
44 lines (35 loc) · 1.87 KB

WriterGroupDataType.md

File metadata and controls

44 lines (35 loc) · 1.87 KB

WriterGroupDataType

Properties

Name Type Description Notes
writer_group_id int [optional] [default to 0]
publishing_interval float [optional] [default to 0]
keep_alive_time float [optional] [default to 0]
priority int [optional] [default to 0]
locale_ids List[str] [optional]
header_layout_uri str [optional]
transport_settings object [optional]
message_settings object [optional]
data_set_writers List[DataSetWriterDataType] [optional]
name str [optional]
enabled bool [optional] [default to False]
security_mode int [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.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]