CallMethodResult

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
status_codeStatusCode[optional]
input_argument_resultsList[StatusCode][optional]
input_argument_diagnostic_infosList[DiagnosticInfo][optional]
output_argumentsList[Variant][optional]

Example

from opcua_webapi.models.call_method_result import CallMethodResult

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

# convert the object into a dict
call_method_result_dict = call_method_result_instance.to_dict()
# create an instance of CallMethodResult from a dict
call_method_result_from_dict = CallMethodResult.from_dict(call_method_result_dict)

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