ReadRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
max_agefloat[optional] [default to 0]
timestamps_to_returnintLink to specification.[optional]
nodes_to_readList[ReadValueId][optional]

Example

from opcua_webapi.models.read_request import ReadRequest

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

# convert the object into a dict
read_request_dict = read_request_instance.to_dict()
# create an instance of ReadRequest from a dict
read_request_from_dict = ReadRequest.from_dict(read_request_dict)

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