|
29 | 29 | @SuppressWarnings("javadoc") |
30 | 30 | public final class GoogleCloudDialogflowV2Participant extends com.google.api.client.json.GenericJson { |
31 | 31 |
|
| 32 | + /** |
| 33 | + * Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field |
| 34 | + * is only inscope for Integration type that include UI Modules, Backend Modules, and Agent |
| 35 | + * Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent, |
| 36 | + * prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both |
| 37 | + * CreateParticipantRequest and UpdateParticipantRequest will be supported. |
| 38 | + * The value may be {@code null}. |
| 39 | + */ |
| 40 | + @com.google.api.client.util.Key |
| 41 | + private java.lang.String agentDesktopSource; |
| 42 | + |
32 | 43 | /** |
33 | 44 | * Optional. Key-value filters on the metadata of documents returned by article suggestion. If |
34 | 45 | * specified, article suggestion only returns suggested documents that match all filters in their |
@@ -82,6 +93,31 @@ public final class GoogleCloudDialogflowV2Participant extends com.google.api.cli |
82 | 93 | @com.google.api.client.util.Key |
83 | 94 | private java.lang.String sipRecordingMediaLabel; |
84 | 95 |
|
| 96 | + /** |
| 97 | + * Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field |
| 98 | + * is only inscope for Integration type that include UI Modules, Backend Modules, and Agent |
| 99 | + * Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent, |
| 100 | + * prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both |
| 101 | + * CreateParticipantRequest and UpdateParticipantRequest will be supported. |
| 102 | + * @return value or {@code null} for none |
| 103 | + */ |
| 104 | + public java.lang.String getAgentDesktopSource() { |
| 105 | + return agentDesktopSource; |
| 106 | + } |
| 107 | + |
| 108 | + /** |
| 109 | + * Optional. For tracking the utilization of prebuilt Agent Assist integration modules. This field |
| 110 | + * is only inscope for Integration type that include UI Modules, Backend Modules, and Agent |
| 111 | + * Desktop connector, it is out of scope for CCaaS and Direct Integration. For each human agent, |
| 112 | + * prebuilt UI Modules needs to trigger the UpdateParticipant API to update this field. Both |
| 113 | + * CreateParticipantRequest and UpdateParticipantRequest will be supported. |
| 114 | + * @param agentDesktopSource agentDesktopSource or {@code null} for none |
| 115 | + */ |
| 116 | + public GoogleCloudDialogflowV2Participant setAgentDesktopSource(java.lang.String agentDesktopSource) { |
| 117 | + this.agentDesktopSource = agentDesktopSource; |
| 118 | + return this; |
| 119 | + } |
| 120 | + |
85 | 121 | /** |
86 | 122 | * Optional. Key-value filters on the metadata of documents returned by article suggestion. If |
87 | 123 | * specified, article suggestion only returns suggested documents that match all filters in their |
|
0 commit comments