CreateSessionRequest

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
request_headerRequestHeader[optional]
client_descriptionApplicationDescription[optional]
server_uristr[optional]
endpoint_urlstr[optional]
session_namestr[optional]
client_noncebytearray[optional]
client_certificatebytearray[optional]
requested_session_timeoutfloat[optional] [default to 0]
max_response_message_sizeint[optional] [default to 0]

Example

from opcua_webapi.models.create_session_request import CreateSessionRequest

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

# convert the object into a dict
create_session_request_dict = create_session_request_instance.to_dict()
# create an instance of CreateSessionRequest from a dict
create_session_request_from_dict = CreateSessionRequest.from_dict(create_session_request_dict)

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