com.google.ads.googleads.v10.common.ImageAdInfoOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v10 Show documentation
Show all versions of google-ads-stubs-v10 Show documentation
Stubs for GAAPI version google-ads-stubs-v10
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v10/common/ad_type_infos.proto
package com.google.ads.googleads.v10.common;
public interface ImageAdInfoOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v10.common.ImageAdInfo)
com.google.protobuf.MessageOrBuilder {
/**
*
* Width in pixels of the full size image.
*
*
* optional int64 pixel_width = 15;
* @return Whether the pixelWidth field is set.
*/
boolean hasPixelWidth();
/**
*
* Width in pixels of the full size image.
*
*
* optional int64 pixel_width = 15;
* @return The pixelWidth.
*/
long getPixelWidth();
/**
*
* Height in pixels of the full size image.
*
*
* optional int64 pixel_height = 16;
* @return Whether the pixelHeight field is set.
*/
boolean hasPixelHeight();
/**
*
* Height in pixels of the full size image.
*
*
* optional int64 pixel_height = 16;
* @return The pixelHeight.
*/
long getPixelHeight();
/**
*
* URL of the full size image.
*
*
* optional string image_url = 17;
* @return Whether the imageUrl field is set.
*/
boolean hasImageUrl();
/**
*
* URL of the full size image.
*
*
* optional string image_url = 17;
* @return The imageUrl.
*/
java.lang.String getImageUrl();
/**
*
* URL of the full size image.
*
*
* optional string image_url = 17;
* @return The bytes for imageUrl.
*/
com.google.protobuf.ByteString
getImageUrlBytes();
/**
*
* Width in pixels of the preview size image.
*
*
* optional int64 preview_pixel_width = 18;
* @return Whether the previewPixelWidth field is set.
*/
boolean hasPreviewPixelWidth();
/**
*
* Width in pixels of the preview size image.
*
*
* optional int64 preview_pixel_width = 18;
* @return The previewPixelWidth.
*/
long getPreviewPixelWidth();
/**
*
* Height in pixels of the preview size image.
*
*
* optional int64 preview_pixel_height = 19;
* @return Whether the previewPixelHeight field is set.
*/
boolean hasPreviewPixelHeight();
/**
*
* Height in pixels of the preview size image.
*
*
* optional int64 preview_pixel_height = 19;
* @return The previewPixelHeight.
*/
long getPreviewPixelHeight();
/**
*
* URL of the preview size image.
*
*
* optional string preview_image_url = 20;
* @return Whether the previewImageUrl field is set.
*/
boolean hasPreviewImageUrl();
/**
*
* URL of the preview size image.
*
*
* optional string preview_image_url = 20;
* @return The previewImageUrl.
*/
java.lang.String getPreviewImageUrl();
/**
*
* URL of the preview size image.
*
*
* optional string preview_image_url = 20;
* @return The bytes for previewImageUrl.
*/
com.google.protobuf.ByteString
getPreviewImageUrlBytes();
/**
*
* The mime type of the image.
*
*
* .google.ads.googleads.v10.enums.MimeTypeEnum.MimeType mime_type = 10;
* @return The enum numeric value on the wire for mimeType.
*/
int getMimeTypeValue();
/**
*
* The mime type of the image.
*
*
* .google.ads.googleads.v10.enums.MimeTypeEnum.MimeType mime_type = 10;
* @return The mimeType.
*/
com.google.ads.googleads.v10.enums.MimeTypeEnum.MimeType getMimeType();
/**
*
* The name of the image. If the image was created from a MediaFile, this is
* the MediaFile's name. If the image was created from bytes, this is empty.
*
*
* optional string name = 21;
* @return Whether the name field is set.
*/
boolean hasName();
/**
*
* The name of the image. If the image was created from a MediaFile, this is
* the MediaFile's name. If the image was created from bytes, this is empty.
*
*
* optional string name = 21;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the image. If the image was created from a MediaFile, this is
* the MediaFile's name. If the image was created from bytes, this is empty.
*
*
* optional string name = 21;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* The MediaFile resource to use for the image.
*
*
* string media_file = 12;
* @return Whether the mediaFile field is set.
*/
boolean hasMediaFile();
/**
*
* The MediaFile resource to use for the image.
*
*
* string media_file = 12;
* @return The mediaFile.
*/
java.lang.String getMediaFile();
/**
*
* The MediaFile resource to use for the image.
*
*
* string media_file = 12;
* @return The bytes for mediaFile.
*/
com.google.protobuf.ByteString
getMediaFileBytes();
/**
*
* Raw image data as bytes.
*
*
* bytes data = 13;
* @return Whether the data field is set.
*/
boolean hasData();
/**
*
* Raw image data as bytes.
*
*
* bytes data = 13;
* @return The data.
*/
com.google.protobuf.ByteString getData();
/**
*
* An ad ID to copy the image from.
*
*
* int64 ad_id_to_copy_image_from = 14;
* @return Whether the adIdToCopyImageFrom field is set.
*/
boolean hasAdIdToCopyImageFrom();
/**
*
* An ad ID to copy the image from.
*
*
* int64 ad_id_to_copy_image_from = 14;
* @return The adIdToCopyImageFrom.
*/
long getAdIdToCopyImageFrom();
public com.google.ads.googleads.v10.common.ImageAdInfo.ImageCase getImageCase();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy