forked from github/copilot-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSessionCapabilities.java
More file actions
39 lines (34 loc) · 1.07 KB
/
SessionCapabilities.java
File metadata and controls
39 lines (34 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
*--------------------------------------------------------------------------------------------*/
package com.github.copilot.sdk.json;
/**
* Represents the capabilities reported by the host for a session.
* <p>
* Capabilities are populated from the session create/resume response and
* updated in real time via {@code capabilities.changed} events.
*
* @since 1.0.0
*/
public class SessionCapabilities {
private SessionUiCapabilities ui;
/**
* Gets the UI-related capabilities.
*
* @return the UI capabilities, or {@code null} if not reported
*/
public SessionUiCapabilities getUi() {
return ui;
}
/**
* Sets the UI-related capabilities.
*
* @param ui
* the UI capabilities
* @return this instance for method chaining
*/
public SessionCapabilities setUi(SessionUiCapabilities ui) {
this.ui = ui;
return this;
}
}