com.google.api.services.dialogflow.v3.model.GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer Maven / Gradle / Ivy
The newest version!
/*
* 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.dialogflow.v3.model;
/**
* Represents an answer from Knowledge. Currently supports FAQ and Generative answers.
*
* 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 Dialogflow API. For a detailed explanation see:
* https://developers.google.com/api-client-library/java/google-http-java-client/json
*
*
* @author Google, Inc.
*/
@SuppressWarnings("javadoc")
public final class GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer extends com.google.api.client.json.GenericJson {
/**
* The piece of text from the `source` that answers this suggested query.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private java.lang.String answerText;
/**
* Populated if the prediction came from FAQ.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource faqSource;
/**
* Populated if the prediction was Generative.
* The value may be {@code null}.
*/
@com.google.api.client.util.Key
private GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource generativeSource;
/**
* The piece of text from the `source` that answers this suggested query.
* @return value or {@code null} for none
*/
public java.lang.String getAnswerText() {
return answerText;
}
/**
* The piece of text from the `source` that answers this suggested query.
* @param answerText answerText or {@code null} for none
*/
public GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer setAnswerText(java.lang.String answerText) {
this.answerText = answerText;
return this;
}
/**
* Populated if the prediction came from FAQ.
* @return value or {@code null} for none
*/
public GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource getFaqSource() {
return faqSource;
}
/**
* Populated if the prediction came from FAQ.
* @param faqSource faqSource or {@code null} for none
*/
public GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer setFaqSource(GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerFaqSource faqSource) {
this.faqSource = faqSource;
return this;
}
/**
* Populated if the prediction was Generative.
* @return value or {@code null} for none
*/
public GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource getGenerativeSource() {
return generativeSource;
}
/**
* Populated if the prediction was Generative.
* @param generativeSource generativeSource or {@code null} for none
*/
public GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer setGenerativeSource(GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswerGenerativeSource generativeSource) {
this.generativeSource = generativeSource;
return this;
}
@Override
public GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer set(String fieldName, Object value) {
return (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer) super.set(fieldName, value);
}
@Override
public GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer clone() {
return (GoogleCloudDialogflowV2beta1KnowledgeAssistAnswerKnowledgeAnswer) super.clone();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy