Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.02 KB

WriteResponse.md

File metadata and controls

31 lines (22 loc) · 1.02 KB

WriteResponse

Properties

Name Type Description Notes
response_header ResponseHeader [optional]
results List[int] [optional]
diagnostic_infos List[DiagnosticInfo] [optional]

Example

from opcua_webapi.models.write_response import WriteResponse

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

# convert the object into a dict
write_response_dict = write_response_instance.to_dict()
# create an instance of WriteResponse from a dict
write_response_from_dict = WriteResponse.from_dict(write_response_dict)

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