ResponseHeader

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
timestampdatetime[optional]
request_handleint[optional] [default to 0]
service_resultStatusCode[optional]
service_diagnosticsDiagnosticInfo[optional]
string_tableList[str][optional]
additional_headerExtensionObject[optional]

Example

from opcua_webapi.models.response_header import ResponseHeader

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

# convert the object into a dict
response_header_dict = response_header_instance.to_dict()
# create an instance of ResponseHeader from a dict
response_header_from_dict = ResponseHeader.from_dict(response_header_dict)

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