CreateSessionResponse

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
response_headerResponseHeader[optional]
session_idstr[optional]
authentication_tokenstr[optional]
revised_session_timeoutfloat[optional] [default to 0]
server_noncebytearray[optional]
server_certificatebytearray[optional]
server_endpointsList[EndpointDescription][optional]
server_software_certificatesList[SignedSoftwareCertificate][optional]
server_signatureSignatureData[optional]
max_request_message_sizeint[optional] [default to 0]

Example

from opcua_webapi.models.create_session_response import CreateSessionResponse

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

# convert the object into a dict
create_session_response_dict = create_session_response_instance.to_dict()
# create an instance of CreateSessionResponse from a dict
create_session_response_from_dict = CreateSessionResponse.from_dict(create_session_response_dict)

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