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

com.google.cloud.dialogflow.cx.v3.PageOrBuilder Maven / Gradle / Ivy

There is a newer version: 0.66.0
Show newest version
/*
 * Copyright 2020 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/v3/page.proto

package com.google.cloud.dialogflow.cx.v3;

public interface PageOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.cx.v3.Page)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * The unique identifier of the page.
   * Required for the [Pages.UpdatePage][google.cloud.dialogflow.cx.v3.Pages.UpdatePage] method. [Pages.CreatePage][google.cloud.dialogflow.cx.v3.Pages.CreatePage]
   * populates the name automatically.
   * Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
   * ID>/flows/<Flow ID>/pages/<Page ID>`.
   * 
* * string name = 1; * * @return The name. */ java.lang.String getName(); /** * * *
   * The unique identifier of the page.
   * Required for the [Pages.UpdatePage][google.cloud.dialogflow.cx.v3.Pages.UpdatePage] method. [Pages.CreatePage][google.cloud.dialogflow.cx.v3.Pages.CreatePage]
   * populates the name automatically.
   * Format: `projects/<Project ID>/locations/<Location ID>/agents/<Agent
   * ID>/flows/<Flow ID>/pages/<Page ID>`.
   * 
* * string name = 1; * * @return The bytes for name. */ com.google.protobuf.ByteString getNameBytes(); /** * * *
   * Required. The human-readable name of the page, unique within the agent.
   * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; * * @return The displayName. */ java.lang.String getDisplayName(); /** * * *
   * Required. The human-readable name of the page, unique within the agent.
   * 
* * string display_name = 2 [(.google.api.field_behavior) = REQUIRED]; * * @return The bytes for displayName. */ com.google.protobuf.ByteString getDisplayNameBytes(); /** * * *
   * The fulfillment to call when the session is entering the page.
   * 
* * .google.cloud.dialogflow.cx.v3.Fulfillment entry_fulfillment = 7; * * @return Whether the entryFulfillment field is set. */ boolean hasEntryFulfillment(); /** * * *
   * The fulfillment to call when the session is entering the page.
   * 
* * .google.cloud.dialogflow.cx.v3.Fulfillment entry_fulfillment = 7; * * @return The entryFulfillment. */ com.google.cloud.dialogflow.cx.v3.Fulfillment getEntryFulfillment(); /** * * *
   * The fulfillment to call when the session is entering the page.
   * 
* * .google.cloud.dialogflow.cx.v3.Fulfillment entry_fulfillment = 7; */ com.google.cloud.dialogflow.cx.v3.FulfillmentOrBuilder getEntryFulfillmentOrBuilder(); /** * * *
   * The form associated with the page, used for collecting parameters
   * relevant to the page.
   * 
* * .google.cloud.dialogflow.cx.v3.Form form = 4; * * @return Whether the form field is set. */ boolean hasForm(); /** * * *
   * The form associated with the page, used for collecting parameters
   * relevant to the page.
   * 
* * .google.cloud.dialogflow.cx.v3.Form form = 4; * * @return The form. */ com.google.cloud.dialogflow.cx.v3.Form getForm(); /** * * *
   * The form associated with the page, used for collecting parameters
   * relevant to the page.
   * 
* * .google.cloud.dialogflow.cx.v3.Form form = 4; */ com.google.cloud.dialogflow.cx.v3.FormOrBuilder getFormOrBuilder(); /** * * *
   * Ordered list of [`TransitionRouteGroups`][google.cloud.dialogflow.cx.v3.TransitionRouteGroup] associated
   * with the page. Transition route groups must be unique within a page.
   * *   If multiple transition routes within a page scope refer to the same
   *     intent, then the precedence order is: page's transition route -> page's
   *     transition route group -> flow's transition routes.
   * *   If multiple transition route groups within a page contain the same
   *     intent, then the first group in the ordered list takes precedence.
   * Format:`projects/<Project ID>/locations/<Location ID>/agents/<Agent
   * ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID>`.
   * 
* * repeated string transition_route_groups = 11 [(.google.api.resource_reference) = { ... } * * * @return A list containing the transitionRouteGroups. */ java.util.List getTransitionRouteGroupsList(); /** * * *
   * Ordered list of [`TransitionRouteGroups`][google.cloud.dialogflow.cx.v3.TransitionRouteGroup] associated
   * with the page. Transition route groups must be unique within a page.
   * *   If multiple transition routes within a page scope refer to the same
   *     intent, then the precedence order is: page's transition route -> page's
   *     transition route group -> flow's transition routes.
   * *   If multiple transition route groups within a page contain the same
   *     intent, then the first group in the ordered list takes precedence.
   * Format:`projects/<Project ID>/locations/<Location ID>/agents/<Agent
   * ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID>`.
   * 
* * repeated string transition_route_groups = 11 [(.google.api.resource_reference) = { ... } * * * @return The count of transitionRouteGroups. */ int getTransitionRouteGroupsCount(); /** * * *
   * Ordered list of [`TransitionRouteGroups`][google.cloud.dialogflow.cx.v3.TransitionRouteGroup] associated
   * with the page. Transition route groups must be unique within a page.
   * *   If multiple transition routes within a page scope refer to the same
   *     intent, then the precedence order is: page's transition route -> page's
   *     transition route group -> flow's transition routes.
   * *   If multiple transition route groups within a page contain the same
   *     intent, then the first group in the ordered list takes precedence.
   * Format:`projects/<Project ID>/locations/<Location ID>/agents/<Agent
   * ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID>`.
   * 
* * repeated string transition_route_groups = 11 [(.google.api.resource_reference) = { ... } * * * @param index The index of the element to return. * @return The transitionRouteGroups at the given index. */ java.lang.String getTransitionRouteGroups(int index); /** * * *
   * Ordered list of [`TransitionRouteGroups`][google.cloud.dialogflow.cx.v3.TransitionRouteGroup] associated
   * with the page. Transition route groups must be unique within a page.
   * *   If multiple transition routes within a page scope refer to the same
   *     intent, then the precedence order is: page's transition route -> page's
   *     transition route group -> flow's transition routes.
   * *   If multiple transition route groups within a page contain the same
   *     intent, then the first group in the ordered list takes precedence.
   * Format:`projects/<Project ID>/locations/<Location ID>/agents/<Agent
   * ID>/flows/<Flow ID>/transitionRouteGroups/<TransitionRouteGroup ID>`.
   * 
* * repeated string transition_route_groups = 11 [(.google.api.resource_reference) = { ... } * * * @param index The index of the value to return. * @return The bytes of the transitionRouteGroups at the given index. */ com.google.protobuf.ByteString getTransitionRouteGroupsBytes(int index); /** * * *
   * A list of transitions for the transition rules of this page.
   * They route the conversation to another page in the same flow, or another
   * flow.
   * When we are in a certain page, the TransitionRoutes are evalauted in the
   * following order:
   * *   TransitionRoutes defined in the page with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in flow with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Flow.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in the page with only condition specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with only
   *     condition specified.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.TransitionRoute transition_routes = 9; */ java.util.List getTransitionRoutesList(); /** * * *
   * A list of transitions for the transition rules of this page.
   * They route the conversation to another page in the same flow, or another
   * flow.
   * When we are in a certain page, the TransitionRoutes are evalauted in the
   * following order:
   * *   TransitionRoutes defined in the page with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in flow with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Flow.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in the page with only condition specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with only
   *     condition specified.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.TransitionRoute transition_routes = 9; */ com.google.cloud.dialogflow.cx.v3.TransitionRoute getTransitionRoutes(int index); /** * * *
   * A list of transitions for the transition rules of this page.
   * They route the conversation to another page in the same flow, or another
   * flow.
   * When we are in a certain page, the TransitionRoutes are evalauted in the
   * following order:
   * *   TransitionRoutes defined in the page with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in flow with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Flow.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in the page with only condition specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with only
   *     condition specified.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.TransitionRoute transition_routes = 9; */ int getTransitionRoutesCount(); /** * * *
   * A list of transitions for the transition rules of this page.
   * They route the conversation to another page in the same flow, or another
   * flow.
   * When we are in a certain page, the TransitionRoutes are evalauted in the
   * following order:
   * *   TransitionRoutes defined in the page with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in flow with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Flow.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in the page with only condition specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with only
   *     condition specified.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.TransitionRoute transition_routes = 9; */ java.util.List getTransitionRoutesOrBuilderList(); /** * * *
   * A list of transitions for the transition rules of this page.
   * They route the conversation to another page in the same flow, or another
   * flow.
   * When we are in a certain page, the TransitionRoutes are evalauted in the
   * following order:
   * *   TransitionRoutes defined in the page with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in flow with intent specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Flow.transition_route_groups] with intent
   *     specified.
   * *   TransitionRoutes defined in the page with only condition specified.
   * *   TransitionRoutes defined in the
   *     [transition route groups][google.cloud.dialogflow.cx.v3.Page.transition_route_groups] with only
   *     condition specified.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.TransitionRoute transition_routes = 9; */ com.google.cloud.dialogflow.cx.v3.TransitionRouteOrBuilder getTransitionRoutesOrBuilder( int index); /** * * *
   * Handlers associated with the page to handle events such as webhook errors,
   * no match or no input.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.EventHandler event_handlers = 10; */ java.util.List getEventHandlersList(); /** * * *
   * Handlers associated with the page to handle events such as webhook errors,
   * no match or no input.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.EventHandler event_handlers = 10; */ com.google.cloud.dialogflow.cx.v3.EventHandler getEventHandlers(int index); /** * * *
   * Handlers associated with the page to handle events such as webhook errors,
   * no match or no input.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.EventHandler event_handlers = 10; */ int getEventHandlersCount(); /** * * *
   * Handlers associated with the page to handle events such as webhook errors,
   * no match or no input.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.EventHandler event_handlers = 10; */ java.util.List getEventHandlersOrBuilderList(); /** * * *
   * Handlers associated with the page to handle events such as webhook errors,
   * no match or no input.
   * 
* * repeated .google.cloud.dialogflow.cx.v3.EventHandler event_handlers = 10; */ com.google.cloud.dialogflow.cx.v3.EventHandlerOrBuilder getEventHandlersOrBuilder(int index); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy