Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Add the following lines to your `pom.xml` file:
<dependency>
<groupId>com.google.apis</groupId>
<artifactId>google-api-services-contactcenterinsights</artifactId>
<version>v1-rev20260623-2.0.0</version>
<version>v1-rev20260727-2.0.0</version>
</dependency>
</dependencies>
</project>
Expand All @@ -35,7 +35,7 @@ repositories {
mavenCentral()
}
dependencies {
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20260623-2.0.0'
implementation 'com.google.apis:google-api-services-contactcenterinsights:v1-rev20260727-2.0.0'
}
```

Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.contactcenterinsights.v1.model;

/**
* A chunk of data in an assistant message.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
* explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudContactcenterinsightsV1AssistantChunk extends com.google.api.client.json.GenericJson {

/**
* Optional. Text data.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String text;

/**
* Optional. Text data.
* @return value or {@code null} for none
*/
public java.lang.String getText() {
return text;
}

/**
* Optional. Text data.
* @param text text or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1AssistantChunk setText(java.lang.String text) {
this.text = text;
return this;
}

@Override
public GoogleCloudContactcenterinsightsV1AssistantChunk set(String fieldName, Object value) {
return (GoogleCloudContactcenterinsightsV1AssistantChunk) super.set(fieldName, value);
}

@Override
public GoogleCloudContactcenterinsightsV1AssistantChunk clone() {
return (GoogleCloudContactcenterinsightsV1AssistantChunk) super.clone();
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,121 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
* in compliance with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License
* is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
* or implied. See the License for the specific language governing permissions and limitations under
* the License.
*/
/*
* This code was generated by https://github.com/googleapis/google-api-java-client-services/
* Modify at your own risk.
*/

package com.google.api.services.contactcenterinsights.v1.model;

/**
* A message in an assistant session.
*
* <p> This is the Java data model class that specifies how to parse/serialize into the JSON that is
* transmitted over HTTP when working with the Contact Center AI Insights API. For a detailed
* explanation see:
* <a href="https://developers.google.com/api-client-library/java/google-http-java-client/json">https://developers.google.com/api-client-library/java/google-http-java-client/json</a>
* </p>
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudContactcenterinsightsV1AssistantMessage extends com.google.api.client.json.GenericJson {

/**
* Required. Content of the message.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.util.List<GoogleCloudContactcenterinsightsV1AssistantChunk> chunks;

static {
// hack to force ProGuard to consider GoogleCloudContactcenterinsightsV1AssistantChunk used, since otherwise it would be stripped out
// see https://github.com/google/google-api-java-client/issues/543
com.google.api.client.util.Data.nullOf(GoogleCloudContactcenterinsightsV1AssistantChunk.class);
}

/**
* Required. Timestamp when the message was sent or received.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private String eventTime;

/**
* Required. Role within the conversation.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String role;

/**
* Required. Content of the message.
* @return value or {@code null} for none
*/
public java.util.List<GoogleCloudContactcenterinsightsV1AssistantChunk> getChunks() {
return chunks;
}

/**
* Required. Content of the message.
* @param chunks chunks or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1AssistantMessage setChunks(java.util.List<GoogleCloudContactcenterinsightsV1AssistantChunk> chunks) {
this.chunks = chunks;
return this;
}

/**
* Required. Timestamp when the message was sent or received.
* @return value or {@code null} for none
*/
public String getEventTime() {
return eventTime;
}

/**
* Required. Timestamp when the message was sent or received.
* @param eventTime eventTime or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1AssistantMessage setEventTime(String eventTime) {
this.eventTime = eventTime;
return this;
}

/**
* Required. Role within the conversation.
* @return value or {@code null} for none
*/
public java.lang.String getRole() {
return role;
}

/**
* Required. Role within the conversation.
* @param role role or {@code null} for none
*/
public GoogleCloudContactcenterinsightsV1AssistantMessage setRole(java.lang.String role) {
this.role = role;
return this;
}

@Override
public GoogleCloudContactcenterinsightsV1AssistantMessage set(String fieldName, Object value) {
return (GoogleCloudContactcenterinsightsV1AssistantMessage) super.set(fieldName, value);
}

@Override
public GoogleCloudContactcenterinsightsV1AssistantMessage clone() {
return (GoogleCloudContactcenterinsightsV1AssistantMessage) super.clone();
}

}
Loading
Loading