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/analytics/data/v1beta/data.proto 18 19 package com.google.analytics.data.v1beta; 20 21 public interface PivotHeaderOrBuilder 22 extends 23 // @@protoc_insertion_point(interface_extends:google.analytics.data.v1beta.PivotHeader) 24 com.google.protobuf.MessageOrBuilder { 25 26 /** 27 * 28 * 29 * <pre> 30 * The size is the same as the cardinality of the corresponding dimension 31 * combinations. 32 * </pre> 33 * 34 * <code>repeated .google.analytics.data.v1beta.PivotDimensionHeader pivot_dimension_headers = 1; 35 * </code> 36 */ 37 java.util.List<com.google.analytics.data.v1beta.PivotDimensionHeader> getPivotDimensionHeadersList()38 getPivotDimensionHeadersList(); 39 /** 40 * 41 * 42 * <pre> 43 * The size is the same as the cardinality of the corresponding dimension 44 * combinations. 45 * </pre> 46 * 47 * <code>repeated .google.analytics.data.v1beta.PivotDimensionHeader pivot_dimension_headers = 1; 48 * </code> 49 */ getPivotDimensionHeaders(int index)50 com.google.analytics.data.v1beta.PivotDimensionHeader getPivotDimensionHeaders(int index); 51 /** 52 * 53 * 54 * <pre> 55 * The size is the same as the cardinality of the corresponding dimension 56 * combinations. 57 * </pre> 58 * 59 * <code>repeated .google.analytics.data.v1beta.PivotDimensionHeader pivot_dimension_headers = 1; 60 * </code> 61 */ getPivotDimensionHeadersCount()62 int getPivotDimensionHeadersCount(); 63 /** 64 * 65 * 66 * <pre> 67 * The size is the same as the cardinality of the corresponding dimension 68 * combinations. 69 * </pre> 70 * 71 * <code>repeated .google.analytics.data.v1beta.PivotDimensionHeader pivot_dimension_headers = 1; 72 * </code> 73 */ 74 java.util.List<? extends com.google.analytics.data.v1beta.PivotDimensionHeaderOrBuilder> getPivotDimensionHeadersOrBuilderList()75 getPivotDimensionHeadersOrBuilderList(); 76 /** 77 * 78 * 79 * <pre> 80 * The size is the same as the cardinality of the corresponding dimension 81 * combinations. 82 * </pre> 83 * 84 * <code>repeated .google.analytics.data.v1beta.PivotDimensionHeader pivot_dimension_headers = 1; 85 * </code> 86 */ getPivotDimensionHeadersOrBuilder( int index)87 com.google.analytics.data.v1beta.PivotDimensionHeaderOrBuilder getPivotDimensionHeadersOrBuilder( 88 int index); 89 90 /** 91 * 92 * 93 * <pre> 94 * The cardinality of the pivot. The total number of rows for this pivot's 95 * fields regardless of how the parameters `offset` and `limit` are specified 96 * in the request. 97 * </pre> 98 * 99 * <code>int32 row_count = 2;</code> 100 * 101 * @return The rowCount. 102 */ getRowCount()103 int getRowCount(); 104 } 105