com.google.cloud.dialogflow.v2.CreateConversationModelOperationMetadataOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
Show all versions of proto-google-cloud-dialogflow-v2 Show documentation
PROTO library for proto-google-cloud-dialogflow-v2
/*
* 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/conversation_model.proto
// Protobuf Java Version: 3.25.4
package com.google.cloud.dialogflow.v2;
public interface CreateConversationModelOperationMetadataOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.CreateConversationModelOperationMetadata)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The resource name of the conversation model. Format:
* `projects/<Project ID>/conversationModels/<Conversation Model Id>`
*
*
* string conversation_model = 1;
*
* @return The conversationModel.
*/
java.lang.String getConversationModel();
/**
*
*
*
* The resource name of the conversation model. Format:
* `projects/<Project ID>/conversationModels/<Conversation Model Id>`
*
*
* string conversation_model = 1;
*
* @return The bytes for conversationModel.
*/
com.google.protobuf.ByteString getConversationModelBytes();
/**
*
*
*
* State of CreateConversationModel operation.
*
*
* .google.cloud.dialogflow.v2.CreateConversationModelOperationMetadata.State state = 2;
*
*
* @return The enum numeric value on the wire for state.
*/
int getStateValue();
/**
*
*
*
* State of CreateConversationModel operation.
*
*
* .google.cloud.dialogflow.v2.CreateConversationModelOperationMetadata.State state = 2;
*
*
* @return The state.
*/
com.google.cloud.dialogflow.v2.CreateConversationModelOperationMetadata.State getState();
/**
*
*
*
* Timestamp when the request to create conversation model is submitted. The
* time is measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 3;
*
* @return Whether the createTime field is set.
*/
boolean hasCreateTime();
/**
*
*
*
* Timestamp when the request to create conversation model is submitted. The
* time is measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 3;
*
* @return The createTime.
*/
com.google.protobuf.Timestamp getCreateTime();
/**
*
*
*
* Timestamp when the request to create conversation model is submitted. The
* time is measured on server side.
*
*
* .google.protobuf.Timestamp create_time = 3;
*/
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder();
}