com.google.ads.googleads.v17.resources.AdGroupFeedOrBuilder 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/ad_group_feed.proto
// Protobuf Java Version: 3.25.3
package com.google.ads.googleads.v17.resources;
public interface AdGroupFeedOrBuilder extends
// @@protoc_insertion_point(interface_extends:google.ads.googleads.v17.resources.AdGroupFeed)
com.google.protobuf.MessageOrBuilder {
/**
* * Immutable. The resource name of the ad group feed.
* Ad group feed resource names have the form:
*
* `customers/{customer_id}/adGroupFeeds/{ad_group_id}~{feed_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 ad group feed.
* Ad group feed resource names have the form:
*
* `customers/{customer_id}/adGroupFeeds/{ad_group_id}~{feed_id}
*
*
* string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The bytes for resourceName.
*/
com.google.protobuf.ByteString
getResourceNameBytes();
/**
* * Immutable. The feed being linked to the ad group.
*
*
* optional string feed = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return Whether the feed field is set.
*/
boolean hasFeed();
/**
* * Immutable. The feed being linked to the ad group.
*
*
* optional string feed = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The feed.
*/
java.lang.String getFeed();
/**
* * Immutable. The feed being linked to the ad group.
*
*
* optional string feed = 7 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The bytes for feed.
*/
com.google.protobuf.ByteString
getFeedBytes();
/**
* * Immutable. The ad group being linked to the feed.
*
*
* optional string ad_group = 8 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return Whether the adGroup field is set.
*/
boolean hasAdGroup();
/**
* * Immutable. The ad group being linked to the feed.
*
*
* optional string ad_group = 8 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The adGroup.
*/
java.lang.String getAdGroup();
/**
* * Immutable. The ad group being linked to the feed.
*
*
* optional string ad_group = 8 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... }
* @return The bytes for adGroup.
*/
com.google.protobuf.ByteString
getAdGroupBytes();
/**
* * Indicates which placeholder types the feed may populate under the connected
* ad group. Required.
*
*
* repeated .google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 4;
* @return A list containing the placeholderTypes.
*/
java.util.List getPlaceholderTypesList();
/**
* * Indicates which placeholder types the feed may populate under the connected
* ad group. Required.
*
*
* repeated .google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 4;
* @return The count of placeholderTypes.
*/
int getPlaceholderTypesCount();
/**
* * Indicates which placeholder types the feed may populate under the connected
* ad group. Required.
*
*
* repeated .google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 4;
* @param index The index of the element to return.
* @return The placeholderTypes at the given index.
*/
com.google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType getPlaceholderTypes(int index);
/**
* * Indicates which placeholder types the feed may populate under the connected
* ad group. Required.
*
*
* repeated .google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 4;
* @return A list containing the enum numeric values on the wire for placeholderTypes.
*/
java.util.List
getPlaceholderTypesValueList();
/**
* * Indicates which placeholder types the feed may populate under the connected
* ad group. Required.
*
*
* repeated .google.ads.googleads.v17.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 4;
* @param index The index of the value to return.
* @return The enum numeric value on the wire of placeholderTypes at the given index.
*/
int getPlaceholderTypesValue(int index);
/**
* * Matching function associated with the AdGroupFeed.
* The matching function is used to filter the set of feed items selected.
* Required.
*
*
* .google.ads.googleads.v17.common.MatchingFunction matching_function = 5;
* @return Whether the matchingFunction field is set.
*/
boolean hasMatchingFunction();
/**
* * Matching function associated with the AdGroupFeed.
* The matching function is used to filter the set of feed items selected.
* Required.
*
*
* .google.ads.googleads.v17.common.MatchingFunction matching_function = 5;
* @return The matchingFunction.
*/
com.google.ads.googleads.v17.common.MatchingFunction getMatchingFunction();
/**
* * Matching function associated with the AdGroupFeed.
* The matching function is used to filter the set of feed items selected.
* Required.
*
*
* .google.ads.googleads.v17.common.MatchingFunction matching_function = 5;
*/
com.google.ads.googleads.v17.common.MatchingFunctionOrBuilder getMatchingFunctionOrBuilder();
/**
* * Output only. Status of the ad group feed.
* This field is read-only.
*
*
* .google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus status = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The enum numeric value on the wire for status.
*/
int getStatusValue();
/**
* * Output only. Status of the ad group feed.
* This field is read-only.
*
*
* .google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus status = 6 [(.google.api.field_behavior) = OUTPUT_ONLY];
* @return The status.
*/
com.google.ads.googleads.v17.enums.FeedLinkStatusEnum.FeedLinkStatus getStatus();
}