CreateSessionResponse
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| response_header | ResponseHeader | [optional] | |
| session_id | str | [optional] | |
| authentication_token | str | [optional] | |
| revised_session_timeout | float | [optional] [default to 0] | |
| server_nonce | bytearray | [optional] | |
| server_certificate | bytearray | [optional] | |
| server_endpoints | List[EndpointDescription] | [optional] | |
| server_software_certificates | List[SignedSoftwareCertificate] | [optional] | |
| server_signature | SignatureData | [optional] | |
| max_request_message_size | int | [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)