CallRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
methods_to_callList[CallMethodRequest][optional]

Example

from opcua_webapi.models.call_request import CallRequest

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

# convert the object into a dict
call_request_dict = call_request_instance.to_dict()
# create an instance of CallRequest from a dict
call_request_from_dict = CallRequest.from_dict(call_request_dict)

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