ActivateSessionRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
client_signatureSignatureData[optional]
client_software_certificatesList[SignedSoftwareCertificate][optional]
locale_idsList[str][optional]
user_identity_tokenExtensionObject[optional]
user_token_signatureSignatureData[optional]

Example

from opcua_webapi.models.activate_session_request import ActivateSessionRequest

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

# convert the object into a dict
activate_session_request_dict = activate_session_request_instance.to_dict()
# create an instance of ActivateSessionRequest from a dict
activate_session_request_from_dict = ActivateSessionRequest.from_dict(activate_session_request_dict)

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