JsonDataSetMessage

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
data_set_writer_idint[optional] [default to 0]
data_set_writer_namestr[optional]
publisher_idstr[optional]
writer_group_namestr[optional]
sequence_numberint[optional] [default to 0]
meta_data_versionConfigurationVersionDataType[optional]
minor_versionint[optional] [default to 0]
timestampdatetime[optional]
statusStatusCode[optional]
message_typestr[optional]
payloadobject[optional]

Example

from opcua_webapi.models.json_data_set_message import JsonDataSetMessage

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

# convert the object into a dict
json_data_set_message_dict = json_data_set_message_instance.to_dict()
# create an instance of JsonDataSetMessage from a dict
json_data_set_message_from_dict = JsonDataSetMessage.from_dict(json_data_set_message_dict)

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