All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.dialogflow.v2.ValidationErrorOrBuilder Maven / Gradle / Ivy

There is a newer version: 4.59.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * 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
 *
 *     https://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.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/dialogflow/v2/validation_result.proto

// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.v2;

public interface ValidationErrorOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.ValidationError)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * The severity of the error.
   * 
* * .google.cloud.dialogflow.v2.ValidationError.Severity severity = 1; * * @return The enum numeric value on the wire for severity. */ int getSeverityValue(); /** * * *
   * The severity of the error.
   * 
* * .google.cloud.dialogflow.v2.ValidationError.Severity severity = 1; * * @return The severity. */ com.google.cloud.dialogflow.v2.ValidationError.Severity getSeverity(); /** * * *
   * The names of the entries that the error is associated with.
   * Format:
   *
   * - `projects/<Project ID>/agent`, if the error is associated with the entire
   * agent.
   * - `projects/<Project ID>/agent/intents/<Intent ID>`, if the error is
   * associated with certain intents.
   * - `projects/<Project ID>/agent/intents/<Intent
   * Id>/trainingPhrases/<Training Phrase ID>`, if the error is associated with
   * certain intent training phrases.
   * - `projects/<Project ID>/agent/intents/<Intent Id>/parameters/<Parameter
   * ID>`, if the error is associated with certain intent parameters.
   * - `projects/<Project ID>/agent/entities/<Entity ID>`, if the error is
   * associated with certain entities.
   * 
* * repeated string entries = 3; * * @return A list containing the entries. */ java.util.List getEntriesList(); /** * * *
   * The names of the entries that the error is associated with.
   * Format:
   *
   * - `projects/<Project ID>/agent`, if the error is associated with the entire
   * agent.
   * - `projects/<Project ID>/agent/intents/<Intent ID>`, if the error is
   * associated with certain intents.
   * - `projects/<Project ID>/agent/intents/<Intent
   * Id>/trainingPhrases/<Training Phrase ID>`, if the error is associated with
   * certain intent training phrases.
   * - `projects/<Project ID>/agent/intents/<Intent Id>/parameters/<Parameter
   * ID>`, if the error is associated with certain intent parameters.
   * - `projects/<Project ID>/agent/entities/<Entity ID>`, if the error is
   * associated with certain entities.
   * 
* * repeated string entries = 3; * * @return The count of entries. */ int getEntriesCount(); /** * * *
   * The names of the entries that the error is associated with.
   * Format:
   *
   * - `projects/<Project ID>/agent`, if the error is associated with the entire
   * agent.
   * - `projects/<Project ID>/agent/intents/<Intent ID>`, if the error is
   * associated with certain intents.
   * - `projects/<Project ID>/agent/intents/<Intent
   * Id>/trainingPhrases/<Training Phrase ID>`, if the error is associated with
   * certain intent training phrases.
   * - `projects/<Project ID>/agent/intents/<Intent Id>/parameters/<Parameter
   * ID>`, if the error is associated with certain intent parameters.
   * - `projects/<Project ID>/agent/entities/<Entity ID>`, if the error is
   * associated with certain entities.
   * 
* * repeated string entries = 3; * * @param index The index of the element to return. * @return The entries at the given index. */ java.lang.String getEntries(int index); /** * * *
   * The names of the entries that the error is associated with.
   * Format:
   *
   * - `projects/<Project ID>/agent`, if the error is associated with the entire
   * agent.
   * - `projects/<Project ID>/agent/intents/<Intent ID>`, if the error is
   * associated with certain intents.
   * - `projects/<Project ID>/agent/intents/<Intent
   * Id>/trainingPhrases/<Training Phrase ID>`, if the error is associated with
   * certain intent training phrases.
   * - `projects/<Project ID>/agent/intents/<Intent Id>/parameters/<Parameter
   * ID>`, if the error is associated with certain intent parameters.
   * - `projects/<Project ID>/agent/entities/<Entity ID>`, if the error is
   * associated with certain entities.
   * 
* * repeated string entries = 3; * * @param index The index of the value to return. * @return The bytes of the entries at the given index. */ com.google.protobuf.ByteString getEntriesBytes(int index); /** * * *
   * The detailed error message.
   * 
* * string error_message = 4; * * @return The errorMessage. */ java.lang.String getErrorMessage(); /** * * *
   * The detailed error message.
   * 
* * string error_message = 4; * * @return The bytes for errorMessage. */ com.google.protobuf.ByteString getErrorMessageBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy