1 /* 2 * Copyright 2020 Google LLC 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * https://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 // Generated by the protocol buffer compiler. DO NOT EDIT! 17 // source: google/cloud/dialogflow/v2/conversation_dataset.proto 18 19 package com.google.cloud.dialogflow.v2; 20 21 public interface ListConversationDatasetsResponseOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.cloud.dialogflow.v2.ListConversationDatasetsResponse) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * The list of datasets to return. 31 * </pre> 32 * 33 * <code>repeated .google.cloud.dialogflow.v2.ConversationDataset conversation_datasets = 1; 34 * </code> 35 */ getConversationDatasetsList()36 java.util.List<com.google.cloud.dialogflow.v2.ConversationDataset> getConversationDatasetsList(); 37 /** 38 * 39 * 40 * <pre> 41 * The list of datasets to return. 42 * </pre> 43 * 44 * <code>repeated .google.cloud.dialogflow.v2.ConversationDataset conversation_datasets = 1; 45 * </code> 46 */ getConversationDatasets(int index)47 com.google.cloud.dialogflow.v2.ConversationDataset getConversationDatasets(int index); 48 /** 49 * 50 * 51 * <pre> 52 * The list of datasets to return. 53 * </pre> 54 * 55 * <code>repeated .google.cloud.dialogflow.v2.ConversationDataset conversation_datasets = 1; 56 * </code> 57 */ getConversationDatasetsCount()58 int getConversationDatasetsCount(); 59 /** 60 * 61 * 62 * <pre> 63 * The list of datasets to return. 64 * </pre> 65 * 66 * <code>repeated .google.cloud.dialogflow.v2.ConversationDataset conversation_datasets = 1; 67 * </code> 68 */ 69 java.util.List<? extends com.google.cloud.dialogflow.v2.ConversationDatasetOrBuilder> getConversationDatasetsOrBuilderList()70 getConversationDatasetsOrBuilderList(); 71 /** 72 * 73 * 74 * <pre> 75 * The list of datasets to return. 76 * </pre> 77 * 78 * <code>repeated .google.cloud.dialogflow.v2.ConversationDataset conversation_datasets = 1; 79 * </code> 80 */ getConversationDatasetsOrBuilder( int index)81 com.google.cloud.dialogflow.v2.ConversationDatasetOrBuilder getConversationDatasetsOrBuilder( 82 int index); 83 84 /** 85 * 86 * 87 * <pre> 88 * The token to use to retrieve the next page of results, or empty if there 89 * are no more results in the list. 90 * </pre> 91 * 92 * <code>string next_page_token = 2;</code> 93 * 94 * @return The nextPageToken. 95 */ getNextPageToken()96 java.lang.String getNextPageToken(); 97 /** 98 * 99 * 100 * <pre> 101 * The token to use to retrieve the next page of results, or empty if there 102 * are no more results in the list. 103 * </pre> 104 * 105 * <code>string next_page_token = 2;</code> 106 * 107 * @return The bytes for nextPageToken. 108 */ getNextPageTokenBytes()109 com.google.protobuf.ByteString getNextPageTokenBytes(); 110 } 111