JsonWriterGroupMessageDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
network_message_content_maskint[optional] [default to 0]

Example

from opcua_webapi.models.json_writer_group_message_data_type import JsonWriterGroupMessageDataType

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

# convert the object into a dict
json_writer_group_message_data_type_dict = json_writer_group_message_data_type_instance.to_dict()
# create an instance of JsonWriterGroupMessageDataType from a dict
json_writer_group_message_data_type_from_dict = JsonWriterGroupMessageDataType.from_dict(json_writer_group_message_data_type_dict)

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