Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.17 KB

File metadata and controls

33 lines (24 loc) · 1.17 KB

ReadEventDetails

Link to specification.

Properties

Name Type Description Notes
num_values_per_node int [optional] [default to 0]
start_time datetime [optional]
end_time datetime [optional]
filter EventFilter [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]