ReadRequest
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| request_header | RequestHeader | [optional] | |
| max_age | float | [optional] [default to 0] | |
| timestamps_to_return | int | Link to specification. | [optional] |
| nodes_to_read | List[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)