ResponseHeader
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| timestamp | datetime | [optional] | |
| request_handle | int | [optional] [default to 0] | |
| service_result | StatusCode | [optional] | |
| service_diagnostics | DiagnosticInfo | [optional] | |
| string_table | List[str] | [optional] | |
| additional_header | ExtensionObject | [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)