JsonNetworkMessage

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
message_idstr[optional]
message_typestr[optional]
publisher_idstr[optional]
writer_group_namestr[optional]
data_set_class_idstr[optional]
messagesobject[optional]

Example

from opcua_webapi.models.json_network_message import JsonNetworkMessage

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

# convert the object into a dict
json_network_message_dict = json_network_message_instance.to_dict()
# create an instance of JsonNetworkMessage from a dict
json_network_message_from_dict = JsonNetworkMessage.from_dict(json_network_message_dict)

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