RequestHeader

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
authentication_tokenstr[optional]
timestampdatetime[optional]
request_handleint[optional] [default to 0]
return_diagnosticsint[optional] [default to 0]
audit_entry_idstr[optional]
timeout_hintint[optional] [default to 0]
additional_headerExtensionObject[optional]

Example

from opcua_webapi.models.request_header import RequestHeader

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

# convert the object into a dict
request_header_dict = request_header_instance.to_dict()
# create an instance of RequestHeader from a dict
request_header_from_dict = RequestHeader.from_dict(request_header_dict)

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