Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 979 Bytes

CallRequest.md

File metadata and controls

30 lines (21 loc) · 979 Bytes

CallRequest

Properties

Name Type Description Notes
request_header RequestHeader [optional]
methods_to_call List[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]