com.google.ads.googleads.v17.common.ImageAssetOrBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of google-ads-stubs-v17 Show documentation
Show all versions of google-ads-stubs-v17 Show documentation
Stubs for GAAPI version google-ads-stubs-v17
The newest version!
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: google/ads/googleads/v17/common/asset_types.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.common;
public interface ImageAssetOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.common.ImageAsset)
com.google.protobuf.MessageOrBuilder {
/**
*
* The raw bytes data of an image. This field is mutate only.
*
*
* optional bytes data = 5;
* @return Whether the data field is set.
*/
boolean hasData();
/**
*
* The raw bytes data of an image. This field is mutate only.
*
*
* optional bytes data = 5;
* @return The data.
*/
com.google.protobuf.ByteString getData();
/**
*
* File size of the image asset in bytes.
*
*
* optional int64 file_size = 6;
* @return Whether the fileSize field is set.
*/
boolean hasFileSize();
/**
*
* File size of the image asset in bytes.
*
*
* optional int64 file_size = 6;
* @return The fileSize.
*/
long getFileSize();
/**
*
* MIME type of the image asset.
*
*
* .google.ads.googleads.v17.enums.MimeTypeEnum.MimeType mime_type = 3;
* @return The enum numeric value on the wire for mimeType.
*/
int getMimeTypeValue();
/**
*
* MIME type of the image asset.
*
*
* .google.ads.googleads.v17.enums.MimeTypeEnum.MimeType mime_type = 3;
* @return The mimeType.
*/
com.google.ads.googleads.v17.enums.MimeTypeEnum.MimeType getMimeType();
/**
*
* Metadata for this image at its original size.
*
*
* .google.ads.googleads.v17.common.ImageDimension full_size = 4;
* @return Whether the fullSize field is set.
*/
boolean hasFullSize();
/**
*
* Metadata for this image at its original size.
*
*
* .google.ads.googleads.v17.common.ImageDimension full_size = 4;
* @return The fullSize.
*/
com.google.ads.googleads.v17.common.ImageDimension getFullSize();
/**
*
* Metadata for this image at its original size.
*
*
* .google.ads.googleads.v17.common.ImageDimension full_size = 4;
*/
com.google.ads.googleads.v17.common.ImageDimensionOrBuilder getFullSizeOrBuilder();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy