com.google.apps.card.v1.GridOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of proto-google-common-protos Show documentation
Show all versions of proto-google-common-protos Show documentation
PROTO library for proto-google-common-protos
/*
* 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/apps/card/v1/card.proto
// Protobuf Java Version: 3.25.4
package com.google.apps.card.v1;
public interface GridOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.apps.card.v1.Grid)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The text that displays in the grid header.
*
*
* string title = 1;
*
* @return The title.
*/
java.lang.String getTitle();
/**
*
*
*
* The text that displays in the grid header.
*
*
* string title = 1;
*
* @return The bytes for title.
*/
com.google.protobuf.ByteString getTitleBytes();
/**
*
*
*
* The items to display in the grid.
*
*
* repeated .google.apps.card.v1.Grid.GridItem items = 2;
*/
java.util.List getItemsList();
/**
*
*
*
* The items to display in the grid.
*
*
* repeated .google.apps.card.v1.Grid.GridItem items = 2;
*/
com.google.apps.card.v1.Grid.GridItem getItems(int index);
/**
*
*
*
* The items to display in the grid.
*
*
* repeated .google.apps.card.v1.Grid.GridItem items = 2;
*/
int getItemsCount();
/**
*
*
*
* The items to display in the grid.
*
*
* repeated .google.apps.card.v1.Grid.GridItem items = 2;
*/
java.util.List extends com.google.apps.card.v1.Grid.GridItemOrBuilder> getItemsOrBuilderList();
/**
*
*
*
* The items to display in the grid.
*
*
* repeated .google.apps.card.v1.Grid.GridItem items = 2;
*/
com.google.apps.card.v1.Grid.GridItemOrBuilder getItemsOrBuilder(int index);
/**
*
*
*
* The border style to apply to each grid item.
*
*
* .google.apps.card.v1.BorderStyle border_style = 3;
*
* @return Whether the borderStyle field is set.
*/
boolean hasBorderStyle();
/**
*
*
*
* The border style to apply to each grid item.
*
*
* .google.apps.card.v1.BorderStyle border_style = 3;
*
* @return The borderStyle.
*/
com.google.apps.card.v1.BorderStyle getBorderStyle();
/**
*
*
*
* The border style to apply to each grid item.
*
*
* .google.apps.card.v1.BorderStyle border_style = 3;
*/
com.google.apps.card.v1.BorderStyleOrBuilder getBorderStyleOrBuilder();
/**
*
*
*
* The number of columns to display in the grid. A default value
* is used if this field isn't specified, and that default value is
* different depending on where the grid is shown (dialog versus companion).
*
*
* int32 column_count = 4;
*
* @return The columnCount.
*/
int getColumnCount();
/**
*
*
*
* This callback is reused by each individual grid item, but with the
* item's identifier and index in the items list added to the callback's
* parameters.
*
*
* .google.apps.card.v1.OnClick on_click = 5;
*
* @return Whether the onClick field is set.
*/
boolean hasOnClick();
/**
*
*
*
* This callback is reused by each individual grid item, but with the
* item's identifier and index in the items list added to the callback's
* parameters.
*
*
* .google.apps.card.v1.OnClick on_click = 5;
*
* @return The onClick.
*/
com.google.apps.card.v1.OnClick getOnClick();
/**
*
*
*
* This callback is reused by each individual grid item, but with the
* item's identifier and index in the items list added to the callback's
* parameters.
*
*
* .google.apps.card.v1.OnClick on_click = 5;
*/
com.google.apps.card.v1.OnClickOrBuilder getOnClickOrBuilder();
}