com.google.cloud.contactcenterinsights.v1.IssueModelOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-contact-center-insights-v1 Show documentation
Show all versions of proto-google-cloud-contact-center-insights-v1 Show documentation
Proto library for google-cloud-contact-center-insights
/*
* 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/contactcenterinsights/v1/resources.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.contactcenterinsights.v1;
public interface IssueModelOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.contactcenterinsights.v1.IssueModel)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* Immutable. The resource name of the issue model.
* Format:
* projects/{project}/locations/{location}/issueModels/{issue_model}
*
*
* string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* Immutable. The resource name of the issue model.
* Format:
* projects/{project}/locations/{location}/issueModels/{issue_model}
*
*
* string name = 1 [(.google.api.field_behavior) = IMMUTABLE];
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* The representative name for the issue model.
*
*
* string display_name = 2;
*
* @return The displayName.
*/
java.lang.String getDisplayName();
/**
*
*
*
* The representative name for the issue model.
*
*
* string display_name = 2;
*
* @return The bytes for displayName.
*/
com.google.protobuf.ByteString getDisplayNameBytes();
/**
*
*
*
* Output only. The time at which this issue model was created.
*
*
* .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Output only. The time at which this issue model was created.
*
*
* .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Output only. The time at which this issue model was created.
*
*
* .google.protobuf.Timestamp create_time = 3 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
/**
*
*
*
* Output only. The most recent time at which the issue model was updated.
*
*
* .google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return Whether the updateTime field is set.
*/
boolean hasUpdateTime();
/**
*
*
*
* Output only. The most recent time at which the issue model was updated.
*
*
* .google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The updateTime.
*/
com.google.protobuf.Timestamp getUpdateTime();
/**
*
*
*
* Output only. The most recent time at which the issue model was updated.
*
*
* .google.protobuf.Timestamp update_time = 4 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*/
com.google.protobuf.TimestampOrBuilder getUpdateTimeOrBuilder();
/**
*
*
*
* Output only. Number of issues in this issue model.
*
*
* int64 issue_count = 8 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
* @return The issueCount.
*/
long getIssueCount();
/**
*
*
*
* Output only. State of the model.
*
*
*
* .google.cloud.contactcenterinsights.v1.IssueModel.State state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* Output only. State of the model.
*
*
*
* .google.cloud.contactcenterinsights.v1.IssueModel.State state = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];
*
*
* @return The state.
*/
com.google.cloud.contactcenterinsights.v1.IssueModel.State getState();
/**
*
*
*
* Configs for the input data that used to create the issue model.
*
*
* .google.cloud.contactcenterinsights.v1.IssueModel.InputDataConfig input_data_config = 6;
*
*
* @return Whether the inputDataConfig field is set.
*/
boolean hasInputDataConfig();
/**
*
*
*
* Configs for the input data that used to create the issue model.
*
*
* .google.cloud.contactcenterinsights.v1.IssueModel.InputDataConfig input_data_config = 6;
*
*
* @return The inputDataConfig.
*/
com.google.cloud.contactcenterinsights.v1.IssueModel.InputDataConfig getInputDataConfig();
/**
*
*
*
* Configs for the input data that used to create the issue model.
*
*
* .google.cloud.contactcenterinsights.v1.IssueModel.InputDataConfig input_data_config = 6;
*
*/
com.google.cloud.contactcenterinsights.v1.IssueModel.InputDataConfigOrBuilder
getInputDataConfigOrBuilder();
/**
*
*
*
* Output only. Immutable. The issue model's label statistics on its training
* data.
*
*
*
* .google.cloud.contactcenterinsights.v1.IssueModelLabelStats training_stats = 7 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE];
*
*
* @return Whether the trainingStats field is set.
*/
boolean hasTrainingStats();
/**
*
*
*
* Output only. Immutable. The issue model's label statistics on its training
* data.
*
*
*
* .google.cloud.contactcenterinsights.v1.IssueModelLabelStats training_stats = 7 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE];
*
*
* @return The trainingStats.
*/
com.google.cloud.contactcenterinsights.v1.IssueModelLabelStats getTrainingStats();
/**
*
*
*
* Output only. Immutable. The issue model's label statistics on its training
* data.
*
*
*
* .google.cloud.contactcenterinsights.v1.IssueModelLabelStats training_stats = 7 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.field_behavior) = IMMUTABLE];
*
*/
com.google.cloud.contactcenterinsights.v1.IssueModelLabelStatsOrBuilder
getTrainingStatsOrBuilder();
/**
*
*
*
* Type of the model.
*
*
* .google.cloud.contactcenterinsights.v1.IssueModel.ModelType model_type = 9;
*
* @return The enum numeric value on the wire for modelType.
*/
int getModelTypeValue();
/**
*
*
*
* Type of the model.
*
*
* .google.cloud.contactcenterinsights.v1.IssueModel.ModelType model_type = 9;
*
* @return The modelType.
*/
com.google.cloud.contactcenterinsights.v1.IssueModel.ModelType getModelType();
/**
*
*
*
* Language of the model.
*
*
* string language_code = 10;
*
* @return The languageCode.
*/
java.lang.String getLanguageCode();
/**
*
*
*
* Language of the model.
*
*
* string language_code = 10;
*
* @return The bytes for languageCode.
*/
com.google.protobuf.ByteString getLanguageCodeBytes();
}