com.google.apps.card.v1.ImageComponentOrBuilder 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 ImageComponentOrBuilder
extends
// @@protoc_insertion_point(interface_extends:google.apps.card.v1.ImageComponent)
com.google.protobuf.MessageOrBuilder {
/**
*
*
*
* The image URL.
*
*
* string image_uri = 1;
*
* @return The imageUri.
*/
java.lang.String getImageUri();
/**
*
*
*
* The image URL.
*
*
* string image_uri = 1;
*
* @return The bytes for imageUri.
*/
com.google.protobuf.ByteString getImageUriBytes();
/**
*
*
*
* The accessibility label for the image.
*
*
* string alt_text = 2;
*
* @return The altText.
*/
java.lang.String getAltText();
/**
*
*
*
* The accessibility label for the image.
*
*
* string alt_text = 2;
*
* @return The bytes for altText.
*/
com.google.protobuf.ByteString getAltTextBytes();
/**
*
*
*
* The crop style to apply to the image.
*
*
* .google.apps.card.v1.ImageCropStyle crop_style = 3;
*
* @return Whether the cropStyle field is set.
*/
boolean hasCropStyle();
/**
*
*
*
* The crop style to apply to the image.
*
*
* .google.apps.card.v1.ImageCropStyle crop_style = 3;
*
* @return The cropStyle.
*/
com.google.apps.card.v1.ImageCropStyle getCropStyle();
/**
*
*
*
* The crop style to apply to the image.
*
*
* .google.apps.card.v1.ImageCropStyle crop_style = 3;
*/
com.google.apps.card.v1.ImageCropStyleOrBuilder getCropStyleOrBuilder();
/**
*
*
*
* The border style to apply to the image.
*
*
* .google.apps.card.v1.BorderStyle border_style = 4;
*
* @return Whether the borderStyle field is set.
*/
boolean hasBorderStyle();
/**
*
*
*
* The border style to apply to the image.
*
*
* .google.apps.card.v1.BorderStyle border_style = 4;
*
* @return The borderStyle.
*/
com.google.apps.card.v1.BorderStyle getBorderStyle();
/**
*
*
*
* The border style to apply to the image.
*
*
* .google.apps.card.v1.BorderStyle border_style = 4;
*/
com.google.apps.card.v1.BorderStyleOrBuilder getBorderStyleOrBuilder();
}