com.google.ads.googleads.v17.resources.KeywordPlanAdGroupOrBuilder 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/resources/keyword_plan_ad_group.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface KeywordPlanAdGroupOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.KeywordPlanAdGroup)
com.google.protobuf.MessageOrBuilder {
/**
*
* Immutable. The resource name of the Keyword Planner ad group.
* KeywordPlanAdGroup resource names have the form:
*
* `customers/{customer_id}/keywordPlanAdGroups/{kp_ad_group_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The resourceName.
*/
java.lang.String getResourceName();
/**
*
* Immutable. The resource name of the Keyword Planner ad group.
* KeywordPlanAdGroup resource names have the form:
*
* `customers/{customer_id}/keywordPlanAdGroups/{kp_ad_group_id}`
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
*
* The keyword plan campaign to which this ad group belongs.
*
*
* optional string keyword_plan_campaign = 6 [(.google.api.resource_reference) = { ... }
* @return Whether the keywordPlanCampaign field is set.
*/
boolean hasKeywordPlanCampaign();
/**
*
* The keyword plan campaign to which this ad group belongs.
*
*
* optional string keyword_plan_campaign = 6 [(.google.api.resource_reference) = { ... }
* @return The keywordPlanCampaign.
*/
java.lang.String getKeywordPlanCampaign();
/**
*
* The keyword plan campaign to which this ad group belongs.
*
*
* optional string keyword_plan_campaign = 6 [(.google.api.resource_reference) = { ... }
* @return The bytes for keywordPlanCampaign.
*/
com.google.protobuf.ByteString
getKeywordPlanCampaignBytes();
/**
*
* Output only. The ID of the keyword plan ad group.
*
*
* optional int64 id = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the id field is set.
*/
boolean hasId();
/**
*
* Output only. The ID of the keyword plan ad group.
*
*
* optional int64 id = 7 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The id.
*/
long getId();
/**
*
* The name of the keyword plan ad group.
*
* This field is required and should not be empty when creating keyword plan
* ad group.
*
*
* optional string name = 8;
* @return Whether the name field is set.
*/
boolean hasName();
/**
*
* The name of the keyword plan ad group.
*
* This field is required and should not be empty when creating keyword plan
* ad group.
*
*
* optional string name = 8;
* @return The name.
*/
java.lang.String getName();
/**
*
* The name of the keyword plan ad group.
*
* This field is required and should not be empty when creating keyword plan
* ad group.
*
*
* optional string name = 8;
* @return The bytes for name.
*/
com.google.protobuf.ByteString
getNameBytes();
/**
*
* A default ad group max cpc bid in micros in account currency for all
* biddable keywords under the keyword plan ad group.
* If not set, will inherit from parent campaign.
*
*
* optional int64 cpc_bid_micros = 9;
* @return Whether the cpcBidMicros field is set.
*/
boolean hasCpcBidMicros();
/**
*
* A default ad group max cpc bid in micros in account currency for all
* biddable keywords under the keyword plan ad group.
* If not set, will inherit from parent campaign.
*
*
* optional int64 cpc_bid_micros = 9;
* @return The cpcBidMicros.
*/
long getCpcBidMicros();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy