RegisterNodesRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
nodes_to_registerList[str][optional]

Example

from opcua_webapi.models.register_nodes_request import RegisterNodesRequest

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

# convert the object into a dict
register_nodes_request_dict = register_nodes_request_instance.to_dict()
# create an instance of RegisterNodesRequest from a dict
register_nodes_request_from_dict = RegisterNodesRequest.from_dict(register_nodes_request_dict)

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