com.google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroupOrBuilder 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-cx-v3beta1 Show documentation
Show all versions of proto-google-cloud-dialogflow-cx-v3beta1 Show documentation
PROTO library for proto-google-cloud-dialogflow-cx-v3beta1
/*
* 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/cx/v3beta1/transition_route_group.proto
// Protobuf Java Version: 3.25.5
package com.google.cloud.dialogflow.cx.v3beta1;
public interface TransitionRouteGroupOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The unique identifier of the transition route group.
* [TransitionRouteGroups.CreateTransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroups.CreateTransitionRouteGroup]
* populates the name automatically. Format: `projects/<Project
* ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow
* ID>/transitionRouteGroups/<Transition Route Group ID>` or
* `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/transitionRouteGroups/<TransitionRouteGroup ID>` for agent-level
* groups.
*
*
* string name = 1;
*
* @return The name.
*/
java.lang.String getName();
/**
*
*
*
* The unique identifier of the transition route group.
* [TransitionRouteGroups.CreateTransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroups.CreateTransitionRouteGroup]
* populates the name automatically. Format: `projects/<Project
* ID>/locations/<Location ID>/agents/<Agent ID>/flows/<Flow
* ID>/transitionRouteGroups/<Transition Route Group ID>` or
* `projects/<Project ID>/locations/<Location ID>/agents/<Agent
* ID>/transitionRouteGroups/<TransitionRouteGroup ID>` for agent-level
* groups.
*
*
* string name = 1;
*
* @return The bytes for name.
*/
com.google.protobuf.ByteString getNameBytes();
/**
*
*
*
* Required. The human-readable name of the transition route group, unique
* within the flow. The display name can be no longer than 30 characters.
*
*
* string display_name = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The displayName.
*/
java.lang.String getDisplayName();
/**
*
*
*
* Required. The human-readable name of the transition route group, unique
* within the flow. The display name can be no longer than 30 characters.
*
*
* string display_name = 2 [(.google.api.field_behavior) = REQUIRED];
*
* @return The bytes for displayName.
*/
com.google.protobuf.ByteString getDisplayNameBytes();
/**
*
*
*
* Transition routes associated with the
* [TransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup].
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRoute transition_routes = 5;
*
*/
java.util.List getTransitionRoutesList();
/**
*
*
*
* Transition routes associated with the
* [TransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup].
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRoute transition_routes = 5;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.TransitionRoute getTransitionRoutes(int index);
/**
*
*
*
* Transition routes associated with the
* [TransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup].
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRoute transition_routes = 5;
*
*/
int getTransitionRoutesCount();
/**
*
*
*
* Transition routes associated with the
* [TransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup].
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRoute transition_routes = 5;
*
*/
java.util.List extends com.google.cloud.dialogflow.cx.v3beta1.TransitionRouteOrBuilder>
getTransitionRoutesOrBuilderList();
/**
*
*
*
* Transition routes associated with the
* [TransitionRouteGroup][google.cloud.dialogflow.cx.v3beta1.TransitionRouteGroup].
*
*
* repeated .google.cloud.dialogflow.cx.v3beta1.TransitionRoute transition_routes = 5;
*
*/
com.google.cloud.dialogflow.cx.v3beta1.TransitionRouteOrBuilder getTransitionRoutesOrBuilder(
int index);
}