com.google.ads.googleads.v17.resources.KeywordPlanCampaignKeywordOrBuilder 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_campaign_keyword.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface KeywordPlanCampaignKeywordOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.KeywordPlanCampaignKeyword)
com.google.protobuf.MessageOrBuilder {
/**
*
* Immutable. The resource name of the Keyword Plan Campaign keyword.
* KeywordPlanCampaignKeyword resource names have the form:
*
* `customers/{customer_id}/keywordPlanCampaignKeywords/{kp_campaign_keyword_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 Plan Campaign keyword.
* KeywordPlanCampaignKeyword resource names have the form:
*
* `customers/{customer_id}/keywordPlanCampaignKeywords/{kp_campaign_keyword_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 negative keyword belongs.
*
*
* optional string keyword_plan_campaign = 8 [(.google.api.resource_reference) = { ... }
* @return Whether the keywordPlanCampaign field is set.
*/
boolean hasKeywordPlanCampaign();
/**
*
* The Keyword Plan campaign to which this negative keyword belongs.
*
*
* optional string keyword_plan_campaign = 8 [(.google.api.resource_reference) = { ... }
* @return The keywordPlanCampaign.
*/
java.lang.String getKeywordPlanCampaign();
/**
*
* The Keyword Plan campaign to which this negative keyword belongs.
*
*
* optional string keyword_plan_campaign = 8 [(.google.api.resource_reference) = { ... }
* @return The bytes for keywordPlanCampaign.
*/
com.google.protobuf.ByteString
getKeywordPlanCampaignBytes();
/**
*
* Output only. The ID of the Keyword Plan negative keyword.
*
*
* optional int64 id = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return Whether the id field is set.
*/
boolean hasId();
/**
*
* Output only. The ID of the Keyword Plan negative keyword.
*
*
* optional int64 id = 9 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The id.
*/
long getId();
/**
*
* The keyword text.
*
*
* optional string text = 10;
* @return Whether the text field is set.
*/
boolean hasText();
/**
*
* The keyword text.
*
*
* optional string text = 10;
* @return The text.
*/
java.lang.String getText();
/**
*
* The keyword text.
*
*
* optional string text = 10;
* @return The bytes for text.
*/
com.google.protobuf.ByteString
getTextBytes();
/**
*
* The keyword match type.
*
*
* .google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType match_type = 5;
* @return The enum numeric value on the wire for matchType.
*/
int getMatchTypeValue();
/**
*
* The keyword match type.
*
*
* .google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType match_type = 5;
* @return The matchType.
*/
com.google.ads.googleads.v17.enums.KeywordMatchTypeEnum.KeywordMatchType getMatchType();
/**
*
* Immutable. If true, the keyword is negative.
* Must be set to true. Only negative campaign keywords are supported.
*
*
* optional bool negative = 11 [(.google.api.field_behavior) = IMMUTABLE];
* @return Whether the negative field is set.
*/
boolean hasNegative();
/**
*
* Immutable. If true, the keyword is negative.
* Must be set to true. Only negative campaign keywords are supported.
*
*
* optional bool negative = 11 [(.google.api.field_behavior) = IMMUTABLE];
* @return The negative.
*/
boolean getNegative();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy