Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.12 KB

File metadata and controls

32 lines (23 loc) · 1.12 KB

CallMethodRequest

Link to specification.

Properties

Name Type Description Notes
object_id str [optional]
method_id str [optional]
input_arguments List[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]