ReadEventDetails

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
num_values_per_nodeint[optional] [default to 0]
start_timedatetime[optional]
end_timedatetime[optional]
filterEventFilter[optional]

Example

from opcua_webapi.models.read_event_details import ReadEventDetails

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

# convert the object into a dict
read_event_details_dict = read_event_details_instance.to_dict()
# create an instance of ReadEventDetails from a dict
read_event_details_from_dict = ReadEventDetails.from_dict(read_event_details_dict)

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