Interface KeywordPlanOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
KeywordPlan,KeywordPlan.Builder
public interface KeywordPlanOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description KeywordPlanForecastPeriodgetForecastPeriod()The date period used for forecasting the plan.KeywordPlanForecastPeriodOrBuildergetForecastPeriodOrBuilder()The date period used for forecasting the plan.longgetId()Output only.java.lang.StringgetName()The name of the keyword plan.com.google.protobuf.ByteStringgetNameBytes()The name of the keyword plan.java.lang.StringgetResourceName()Immutable.com.google.protobuf.ByteStringgetResourceNameBytes()Immutable.booleanhasForecastPeriod()The date period used for forecasting the plan.booleanhasId()Output only.booleanhasName()The name of the keyword plan.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getResourceName
java.lang.String getResourceName()
Immutable. The resource name of the Keyword Planner plan. KeywordPlan resource names have the form: `customers/{customer_id}/keywordPlans/{kp_plan_id}`string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }- Returns:
- The resourceName.
-
getResourceNameBytes
com.google.protobuf.ByteString getResourceNameBytes()
Immutable. The resource name of the Keyword Planner plan. KeywordPlan resource names have the form: `customers/{customer_id}/keywordPlans/{kp_plan_id}`string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }- Returns:
- The bytes for resourceName.
-
hasId
boolean hasId()
Output only. The ID of the keyword plan.
optional int64 id = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- Whether the id field is set.
-
getId
long getId()
Output only. The ID of the keyword plan.
optional int64 id = 5 [(.google.api.field_behavior) = OUTPUT_ONLY];- Returns:
- The id.
-
hasName
boolean hasName()
The name of the keyword plan. This field is required and should not be empty when creating new keyword plans.
optional string name = 6;- Returns:
- Whether the name field is set.
-
getName
java.lang.String getName()
The name of the keyword plan. This field is required and should not be empty when creating new keyword plans.
optional string name = 6;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
The name of the keyword plan. This field is required and should not be empty when creating new keyword plans.
optional string name = 6;- Returns:
- The bytes for name.
-
hasForecastPeriod
boolean hasForecastPeriod()
The date period used for forecasting the plan.
.google.ads.googleads.v10.resources.KeywordPlanForecastPeriod forecast_period = 4;- Returns:
- Whether the forecastPeriod field is set.
-
getForecastPeriod
KeywordPlanForecastPeriod getForecastPeriod()
The date period used for forecasting the plan.
.google.ads.googleads.v10.resources.KeywordPlanForecastPeriod forecast_period = 4;- Returns:
- The forecastPeriod.
-
getForecastPeriodOrBuilder
KeywordPlanForecastPeriodOrBuilder getForecastPeriodOrBuilder()
The date period used for forecasting the plan.
.google.ads.googleads.v10.resources.KeywordPlanForecastPeriod forecast_period = 4;
-
-