CallMethodRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
object_idstr[optional]
method_idstr[optional]
input_argumentsList[Variant][optional]

Example

from opcua_webapi.models.call_method_request import CallMethodRequest

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

# convert the object into a dict
call_method_request_dict = call_method_request_instance.to_dict()
# create an instance of CallMethodRequest from a dict
call_method_request_from_dict = CallMethodRequest.from_dict(call_method_request_dict)

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