CreateSessionDetails¶
-
class
oci.generative_ai_agent_runtime.models.
CreateSessionDetails
(**kwargs)¶ Bases:
object
Information about the new session.
Methods
__init__
(**kwargs)Initializes a new CreateSessionDetails object with values from keyword arguments. Attributes
description
Gets the description of this CreateSessionDetails. display_name
Gets the display_name of this CreateSessionDetails. -
__init__
(**kwargs)¶ Initializes a new CreateSessionDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - display_name (str) – The value to assign to the display_name property of this CreateSessionDetails.
- description (str) – The value to assign to the description property of this CreateSessionDetails.
-
description
¶ Gets the description of this CreateSessionDetails. An optional description of the session.
Returns: The description of this CreateSessionDetails. Return type: str
-
display_name
¶ Gets the display_name of this CreateSessionDetails. The name of the session. A session names doesn’t have to be unique and you can change the session name later.
Returns: The display_name of this CreateSessionDetails. Return type: str
-