com.google.ads.googleads.v17.services.SuggestBrandsRequestOrBuilder 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/services/brand_suggestion_service.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.services;
public interface SuggestBrandsRequestOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.services.SuggestBrandsRequest)
com.google.protobuf.MessageOrBuilder {
/**
*
* Required. The ID of the customer onto which to apply the brand suggestion
* operation.
*
*
* string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The customerId.
*/
java.lang.String getCustomerId();
/**
*
* Required. The ID of the customer onto which to apply the brand suggestion
* operation.
*
*
* string customer_id = 1 [(.google.api.field_behavior) = REQUIRED];
* @return The bytes for customerId.
*/
com.google.protobuf.ByteString
getCustomerIdBytes();
/**
*
* Required. The prefix of a brand name.
*
*
* optional string brand_prefix = 2 [(.google.api.field_behavior) = REQUIRED];
* @return Whether the brandPrefix field is set.
*/
boolean hasBrandPrefix();
/**
*
* Required. The prefix of a brand name.
*
*
* optional string brand_prefix = 2 [(.google.api.field_behavior) = REQUIRED];
* @return The brandPrefix.
*/
java.lang.String getBrandPrefix();
/**
*
* Required. The prefix of a brand name.
*
*
* optional string brand_prefix = 2 [(.google.api.field_behavior) = REQUIRED];
* @return The bytes for brandPrefix.
*/
com.google.protobuf.ByteString
getBrandPrefixBytes();
/**
*
* Optional. Ids of the brands already selected by advertisers. They will be
* excluded in response. These are expected to be brand ids not brand names.
*
*
* repeated string selected_brands = 3 [(.google.api.field_behavior) = OPTIONAL];
* @return A list containing the selectedBrands.
*/
java.util.List
getSelectedBrandsList();
/**
*
* Optional. Ids of the brands already selected by advertisers. They will be
* excluded in response. These are expected to be brand ids not brand names.
*
*
* repeated string selected_brands = 3 [(.google.api.field_behavior) = OPTIONAL];
* @return The count of selectedBrands.
*/
int getSelectedBrandsCount();
/**
*
* Optional. Ids of the brands already selected by advertisers. They will be
* excluded in response. These are expected to be brand ids not brand names.
*
*
* repeated string selected_brands = 3 [(.google.api.field_behavior) = OPTIONAL];
* @param index The index of the element to return.
* @return The selectedBrands at the given index.
*/
java.lang.String getSelectedBrands(int index);
/**
*
* Optional. Ids of the brands already selected by advertisers. They will be
* excluded in response. These are expected to be brand ids not brand names.
*
*
* repeated string selected_brands = 3 [(.google.api.field_behavior) = OPTIONAL];
* @param index The index of the value to return.
* @return The bytes of the selectedBrands at the given index.
*/
com.google.protobuf.ByteString
getSelectedBrandsBytes(int index);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy