repo
stringlengths
7
58
path
stringlengths
12
218
func_name
stringlengths
3
140
original_string
stringlengths
73
34.1k
language
stringclasses
1 value
code
stringlengths
73
34.1k
code_tokens
list
docstring
stringlengths
3
16k
docstring_tokens
list
sha
stringlengths
40
40
url
stringlengths
105
339
partition
stringclasses
1 value
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/CallFeedItem.java
CallFeedItem.getCallConversionType
public com.google.api.ads.adwords.axis.v201809.cm.CallConversionType getCallConversionType() { return callConversionType; }
java
public com.google.api.ads.adwords.axis.v201809.cm.CallConversionType getCallConversionType() { return callConversionType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "CallConversionType", "getCallConversionType", "(", ")", "{", "return", "callConversionType", ";", "}" ]
Gets the callConversionType value for this CallFeedItem. @return callConversionType * Call conversion type. To clear this field, set a CallConversionType with a value of null in its conversionTypeId field. This value should not be set if {@linkPlain CallFeedItem#disableCallConversionTracking} is true.
[ "Gets", "the", "callConversionType", "value", "for", "this", "CallFeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/CallFeedItem.java#L213-L215
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java
ProductPartitionTreeImpl.createNonEmptyAdGroupTree
private static ProductPartitionTreeImpl createNonEmptyAdGroupTree(Long adGroupId, ListMultimap<Long, AdGroupCriterion> parentIdMap) { Preconditions.checkNotNull(adGroupId, "Null ad group ID"); Preconditions.checkArgument(!parentIdMap.isEmpty(), "parentIdMap passed for ad group ID %s is empty", adG...
java
private static ProductPartitionTreeImpl createNonEmptyAdGroupTree(Long adGroupId, ListMultimap<Long, AdGroupCriterion> parentIdMap) { Preconditions.checkNotNull(adGroupId, "Null ad group ID"); Preconditions.checkArgument(!parentIdMap.isEmpty(), "parentIdMap passed for ad group ID %s is empty", adG...
[ "private", "static", "ProductPartitionTreeImpl", "createNonEmptyAdGroupTree", "(", "Long", "adGroupId", ",", "ListMultimap", "<", "Long", ",", "AdGroupCriterion", ">", "parentIdMap", ")", "{", "Preconditions", ".", "checkNotNull", "(", "adGroupId", ",", "\"Null ad group...
Returns a new tree based on a non-empty collection of ad group criteria. All parameters required. @param adGroupId the ID of the ad group @param parentIdMap the multimap from parent product partition ID to child criteria @return a new ProductPartitionTree
[ "Returns", "a", "new", "tree", "based", "on", "a", "non", "-", "empty", "collection", "of", "ad", "group", "criteria", ".", "All", "parameters", "required", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java#L286-L318
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java
ProductPartitionTreeImpl.createEmptyAdGroupTree
private static ProductPartitionTreeImpl createEmptyAdGroupTree(Long adGroupId, BiddingStrategyConfiguration biddingStrategyConfig) { Preconditions.checkNotNull(adGroupId, "Null ad group ID"); Preconditions.checkNotNull(biddingStrategyConfig, "Null bidding strategy configuration"); ProductPartitionNode...
java
private static ProductPartitionTreeImpl createEmptyAdGroupTree(Long adGroupId, BiddingStrategyConfiguration biddingStrategyConfig) { Preconditions.checkNotNull(adGroupId, "Null ad group ID"); Preconditions.checkNotNull(biddingStrategyConfig, "Null bidding strategy configuration"); ProductPartitionNode...
[ "private", "static", "ProductPartitionTreeImpl", "createEmptyAdGroupTree", "(", "Long", "adGroupId", ",", "BiddingStrategyConfiguration", "biddingStrategyConfig", ")", "{", "Preconditions", ".", "checkNotNull", "(", "adGroupId", ",", "\"Null ad group ID\"", ")", ";", "Preco...
Returns a new empty tree. @param adGroupId the ID of the ad group @param biddingStrategyConfig the bidding strategy configuration of the ad group
[ "Returns", "a", "new", "empty", "tree", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java#L326-L333
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java
ProductPartitionTreeImpl.createSetBidOperation
private OperationPair createSetBidOperation(ProductPartitionNode node) { Preconditions.checkNotNull(node.getProductPartitionId(), "Node for SET operation has no partition ID: %s", node); Preconditions.checkArgument(node.getProductPartitionId().longValue() >= 0L, "Node for SET operation has a neg...
java
private OperationPair createSetBidOperation(ProductPartitionNode node) { Preconditions.checkNotNull(node.getProductPartitionId(), "Node for SET operation has no partition ID: %s", node); Preconditions.checkArgument(node.getProductPartitionId().longValue() >= 0L, "Node for SET operation has a neg...
[ "private", "OperationPair", "createSetBidOperation", "(", "ProductPartitionNode", "node", ")", "{", "Preconditions", ".", "checkNotNull", "(", "node", ".", "getProductPartitionId", "(", ")", ",", "\"Node for SET operation has no partition ID: %s\"", ",", "node", ")", ";",...
Returns a SET operation for the specified node.
[ "Returns", "a", "SET", "operation", "for", "the", "specified", "node", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java#L494-L505
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java
ProductPartitionTreeImpl.createAddOperations
private List<OperationPair> createAddOperations(ProductPartitionNode node) { AdGroupCriterionOperation addOp = new AdGroupCriterionOperation(); addOp.setOperator(Operator.ADD); // Set the node's ID to a new temporary ID. node.setProductPartitionId(idGenerator.next()); addOp.setOperand(ProductParti...
java
private List<OperationPair> createAddOperations(ProductPartitionNode node) { AdGroupCriterionOperation addOp = new AdGroupCriterionOperation(); addOp.setOperator(Operator.ADD); // Set the node's ID to a new temporary ID. node.setProductPartitionId(idGenerator.next()); addOp.setOperand(ProductParti...
[ "private", "List", "<", "OperationPair", ">", "createAddOperations", "(", "ProductPartitionNode", "node", ")", "{", "AdGroupCriterionOperation", "addOp", "=", "new", "AdGroupCriterionOperation", "(", ")", ";", "addOp", ".", "setOperator", "(", "Operator", ".", "ADD"...
Creates ADD operations for the node and ALL of its children and adds them to the provided operations list.
[ "Creates", "ADD", "operations", "for", "the", "node", "and", "ALL", "of", "its", "children", "and", "adds", "them", "to", "the", "provided", "operations", "list", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java#L511-L529
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java
ProductPartitionTreeImpl.createRemoveOperation
private OperationPair createRemoveOperation(ProductPartitionNode node) { Preconditions.checkNotNull(node.getProductPartitionId(), "Node for REMOVE operation has no partition ID: %s", node); Preconditions.checkArgument(node.getProductPartitionId().longValue() >= 0L, "Node for REMOVE operation has...
java
private OperationPair createRemoveOperation(ProductPartitionNode node) { Preconditions.checkNotNull(node.getProductPartitionId(), "Node for REMOVE operation has no partition ID: %s", node); Preconditions.checkArgument(node.getProductPartitionId().longValue() >= 0L, "Node for REMOVE operation has...
[ "private", "OperationPair", "createRemoveOperation", "(", "ProductPartitionNode", "node", ")", "{", "Preconditions", ".", "checkNotNull", "(", "node", ".", "getProductPartitionId", "(", ")", ",", "\"Node for REMOVE operation has no partition ID: %s\"", ",", "node", ")", "...
Returns a REMOVE operation for the specified node.
[ "Returns", "a", "REMOVE", "operation", "for", "the", "specified", "node", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java#L534-L545
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java
ProductPartitionTreeImpl.getBid
private static Money getBid(BiddableAdGroupCriterion biddableCriterion) { BiddingStrategyConfiguration biddingConfig = biddableCriterion.getBiddingStrategyConfiguration(); Money cpcBidAmount = null; if (biddingConfig.getBids() != null) { for (Bids bid : biddingConfig.getBids()) { if (b...
java
private static Money getBid(BiddableAdGroupCriterion biddableCriterion) { BiddingStrategyConfiguration biddingConfig = biddableCriterion.getBiddingStrategyConfiguration(); Money cpcBidAmount = null; if (biddingConfig.getBids() != null) { for (Bids bid : biddingConfig.getBids()) { if (b...
[ "private", "static", "Money", "getBid", "(", "BiddableAdGroupCriterion", "biddableCriterion", ")", "{", "BiddingStrategyConfiguration", "biddingConfig", "=", "biddableCriterion", ".", "getBiddingStrategyConfiguration", "(", ")", ";", "Money", "cpcBidAmount", "=", "null", ...
Returns the criterion-level bid, or null if no such bid exists.
[ "Returns", "the", "criterion", "-", "level", "bid", "or", "null", "if", "no", "such", "bid", "exists", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/shopping/ProductPartitionTreeImpl.java#L652-L668
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/VideoMetadata.java
VideoMetadata.getScalableType
public com.google.api.ads.admanager.axis.v201902.ScalableType getScalableType() { return scalableType; }
java
public com.google.api.ads.admanager.axis.v201902.ScalableType getScalableType() { return scalableType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "ScalableType", "getScalableType", "(", ")", "{", "return", "scalableType", ";", "}" ]
Gets the scalableType value for this VideoMetadata. @return scalableType * The scalable type of the asset. This attribute is required.
[ "Gets", "the", "scalableType", "value", "for", "this", "VideoMetadata", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/VideoMetadata.java#L112-L114
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/VideoMetadata.java
VideoMetadata.setDeliveryType
public void setDeliveryType(com.google.api.ads.admanager.axis.v201902.VideoDeliveryType deliveryType) { this.deliveryType = deliveryType; }
java
public void setDeliveryType(com.google.api.ads.admanager.axis.v201902.VideoDeliveryType deliveryType) { this.deliveryType = deliveryType; }
[ "public", "void", "setDeliveryType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "VideoDeliveryType", "deliveryType", ")", "{", "this", ".", "deliveryType", "=", "deliveryType", ";", "}" ]
Sets the deliveryType value for this VideoMetadata. @param deliveryType * The delivery type of the asset. This attribute is required.
[ "Sets", "the", "deliveryType", "value", "for", "this", "VideoMetadata", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/VideoMetadata.java#L282-L284
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdown.java
ForecastBreakdown.getStartTime
public com.google.api.ads.admanager.axis.v201811.DateTime getStartTime() { return startTime; }
java
public com.google.api.ads.admanager.axis.v201811.DateTime getStartTime() { return startTime; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "DateTime", "getStartTime", "(", ")", "{", "return", "startTime", ";", "}" ]
Gets the startTime value for this ForecastBreakdown. @return startTime * The starting time of the represented breakdown.
[ "Gets", "the", "startTime", "value", "for", "this", "ForecastBreakdown", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdown.java#L67-L69
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdown.java
ForecastBreakdown.setStartTime
public void setStartTime(com.google.api.ads.admanager.axis.v201811.DateTime startTime) { this.startTime = startTime; }
java
public void setStartTime(com.google.api.ads.admanager.axis.v201811.DateTime startTime) { this.startTime = startTime; }
[ "public", "void", "setStartTime", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "DateTime", "startTime", ")", "{", "this", ".", "startTime", "=", "startTime", ";", "}" ]
Sets the startTime value for this ForecastBreakdown. @param startTime * The starting time of the represented breakdown.
[ "Sets", "the", "startTime", "value", "for", "this", "ForecastBreakdown", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdown.java#L77-L79
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java
AvailabilityForecast.getTargetingCriteriaBreakdowns
public com.google.api.ads.admanager.axis.v201811.TargetingCriteriaBreakdown[] getTargetingCriteriaBreakdowns() { return targetingCriteriaBreakdowns; }
java
public com.google.api.ads.admanager.axis.v201811.TargetingCriteriaBreakdown[] getTargetingCriteriaBreakdowns() { return targetingCriteriaBreakdowns; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "TargetingCriteriaBreakdown", "[", "]", "getTargetingCriteriaBreakdowns", "(", ")", "{", "return", "targetingCriteriaBreakdowns", ";", "}" ]
Gets the targetingCriteriaBreakdowns value for this AvailabilityForecast. @return targetingCriteriaBreakdowns * The forecast result broken down by the targeting of the forecasted line item.
[ "Gets", "the", "targetingCriteriaBreakdowns", "value", "for", "this", "AvailabilityForecast", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java#L615-L617
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java
AvailabilityForecast.getContendingLineItems
public com.google.api.ads.admanager.axis.v201811.ContendingLineItem[] getContendingLineItems() { return contendingLineItems; }
java
public com.google.api.ads.admanager.axis.v201811.ContendingLineItem[] getContendingLineItems() { return contendingLineItems; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "ContendingLineItem", "[", "]", "getContendingLineItems", "(", ")", "{", "return", "contendingLineItems", ";", "}" ]
Gets the contendingLineItems value for this AvailabilityForecast. @return contendingLineItems * List of {@link ContendingLineItem contending line items} for this forecast.
[ "Gets", "the", "contendingLineItems", "value", "for", "this", "AvailabilityForecast", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java#L645-L647
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java
AvailabilityForecast.getAlternativeUnitTypeForecasts
public com.google.api.ads.admanager.axis.v201811.AlternativeUnitTypeForecast[] getAlternativeUnitTypeForecasts() { return alternativeUnitTypeForecasts; }
java
public com.google.api.ads.admanager.axis.v201811.AlternativeUnitTypeForecast[] getAlternativeUnitTypeForecasts() { return alternativeUnitTypeForecasts; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "AlternativeUnitTypeForecast", "[", "]", "getAlternativeUnitTypeForecasts", "(", ")", "{", "return", "alternativeUnitTypeForecasts", ";", "}" ]
Gets the alternativeUnitTypeForecasts value for this AvailabilityForecast. @return alternativeUnitTypeForecasts * Views of this forecast, with alternative unit types.
[ "Gets", "the", "alternativeUnitTypeForecasts", "value", "for", "this", "AvailabilityForecast", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java#L674-L676
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java
AvailabilityForecast.getDemographicBreakdowns
public com.google.api.ads.admanager.axis.v201811.GrpDemographicBreakdown[] getDemographicBreakdowns() { return demographicBreakdowns; }
java
public com.google.api.ads.admanager.axis.v201811.GrpDemographicBreakdown[] getDemographicBreakdowns() { return demographicBreakdowns; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "GrpDemographicBreakdown", "[", "]", "getDemographicBreakdowns", "(", ")", "{", "return", "demographicBreakdowns", ";", "}" ]
Gets the demographicBreakdowns value for this AvailabilityForecast. @return demographicBreakdowns * The forecast result broken down by demographics.
[ "Gets", "the", "demographicBreakdowns", "value", "for", "this", "AvailabilityForecast", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/AvailabilityForecast.java#L702-L704
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Company.java
Company.getSettings
public com.google.api.ads.admanager.axis.v201902.CompanySettings getSettings() { return settings; }
java
public com.google.api.ads.admanager.axis.v201902.CompanySettings getSettings() { return settings; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "CompanySettings", "getSettings", "(", ")", "{", "return", "settings", ";", "}" ]
Gets the settings value for this Company. @return settings * Specifies the default billing settings of this {@code Company}. This attribute is optional.
[ "Gets", "the", "settings", "value", "for", "this", "Company", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Company.java#L428-L430
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Company.java
Company.setSettings
public void setSettings(com.google.api.ads.admanager.axis.v201902.CompanySettings settings) { this.settings = settings; }
java
public void setSettings(com.google.api.ads.admanager.axis.v201902.CompanySettings settings) { this.settings = settings; }
[ "public", "void", "setSettings", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "CompanySettings", "settings", ")", "{", "this", ".", "settings", "=", "settings", ";", "}" ]
Sets the settings value for this Company. @param settings * Specifies the default billing settings of this {@code Company}. This attribute is optional.
[ "Sets", "the", "settings", "value", "for", "this", "Company", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Company.java#L439-L441
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Company.java
Company.setViewabilityProvider
public void setViewabilityProvider(com.google.api.ads.admanager.axis.v201902.ViewabilityProvider viewabilityProvider) { this.viewabilityProvider = viewabilityProvider; }
java
public void setViewabilityProvider(com.google.api.ads.admanager.axis.v201902.ViewabilityProvider viewabilityProvider) { this.viewabilityProvider = viewabilityProvider; }
[ "public", "void", "setViewabilityProvider", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "ViewabilityProvider", "viewabilityProvider", ")", "{", "this", ".", "viewabilityProvider", "=", "viewabilityProvider...
Sets the viewabilityProvider value for this Company. @param viewabilityProvider * Info required for when Company Type is VIEWABILITY_PROVIDER.
[ "Sets", "the", "viewabilityProvider", "value", "for", "this", "Company", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Company.java#L583-L585
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/MasterPlaylistSettings.java
MasterPlaylistSettings.getRefreshType
public com.google.api.ads.admanager.axis.v201902.RefreshType getRefreshType() { return refreshType; }
java
public com.google.api.ads.admanager.axis.v201902.RefreshType getRefreshType() { return refreshType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "RefreshType", "getRefreshType", "(", ")", "{", "return", "refreshType", ";", "}" ]
Gets the refreshType value for this MasterPlaylistSettings. @return refreshType * Indicates how the master playlist gets refreshed. This field is optional and defaults to {@link RefreshType#AUTOMATIC}.
[ "Gets", "the", "refreshType", "value", "for", "this", "MasterPlaylistSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/MasterPlaylistSettings.java#L57-L59
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/MasterPlaylistSettings.java
MasterPlaylistSettings.setRefreshType
public void setRefreshType(com.google.api.ads.admanager.axis.v201902.RefreshType refreshType) { this.refreshType = refreshType; }
java
public void setRefreshType(com.google.api.ads.admanager.axis.v201902.RefreshType refreshType) { this.refreshType = refreshType; }
[ "public", "void", "setRefreshType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "RefreshType", "refreshType", ")", "{", "this", ".", "refreshType", "=", "refreshType", ";", "}" ]
Sets the refreshType value for this MasterPlaylistSettings. @param refreshType * Indicates how the master playlist gets refreshed. This field is optional and defaults to {@link RefreshType#AUTOMATIC}.
[ "Sets", "the", "refreshType", "value", "for", "this", "MasterPlaylistSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/MasterPlaylistSettings.java#L69-L71
train
googleads/googleads-java-lib
modules/ads_lib_appengine/src/main/java/com/google/api/ads/common/lib/soap/jaxws/JaxWsSoapContextHandler.java
JaxWsSoapContextHandler.captureSoapXml
private void captureSoapXml(SOAPMessageContext context) { SOAPMessage message = context.getMessage(); if ((Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY)) { // Outbound message (request). requestInfoXPathSet.parseMessage(lastRequestInfo, message); } else { // Inbound messag...
java
private void captureSoapXml(SOAPMessageContext context) { SOAPMessage message = context.getMessage(); if ((Boolean) context.get(MessageContext.MESSAGE_OUTBOUND_PROPERTY)) { // Outbound message (request). requestInfoXPathSet.parseMessage(lastRequestInfo, message); } else { // Inbound messag...
[ "private", "void", "captureSoapXml", "(", "SOAPMessageContext", "context", ")", "{", "SOAPMessage", "message", "=", "context", ".", "getMessage", "(", ")", ";", "if", "(", "(", "Boolean", ")", "context", ".", "get", "(", "MessageContext", ".", "MESSAGE_OUTBOUN...
Captures the raw XML message behind a SOAP interaction. @param context the context of the SOAP message passing through this handler
[ "Captures", "the", "raw", "XML", "message", "behind", "a", "SOAP", "interaction", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib_appengine/src/main/java/com/google/api/ads/common/lib/soap/jaxws/JaxWsSoapContextHandler.java#L132-L141
train
googleads/googleads-java-lib
modules/ads_lib_appengine/src/main/java/com/google/api/ads/common/lib/soap/jaxws/JaxWsSoapContextHandler.java
JaxWsSoapContextHandler.addHeader
public void addHeader(String namespace, String headerName, SOAPElement headerValue) { this.soapHeaders.add(headerValue); }
java
public void addHeader(String namespace, String headerName, SOAPElement headerValue) { this.soapHeaders.add(headerValue); }
[ "public", "void", "addHeader", "(", "String", "namespace", ",", "String", "headerName", ",", "SOAPElement", "headerValue", ")", "{", "this", ".", "soapHeaders", ".", "add", "(", "headerValue", ")", ";", "}" ]
Adds a header to the list of SOAP request headers. @param namespace the namespace the header belongs to @param headerName the name of the header element @param headerValue the value of the header element
[ "Adds", "a", "header", "to", "the", "list", "of", "SOAP", "request", "headers", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib_appengine/src/main/java/com/google/api/ads/common/lib/soap/jaxws/JaxWsSoapContextHandler.java#L160-L162
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java
PromotionFeedItem.getDiscountModifier
public com.google.api.ads.adwords.axis.v201809.cm.PromotionExtensionDiscountModifier getDiscountModifier() { return discountModifier; }
java
public com.google.api.ads.adwords.axis.v201809.cm.PromotionExtensionDiscountModifier getDiscountModifier() { return discountModifier; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "PromotionExtensionDiscountModifier", "getDiscountModifier", "(", ")", "{", "return", "discountModifier", ";", "}" ]
Gets the discountModifier value for this PromotionFeedItem. @return discountModifier * Discount modifier. Optional.
[ "Gets", "the", "discountModifier", "value", "for", "this", "PromotionFeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java#L269-L271
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java
PromotionFeedItem.setMoneyAmountOff
public void setMoneyAmountOff(com.google.api.ads.adwords.axis.v201809.cm.MoneyWithCurrency moneyAmountOff) { this.moneyAmountOff = moneyAmountOff; }
java
public void setMoneyAmountOff(com.google.api.ads.adwords.axis.v201809.cm.MoneyWithCurrency moneyAmountOff) { this.moneyAmountOff = moneyAmountOff; }
[ "public", "void", "setMoneyAmountOff", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "MoneyWithCurrency", "moneyAmountOff", ")", "{", "this", ".", "moneyAmountOff", "=", "moneyAmountOff", ";",...
Sets the moneyAmountOff value for this PromotionFeedItem. @param moneyAmountOff * Money amount off. Either percentOff or moneyAmountOff is required. Cannot set both moneyAmountOff and percentOff.
[ "Sets", "the", "moneyAmountOff", "value", "for", "this", "PromotionFeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java#L325-L327
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java
PromotionFeedItem.getOrdersOverAmount
public com.google.api.ads.adwords.axis.v201809.cm.MoneyWithCurrency getOrdersOverAmount() { return ordersOverAmount; }
java
public com.google.api.ads.adwords.axis.v201809.cm.MoneyWithCurrency getOrdersOverAmount() { return ordersOverAmount; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "MoneyWithCurrency", "getOrdersOverAmount", "(", ")", "{", "return", "ordersOverAmount", ";", "}" ]
Gets the ordersOverAmount value for this PromotionFeedItem. @return ordersOverAmount * Orders over amount. Optional. Cannot set both ordersOverAmount and promotionCode.
[ "Gets", "the", "ordersOverAmount", "value", "for", "this", "PromotionFeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java#L358-L360
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java
PromotionFeedItem.getOccasion
public com.google.api.ads.adwords.axis.v201809.cm.PromotionExtensionOccasion getOccasion() { return occasion; }
java
public com.google.api.ads.adwords.axis.v201809.cm.PromotionExtensionOccasion getOccasion() { return occasion; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "PromotionExtensionOccasion", "getOccasion", "(", ")", "{", "return", "occasion", ";", "}" ]
Gets the occasion value for this PromotionFeedItem. @return occasion * Occasion of the promotion. Optional.
[ "Gets", "the", "occasion", "value", "for", "this", "PromotionFeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java#L431-L433
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java
PromotionFeedItem.getPromotionUrlCustomParameters
public com.google.api.ads.adwords.axis.v201809.cm.CustomParameters getPromotionUrlCustomParameters() { return promotionUrlCustomParameters; }
java
public com.google.api.ads.adwords.axis.v201809.cm.CustomParameters getPromotionUrlCustomParameters() { return promotionUrlCustomParameters; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "CustomParameters", "getPromotionUrlCustomParameters", "(", ")", "{", "return", "promotionUrlCustomParameters", ";", "}" ]
Gets the promotionUrlCustomParameters value for this PromotionFeedItem. @return promotionUrlCustomParameters * A list of mappings to be used for substituting URL custom parameter tags in the trackingUrlTemplate, finalUrls, and/or finalMobileUrls.
[ "Gets", "the", "promotionUrlCustomParameters", "value", "for", "this", "PromotionFeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PromotionFeedItem.java#L537-L539
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedMapping.java
FeedMapping.getAttributeFieldMappings
public com.google.api.ads.adwords.axis.v201809.cm.AttributeFieldMapping[] getAttributeFieldMappings() { return attributeFieldMappings; }
java
public com.google.api.ads.adwords.axis.v201809.cm.AttributeFieldMapping[] getAttributeFieldMappings() { return attributeFieldMappings; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "AttributeFieldMapping", "[", "]", "getAttributeFieldMappings", "(", ")", "{", "return", "attributeFieldMappings", ";", "}" ]
Gets the attributeFieldMappings value for this FeedMapping. @return attributeFieldMappings * The list of feed attributes to placeholder fields mappings. <span class="constraint Selectable">This field can be selected using the value "AttributeFieldMappings".</span> <span class="constraint Required">This field is requ...
[ "Gets", "the", "attributeFieldMappings", "value", "for", "this", "FeedMapping", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedMapping.java#L256-L258
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/BillableRevenueOverrides.java
BillableRevenueOverrides.getNetBillableRevenueOverride
public com.google.api.ads.admanager.axis.v201808.Money getNetBillableRevenueOverride() { return netBillableRevenueOverride; }
java
public com.google.api.ads.admanager.axis.v201808.Money getNetBillableRevenueOverride() { return netBillableRevenueOverride; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "getNetBillableRevenueOverride", "(", ")", "{", "return", "netBillableRevenueOverride", ";", "}" ]
Gets the netBillableRevenueOverride value for this BillableRevenueOverrides. @return netBillableRevenueOverride * The overridden {@link ReconciliationLineItemReport#netBillableRevenue}. <p>If the {@link ReconciliationLineItemReport} data is for a {@link ProposalLineItem} and the {@link ReconciliationLineItemReport#...
[ "Gets", "the", "netBillableRevenueOverride", "value", "for", "this", "BillableRevenueOverrides", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/BillableRevenueOverrides.java#L106-L108
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/BillableRevenueOverrides.java
BillableRevenueOverrides.getGrossBillableRevenueOverride
public com.google.api.ads.admanager.axis.v201808.Money getGrossBillableRevenueOverride() { return grossBillableRevenueOverride; }
java
public com.google.api.ads.admanager.axis.v201808.Money getGrossBillableRevenueOverride() { return grossBillableRevenueOverride; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "getGrossBillableRevenueOverride", "(", ")", "{", "return", "grossBillableRevenueOverride", ";", "}" ]
Gets the grossBillableRevenueOverride value for this BillableRevenueOverrides. @return grossBillableRevenueOverride * The overriden {@link ReconciliationLineItemReport#grossBillableRevenue}. <p>The value of this field will always be the same as what is set in the {@link #billableRevenueOverride}. <p>This value is ...
[ "Gets", "the", "grossBillableRevenueOverride", "value", "for", "this", "BillableRevenueOverrides", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/BillableRevenueOverrides.java#L146-L148
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/BillableRevenueOverrides.java
BillableRevenueOverrides.setBillableRevenueOverride
public void setBillableRevenueOverride(com.google.api.ads.admanager.axis.v201808.Money billableRevenueOverride) { this.billableRevenueOverride = billableRevenueOverride; }
java
public void setBillableRevenueOverride(com.google.api.ads.admanager.axis.v201808.Money billableRevenueOverride) { this.billableRevenueOverride = billableRevenueOverride; }
[ "public", "void", "setBillableRevenueOverride", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "billableRevenueOverride", ")", "{", "this", ".", "billableRevenueOverride", "=", "billableRevenueOverri...
Sets the billableRevenueOverride value for this BillableRevenueOverrides. @param billableRevenueOverride * The manually entered billable revenue override, which will be used to calculate both the {@link #netBillableRevenueOverride} and the {@link #grossBillableRevenueOverride}. This value is required.
[ "Sets", "the", "billableRevenueOverride", "value", "for", "this", "BillableRevenueOverrides", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/BillableRevenueOverrides.java#L192-L194
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java
ProposalLineItemConstraints.setBuiltInCreativePlaceholders
public void setBuiltInCreativePlaceholders(com.google.api.ads.admanager.axis.v201805.CreativePlaceholder[] builtInCreativePlaceholders) { this.builtInCreativePlaceholders = builtInCreativePlaceholders; }
java
public void setBuiltInCreativePlaceholders(com.google.api.ads.admanager.axis.v201805.CreativePlaceholder[] builtInCreativePlaceholders) { this.builtInCreativePlaceholders = builtInCreativePlaceholders; }
[ "public", "void", "setBuiltInCreativePlaceholders", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "CreativePlaceholder", "[", "]", "builtInCreativePlaceholders", ")", "{", "this", ".", "builtInCreativePlaceh...
Sets the builtInCreativePlaceholders value for this ProposalLineItemConstraints. @param builtInCreativePlaceholders * The built-in {@link CreativePlaceholder creative placeholders} for the created {@link ProposalLineItem}. <p>This attribute is read-only.
[ "Sets", "the", "builtInCreativePlaceholders", "value", "for", "this", "ProposalLineItemConstraints", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java#L177-L179
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java
ProposalLineItemConstraints.getBuiltInDeliveryRateType
public com.google.api.ads.admanager.axis.v201805.DeliveryRateType getBuiltInDeliveryRateType() { return builtInDeliveryRateType; }
java
public com.google.api.ads.admanager.axis.v201805.DeliveryRateType getBuiltInDeliveryRateType() { return builtInDeliveryRateType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "DeliveryRateType", "getBuiltInDeliveryRateType", "(", ")", "{", "return", "builtInDeliveryRateType", ";", "}" ]
Gets the builtInDeliveryRateType value for this ProposalLineItemConstraints. @return builtInDeliveryRateType * The built-in delivery rate type for the created {@link ProposalLineItem}. <p>This attribute is read-only.
[ "Gets", "the", "builtInDeliveryRateType", "value", "for", "this", "ProposalLineItemConstraints", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java#L221-L223
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java
ProposalLineItemConstraints.setBuiltInDeliveryRateType
public void setBuiltInDeliveryRateType(com.google.api.ads.admanager.axis.v201805.DeliveryRateType builtInDeliveryRateType) { this.builtInDeliveryRateType = builtInDeliveryRateType; }
java
public void setBuiltInDeliveryRateType(com.google.api.ads.admanager.axis.v201805.DeliveryRateType builtInDeliveryRateType) { this.builtInDeliveryRateType = builtInDeliveryRateType; }
[ "public", "void", "setBuiltInDeliveryRateType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "DeliveryRateType", "builtInDeliveryRateType", ")", "{", "this", ".", "builtInDeliveryRateType", "=", "builtInDel...
Sets the builtInDeliveryRateType value for this ProposalLineItemConstraints. @param builtInDeliveryRateType * The built-in delivery rate type for the created {@link ProposalLineItem}. <p>This attribute is read-only.
[ "Sets", "the", "builtInDeliveryRateType", "value", "for", "this", "ProposalLineItemConstraints", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java#L233-L235
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java
ProposalLineItemConstraints.setBuiltInCreativeRotationType
public void setBuiltInCreativeRotationType(com.google.api.ads.admanager.axis.v201805.CreativeRotationType builtInCreativeRotationType) { this.builtInCreativeRotationType = builtInCreativeRotationType; }
java
public void setBuiltInCreativeRotationType(com.google.api.ads.admanager.axis.v201805.CreativeRotationType builtInCreativeRotationType) { this.builtInCreativeRotationType = builtInCreativeRotationType; }
[ "public", "void", "setBuiltInCreativeRotationType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "CreativeRotationType", "builtInCreativeRotationType", ")", "{", "this", ".", "builtInCreativeRotationType", "=...
Sets the builtInCreativeRotationType value for this ProposalLineItemConstraints. @param builtInCreativeRotationType * The built-in creative rotation type for the created {@link ProposalLineItem}. <p>This attribute is read-only.
[ "Sets", "the", "builtInCreativeRotationType", "value", "for", "this", "ProposalLineItemConstraints", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java#L259-L261
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java
ProposalLineItemConstraints.getBuiltInCompanionDeliveryOption
public com.google.api.ads.admanager.axis.v201805.CompanionDeliveryOption getBuiltInCompanionDeliveryOption() { return builtInCompanionDeliveryOption; }
java
public com.google.api.ads.admanager.axis.v201805.CompanionDeliveryOption getBuiltInCompanionDeliveryOption() { return builtInCompanionDeliveryOption; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "CompanionDeliveryOption", "getBuiltInCompanionDeliveryOption", "(", ")", "{", "return", "builtInCompanionDeliveryOption", ";", "}" ]
Gets the builtInCompanionDeliveryOption value for this ProposalLineItemConstraints. @return builtInCompanionDeliveryOption * The built-in companion delivery option for the created {@link ProposalLineItem}. <p>This attribute is read-only.
[ "Gets", "the", "builtInCompanionDeliveryOption", "value", "for", "this", "ProposalLineItemConstraints", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java#L272-L274
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java
ProposalLineItemConstraints.getBuiltInFrequencyCaps
public com.google.api.ads.admanager.axis.v201805.FrequencyCap[] getBuiltInFrequencyCaps() { return builtInFrequencyCaps; }
java
public com.google.api.ads.admanager.axis.v201805.FrequencyCap[] getBuiltInFrequencyCaps() { return builtInFrequencyCaps; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "FrequencyCap", "[", "]", "getBuiltInFrequencyCaps", "(", ")", "{", "return", "builtInFrequencyCaps", ";", "}" ]
Gets the builtInFrequencyCaps value for this ProposalLineItemConstraints. @return builtInFrequencyCaps * The built-in frequency caps for the created {@link ProposalLineItem}. <p>This attribute is read-only.
[ "Gets", "the", "builtInFrequencyCaps", "value", "for", "this", "ProposalLineItemConstraints", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java#L297-L299
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java
ProposalLineItemConstraints.setProductBuiltInTargeting
public void setProductBuiltInTargeting(com.google.api.ads.admanager.axis.v201805.Targeting productBuiltInTargeting) { this.productBuiltInTargeting = productBuiltInTargeting; }
java
public void setProductBuiltInTargeting(com.google.api.ads.admanager.axis.v201805.Targeting productBuiltInTargeting) { this.productBuiltInTargeting = productBuiltInTargeting; }
[ "public", "void", "setProductBuiltInTargeting", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "Targeting", "productBuiltInTargeting", ")", "{", "this", ".", "productBuiltInTargeting", "=", "productBuiltInTar...
Sets the productBuiltInTargeting value for this ProposalLineItemConstraints. @param productBuiltInTargeting * Built-in targeting for the created {@link ProposalLineItem}. <p>This attribute is read-only.
[ "Sets", "the", "productBuiltInTargeting", "value", "for", "this", "ProposalLineItemConstraints", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ProposalLineItemConstraints.java#L341-L343
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getGeoSegment
public com.google.api.ads.admanager.axis.v201808.GeoTargeting getGeoSegment() { return geoSegment; }
java
public com.google.api.ads.admanager.axis.v201808.GeoTargeting getGeoSegment() { return geoSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "GeoTargeting", "getGeoSegment", "(", ")", "{", "return", "geoSegment", ";", "}" ]
Gets the geoSegment value for this ProductSegmentation. @return geoSegment * The geographic segmentation. Segments should be set on the {@link GeoTargeting#targetedLocations} field. <p>This attribute is optional.
[ "Gets", "the", "geoSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L232-L234
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getCustomTargetingSegment
public com.google.api.ads.admanager.axis.v201808.CustomCriteria[] getCustomTargetingSegment() { return customTargetingSegment; }
java
public com.google.api.ads.admanager.axis.v201808.CustomCriteria[] getCustomTargetingSegment() { return customTargetingSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "CustomCriteria", "[", "]", "getCustomTargetingSegment", "(", ")", "{", "return", "customTargetingSegment", ";", "}" ]
Gets the customTargetingSegment value for this ProductSegmentation. @return customTargetingSegment * The custom targeting segmentation. <p>This attribute is optional.
[ "Gets", "the", "customTargetingSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L315-L317
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.setUserDomainSegment
public void setUserDomainSegment(com.google.api.ads.admanager.axis.v201808.UserDomainTargeting userDomainSegment) { this.userDomainSegment = userDomainSegment; }
java
public void setUserDomainSegment(com.google.api.ads.admanager.axis.v201808.UserDomainTargeting userDomainSegment) { this.userDomainSegment = userDomainSegment; }
[ "public", "void", "setUserDomainSegment", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "UserDomainTargeting", "userDomainSegment", ")", "{", "this", ".", "userDomainSegment", "=", "userDomainSegment", ";"...
Sets the userDomainSegment value for this ProductSegmentation. @param userDomainSegment * The user domain segmentation. {@link UserDomainTargeting#isTargeted} must be {@code true}. <p>This attribute is optional.
[ "Sets", "the", "userDomainSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L361-L363
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getBrowserSegment
public com.google.api.ads.admanager.axis.v201808.BrowserTargeting getBrowserSegment() { return browserSegment; }
java
public com.google.api.ads.admanager.axis.v201808.BrowserTargeting getBrowserSegment() { return browserSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "BrowserTargeting", "getBrowserSegment", "(", ")", "{", "return", "browserSegment", ";", "}" ]
Gets the browserSegment value for this ProductSegmentation. @return browserSegment * The browser segmentation. {@link BrowserTargeting#isTargeted} must be {@code true}. <p>This attribute is optional.
[ "Gets", "the", "browserSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L400-L402
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getBrowserLanguageSegment
public com.google.api.ads.admanager.axis.v201808.BrowserLanguageTargeting getBrowserLanguageSegment() { return browserLanguageSegment; }
java
public com.google.api.ads.admanager.axis.v201808.BrowserLanguageTargeting getBrowserLanguageSegment() { return browserLanguageSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "BrowserLanguageTargeting", "getBrowserLanguageSegment", "(", ")", "{", "return", "browserLanguageSegment", ";", "}" ]
Gets the browserLanguageSegment value for this ProductSegmentation. @return browserLanguageSegment * The browser language segmentation. {@link BrowserLanguageTargeting#isTargeted} must be {@code true}. <p>This attribute is optional.
[ "Gets", "the", "browserLanguageSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L426-L428
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.setOperatingSystemSegment
public void setOperatingSystemSegment(com.google.api.ads.admanager.axis.v201808.OperatingSystemTargeting operatingSystemSegment) { this.operatingSystemSegment = operatingSystemSegment; }
java
public void setOperatingSystemSegment(com.google.api.ads.admanager.axis.v201808.OperatingSystemTargeting operatingSystemSegment) { this.operatingSystemSegment = operatingSystemSegment; }
[ "public", "void", "setOperatingSystemSegment", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "OperatingSystemTargeting", "operatingSystemSegment", ")", "{", "this", ".", "operatingSystemSegment", "=", "opera...
Sets the operatingSystemSegment value for this ProductSegmentation. @param operatingSystemSegment * The operating system segmentation. {@link OperatingSystemTargeting#isTargeted} must be {@code true}. We only allow segment by Operating_System, not Operating_System_Version (will be ignored). <p>This attribute is opt...
[ "Sets", "the", "operatingSystemSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L469-L471
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getMobileCarrierSegment
public com.google.api.ads.admanager.axis.v201808.MobileCarrierTargeting getMobileCarrierSegment() { return mobileCarrierSegment; }
java
public com.google.api.ads.admanager.axis.v201808.MobileCarrierTargeting getMobileCarrierSegment() { return mobileCarrierSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "MobileCarrierTargeting", "getMobileCarrierSegment", "(", ")", "{", "return", "mobileCarrierSegment", ";", "}" ]
Gets the mobileCarrierSegment value for this ProductSegmentation. @return mobileCarrierSegment * The mobile carrier segmentation. {@link MobileCarrierTargeting#isTargeted} must be {@code true}. <p>This attribute is optional.
[ "Gets", "the", "mobileCarrierSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L509-L511
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getDeviceCapabilitySegment
public com.google.api.ads.admanager.axis.v201808.DeviceCapabilityTargeting getDeviceCapabilitySegment() { return deviceCapabilitySegment; }
java
public com.google.api.ads.admanager.axis.v201808.DeviceCapabilityTargeting getDeviceCapabilitySegment() { return deviceCapabilitySegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DeviceCapabilityTargeting", "getDeviceCapabilitySegment", "(", ")", "{", "return", "deviceCapabilitySegment", ";", "}" ]
Gets the deviceCapabilitySegment value for this ProductSegmentation. @return deviceCapabilitySegment * The device capability segmentation. {@link DeviceCapabilityTargeting#excludedDeviceCapabilities} must be empty or null. <p>This attribute is optional.
[ "Gets", "the", "deviceCapabilitySegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L537-L539
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.setDeviceCategorySegment
public void setDeviceCategorySegment(com.google.api.ads.admanager.axis.v201808.DeviceCategoryTargeting deviceCategorySegment) { this.deviceCategorySegment = deviceCategorySegment; }
java
public void setDeviceCategorySegment(com.google.api.ads.admanager.axis.v201808.DeviceCategoryTargeting deviceCategorySegment) { this.deviceCategorySegment = deviceCategorySegment; }
[ "public", "void", "setDeviceCategorySegment", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DeviceCategoryTargeting", "deviceCategorySegment", ")", "{", "this", ".", "deviceCategorySegment", "=", "deviceCat...
Sets the deviceCategorySegment value for this ProductSegmentation. @param deviceCategorySegment * The device category segmentation. {@link DeviceCategoryTargeting#excludedDeviceCategories} must be empty or null. <p>This attribute is optional.
[ "Sets", "the", "deviceCategorySegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L579-L581
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getMobileDeviceSegment
public com.google.api.ads.admanager.axis.v201808.MobileDeviceTargeting getMobileDeviceSegment() { return mobileDeviceSegment; }
java
public com.google.api.ads.admanager.axis.v201808.MobileDeviceTargeting getMobileDeviceSegment() { return mobileDeviceSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "MobileDeviceTargeting", "getMobileDeviceSegment", "(", ")", "{", "return", "mobileDeviceSegment", ";", "}" ]
Gets the mobileDeviceSegment value for this ProductSegmentation. @return mobileDeviceSegment * The mobile device segmentation. {@link MobileDeviceTargeting#excludedMobileDevices} must be empty or null. <p>This attribute is optional.
[ "Gets", "the", "mobileDeviceSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L621-L623
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.setMobileDeviceSegment
public void setMobileDeviceSegment(com.google.api.ads.admanager.axis.v201808.MobileDeviceTargeting mobileDeviceSegment) { this.mobileDeviceSegment = mobileDeviceSegment; }
java
public void setMobileDeviceSegment(com.google.api.ads.admanager.axis.v201808.MobileDeviceTargeting mobileDeviceSegment) { this.mobileDeviceSegment = mobileDeviceSegment; }
[ "public", "void", "setMobileDeviceSegment", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "MobileDeviceTargeting", "mobileDeviceSegment", ")", "{", "this", ".", "mobileDeviceSegment", "=", "mobileDeviceSegme...
Sets the mobileDeviceSegment value for this ProductSegmentation. @param mobileDeviceSegment * The mobile device segmentation. {@link MobileDeviceTargeting#excludedMobileDevices} must be empty or null. <p>This attribute is optional.
[ "Sets", "the", "mobileDeviceSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L635-L637
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getMobileDeviceSubmodelSegment
public com.google.api.ads.admanager.axis.v201808.MobileDeviceSubmodelTargeting getMobileDeviceSubmodelSegment() { return mobileDeviceSubmodelSegment; }
java
public com.google.api.ads.admanager.axis.v201808.MobileDeviceSubmodelTargeting getMobileDeviceSubmodelSegment() { return mobileDeviceSubmodelSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "MobileDeviceSubmodelTargeting", "getMobileDeviceSubmodelSegment", "(", ")", "{", "return", "mobileDeviceSubmodelSegment", ";", "}" ]
Gets the mobileDeviceSubmodelSegment value for this ProductSegmentation. @return mobileDeviceSubmodelSegment * The mobile device submodel segmentation. {@link MobileDeviceSubmodelTargeting#excludedMobileDeviceSubmodels} must be empty or null.
[ "Gets", "the", "mobileDeviceSubmodelSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L647-L649
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.setSizeSegment
public void setSizeSegment(com.google.api.ads.admanager.axis.v201808.CreativePlaceholder[] sizeSegment) { this.sizeSegment = sizeSegment; }
java
public void setSizeSegment(com.google.api.ads.admanager.axis.v201808.CreativePlaceholder[] sizeSegment) { this.sizeSegment = sizeSegment; }
[ "public", "void", "setSizeSegment", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "CreativePlaceholder", "[", "]", "sizeSegment", ")", "{", "this", ".", "sizeSegment", "=", "sizeSegment", ";", "}" ]
Sets the sizeSegment value for this ProductSegmentation. @param sizeSegment * The creative size segmentation. <p>This attribute is optional.
[ "Sets", "the", "sizeSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L683-L685
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.getMobileApplicationSegment
public com.google.api.ads.admanager.axis.v201808.MobileApplicationTargeting getMobileApplicationSegment() { return mobileApplicationSegment; }
java
public com.google.api.ads.admanager.axis.v201808.MobileApplicationTargeting getMobileApplicationSegment() { return mobileApplicationSegment; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "MobileApplicationTargeting", "getMobileApplicationSegment", "(", ")", "{", "return", "mobileApplicationSegment", ";", "}" ]
Gets the mobileApplicationSegment value for this ProductSegmentation. @return mobileApplicationSegment * The mobile application segmentation. <p>This attribute is optional.
[ "Gets", "the", "mobileApplicationSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L703-L705
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java
ProductSegmentation.setVideoPositionSegment
public void setVideoPositionSegment(com.google.api.ads.admanager.axis.v201808.VideoPositionTargeting videoPositionSegment) { this.videoPositionSegment = videoPositionSegment; }
java
public void setVideoPositionSegment(com.google.api.ads.admanager.axis.v201808.VideoPositionTargeting videoPositionSegment) { this.videoPositionSegment = videoPositionSegment; }
[ "public", "void", "setVideoPositionSegment", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "VideoPositionTargeting", "videoPositionSegment", ")", "{", "this", ".", "videoPositionSegment", "=", "videoPosition...
Sets the videoPositionSegment value for this ProductSegmentation. @param videoPositionSegment * The video position segmentation. <p>This attribute is optional.
[ "Sets", "the", "videoPositionSegment", "value", "for", "this", "ProductSegmentation", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProductSegmentation.java#L739-L741
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReportQuery.java
ReportQuery.getAdUnitView
public com.google.api.ads.admanager.axis.v201805.ReportQueryAdUnitView getAdUnitView() { return adUnitView; }
java
public com.google.api.ads.admanager.axis.v201805.ReportQueryAdUnitView getAdUnitView() { return adUnitView; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "ReportQueryAdUnitView", "getAdUnitView", "(", ")", "{", "return", "adUnitView", ";", "}" ]
Gets the adUnitView value for this ReportQuery. @return adUnitView * The ad unit view for the report. Defaults to {@link AdUnitView#TOP_LEVEL}.
[ "Gets", "the", "adUnitView", "value", "for", "this", "ReportQuery", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReportQuery.java#L311-L313
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReportQuery.java
ReportQuery.getEndDate
public com.google.api.ads.admanager.axis.v201805.Date getEndDate() { return endDate; }
java
public com.google.api.ads.admanager.axis.v201805.Date getEndDate() { return endDate; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "Date", "getEndDate", "(", ")", "{", "return", "endDate", ";", "}" ]
Gets the endDate value for this ReportQuery. @return endDate * The end date upto which the reporting information is gathered. The {@code ReportQuery#dateRangeType} field must be set to {@link DateRangeType#CUSTOM_DATE} in order to use this.
[ "Gets", "the", "endDate", "value", "for", "this", "ReportQuery", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReportQuery.java#L656-L658
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReportQuery.java
ReportQuery.getStatement
public com.google.api.ads.admanager.axis.v201805.Statement getStatement() { return statement; }
java
public com.google.api.ads.admanager.axis.v201805.Statement getStatement() { return statement; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "Statement", "getStatement", "(", ")", "{", "return", "statement", ";", "}" ]
Gets the statement value for this ReportQuery. @return statement * Specifies a filter to use for reporting on data. This filter will be used in conjunction (joined with an AND statement) with the date range selected through {@link #dateRangeType}, {@link #startDate}, and {@link #endDate}. The syntax currently allow...
[ "Gets", "the", "statement", "value", "for", "this", "ReportQuery", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReportQuery.java#L742-L744
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/Content.java
Content.setCmsSources
public void setCmsSources(com.google.api.ads.admanager.axis.v201811.CmsContent[] cmsSources) { this.cmsSources = cmsSources; }
java
public void setCmsSources(com.google.api.ads.admanager.axis.v201811.CmsContent[] cmsSources) { this.cmsSources = cmsSources; }
[ "public", "void", "setCmsSources", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "CmsContent", "[", "]", "cmsSources", ")", "{", "this", ".", "cmsSources", "=", "cmsSources", ";", "}" ]
Sets the cmsSources value for this Content. @param cmsSources * Information about the content from the CMS it was ingested from. This attribute is read-only.
[ "Sets", "the", "cmsSources", "value", "for", "this", "Content", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/Content.java#L591-L593
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.getSiteLinksFromFeed
private static Map<Long, SiteLinkFromFeed> getSiteLinksFromFeed( AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed) throws RemoteException { // Retrieve the feed's attribute mapping. Multimap<Long, Integer> feedMappings = getFeedMapping(adWordsServices, session, fee...
java
private static Map<Long, SiteLinkFromFeed> getSiteLinksFromFeed( AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed) throws RemoteException { // Retrieve the feed's attribute mapping. Multimap<Long, Integer> feedMappings = getFeedMapping(adWordsServices, session, fee...
[ "private", "static", "Map", "<", "Long", ",", "SiteLinkFromFeed", ">", "getSiteLinksFromFeed", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ",", "Feed", "feed", ")", "throws", "RemoteException", "{", "// Retrieve the feed's attribu...
Gets the site links from a feed. @return a map of feed item ID to SiteLinkFromFeed
[ "Gets", "the", "site", "links", "from", "a", "feed", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L222-L274
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.getFeedMapping
private static Multimap<Long, Integer> getFeedMapping(AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed, long placeholderType) throws RemoteException { // Get the FeedMappingService. FeedMappingServiceInterface feedMappingService = adWordsServices.get(session, FeedMapping...
java
private static Multimap<Long, Integer> getFeedMapping(AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed, long placeholderType) throws RemoteException { // Get the FeedMappingService. FeedMappingServiceInterface feedMappingService = adWordsServices.get(session, FeedMapping...
[ "private", "static", "Multimap", "<", "Long", ",", "Integer", ">", "getFeedMapping", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ",", "Feed", "feed", ",", "long", "placeholderType", ")", "throws", "RemoteException", "{", "//...
Gets the feed mapping for a feed. @return a multimap from feed attribute ID to the set of field IDs mapped to the attribute
[ "Gets", "the", "feed", "mapping", "for", "a", "feed", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L281-L311
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.getFeeds
private static List<Feed> getFeeds( AdWordsServicesInterface adWordsServices, AdWordsSession session) throws RemoteException { FeedServiceInterface feedService = adWordsServices.get(session, FeedServiceInterface.class); String query = "SELECT Id, Name, Attributes WHERE Origin = 'USER' AND FeedStatus = 'EN...
java
private static List<Feed> getFeeds( AdWordsServicesInterface adWordsServices, AdWordsSession session) throws RemoteException { FeedServiceInterface feedService = adWordsServices.get(session, FeedServiceInterface.class); String query = "SELECT Id, Name, Attributes WHERE Origin = 'USER' AND FeedStatus = 'EN...
[ "private", "static", "List", "<", "Feed", ">", "getFeeds", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ")", "throws", "RemoteException", "{", "FeedServiceInterface", "feedService", "=", "adWordsServices", ".", "get", "(", "ses...
Returns a list of all enabled feeds.
[ "Returns", "a", "list", "of", "all", "enabled", "feeds", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L314-L333
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.getFeedItems
private static List<FeedItem> getFeedItems(AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed) throws RemoteException { // Get the FeedItemService. FeedItemServiceInterface feedItemService = adWordsServices.get(session, FeedItemServiceInterface.class); String query = S...
java
private static List<FeedItem> getFeedItems(AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed) throws RemoteException { // Get the FeedItemService. FeedItemServiceInterface feedItemService = adWordsServices.get(session, FeedItemServiceInterface.class); String query = S...
[ "private", "static", "List", "<", "FeedItem", ">", "getFeedItems", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ",", "Feed", "feed", ")", "throws", "RemoteException", "{", "// Get the FeedItemService.", "FeedItemServiceInterface", ...
Returns the feed items for a feed.
[ "Returns", "the", "feed", "items", "for", "a", "feed", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L338-L361
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.deleteOldFeedItems
private static void deleteOldFeedItems( AdWordsServicesInterface adWordsServices, AdWordsSession session, Set<Long> feedItemIds, Feed feed) throws RemoteException { // Get the FeedItemService. FeedItemServiceInterface feedItemService = adWordsServices.get(session, FeedItemS...
java
private static void deleteOldFeedItems( AdWordsServicesInterface adWordsServices, AdWordsSession session, Set<Long> feedItemIds, Feed feed) throws RemoteException { // Get the FeedItemService. FeedItemServiceInterface feedItemService = adWordsServices.get(session, FeedItemS...
[ "private", "static", "void", "deleteOldFeedItems", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ",", "Set", "<", "Long", ">", "feedItemIds", ",", "Feed", "feed", ")", "throws", "RemoteException", "{", "// Get the FeedItemService....
Deletes the old feed items for which extension settings have been created.
[ "Deletes", "the", "old", "feed", "items", "for", "which", "extension", "settings", "have", "been", "created", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L364-L393
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.createExtensionSetting
private static void createExtensionSetting(AdWordsServicesInterface adWordsServices, AdWordsSession session, Map<Long, SiteLinkFromFeed> feedItems, CampaignFeed campaignFeed, Set<Long> feedItemIds, ExtensionSettingPlatform platformRestrictions) throws RemoteException { // Get the Campa...
java
private static void createExtensionSetting(AdWordsServicesInterface adWordsServices, AdWordsSession session, Map<Long, SiteLinkFromFeed> feedItems, CampaignFeed campaignFeed, Set<Long> feedItemIds, ExtensionSettingPlatform platformRestrictions) throws RemoteException { // Get the Campa...
[ "private", "static", "void", "createExtensionSetting", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ",", "Map", "<", "Long", ",", "SiteLinkFromFeed", ">", "feedItems", ",", "CampaignFeed", "campaignFeed", ",", "Set", "<", "Long...
Creates the extension setting for a list of feed items. @param adWordsServices the AdWordsServices @param session the AdWordsSession @param feedItems the list of all feed items @param campaignFeed the original campaign feed @param feedItemIds IDs of the feed items for which extension settings should be created @param ...
[ "Creates", "the", "extension", "setting", "for", "a", "list", "of", "feed", "items", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L405-L458
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.deleteCampaignFeed
private static CampaignFeed deleteCampaignFeed(AdWordsServicesInterface adWordsServices, AdWordsSession session, CampaignFeed campaignFeed) throws RemoteException { // Get the CampaignFeedService. CampaignFeedServiceInterface campaignFeedService = adWordsServices.get(session, CampaignFeedServiceIn...
java
private static CampaignFeed deleteCampaignFeed(AdWordsServicesInterface adWordsServices, AdWordsSession session, CampaignFeed campaignFeed) throws RemoteException { // Get the CampaignFeedService. CampaignFeedServiceInterface campaignFeedService = adWordsServices.get(session, CampaignFeedServiceIn...
[ "private", "static", "CampaignFeed", "deleteCampaignFeed", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ",", "CampaignFeed", "campaignFeed", ")", "throws", "RemoteException", "{", "// Get the CampaignFeedService.", "CampaignFeedServiceInte...
Deletes a campaign feed.
[ "Deletes", "a", "campaign", "feed", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L463-L474
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.getPlatformRestictionsForCampaign
private static ExtensionSettingPlatform getPlatformRestictionsForCampaign( CampaignFeed campaignFeed) { String platformRestrictions = ExtensionSettingPlatform.NONE.getValue(); if (FunctionOperator.AND.equals(campaignFeed.getMatchingFunction().getOperator())) { for (FunctionArgumentOperand argument ...
java
private static ExtensionSettingPlatform getPlatformRestictionsForCampaign( CampaignFeed campaignFeed) { String platformRestrictions = ExtensionSettingPlatform.NONE.getValue(); if (FunctionOperator.AND.equals(campaignFeed.getMatchingFunction().getOperator())) { for (FunctionArgumentOperand argument ...
[ "private", "static", "ExtensionSettingPlatform", "getPlatformRestictionsForCampaign", "(", "CampaignFeed", "campaignFeed", ")", "{", "String", "platformRestrictions", "=", "ExtensionSettingPlatform", ".", "NONE", ".", "getValue", "(", ")", ";", "if", "(", "FunctionOperato...
Gets the platform restrictions for sitelinks in a campaign.
[ "Gets", "the", "platform", "restrictions", "for", "sitelinks", "in", "a", "campaign", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L479-L501
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.getFeedItemIdsForCampaign
private static Set<Long> getFeedItemIdsForCampaign(CampaignFeed campaignFeed) throws RemoteException { Set<Long> feedItemIds = Sets.newHashSet(); FunctionOperator functionOperator = campaignFeed.getMatchingFunction().getOperator(); if (FunctionOperator.IN.equals(functionOperator)) { // Check i...
java
private static Set<Long> getFeedItemIdsForCampaign(CampaignFeed campaignFeed) throws RemoteException { Set<Long> feedItemIds = Sets.newHashSet(); FunctionOperator functionOperator = campaignFeed.getMatchingFunction().getOperator(); if (FunctionOperator.IN.equals(functionOperator)) { // Check i...
[ "private", "static", "Set", "<", "Long", ">", "getFeedItemIdsForCampaign", "(", "CampaignFeed", "campaignFeed", ")", "throws", "RemoteException", "{", "Set", "<", "Long", ">", "feedItemIds", "=", "Sets", ".", "newHashSet", "(", ")", ";", "FunctionOperator", "fun...
Returns the list of feed item IDs that are used by a campaign through a given campaign feed.
[ "Returns", "the", "list", "of", "feed", "item", "IDs", "that", "are", "used", "by", "a", "campaign", "through", "a", "given", "campaign", "feed", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L506-L529
train
googleads/googleads-java-lib
examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java
MigrateToExtensionSettings.getCampaignFeeds
private static List<CampaignFeed> getCampaignFeeds(AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed, int placeholderType) throws RemoteException { // Get the CampaignFeedService. CampaignFeedServiceInterface campaignFeedService = adWordsServices.get(session, CampaignFeed...
java
private static List<CampaignFeed> getCampaignFeeds(AdWordsServicesInterface adWordsServices, AdWordsSession session, Feed feed, int placeholderType) throws RemoteException { // Get the CampaignFeedService. CampaignFeedServiceInterface campaignFeedService = adWordsServices.get(session, CampaignFeed...
[ "private", "static", "List", "<", "CampaignFeed", ">", "getCampaignFeeds", "(", "AdWordsServicesInterface", "adWordsServices", ",", "AdWordsSession", "session", ",", "Feed", "feed", ",", "int", "placeholderType", ")", "throws", "RemoteException", "{", "// Get the Campai...
Returns the campaign feeds that use a particular feed for a particular placeholder type.
[ "Returns", "the", "campaign", "feeds", "that", "use", "a", "particular", "feed", "for", "a", "particular", "placeholder", "type", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/examples/adwords_axis/src/main/java/adwords/axis/v201809/migration/MigrateToExtensionSettings.java#L556-L580
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/TargetRoasBiddingScheme.java
TargetRoasBiddingScheme.getBidFloor
public com.google.api.ads.adwords.axis.v201809.cm.Money getBidFloor() { return bidFloor; }
java
public com.google.api.ads.adwords.axis.v201809.cm.Money getBidFloor() { return bidFloor; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "Money", "getBidFloor", "(", ")", "{", "return", "bidFloor", ";", "}" ]
Gets the bidFloor value for this TargetRoasBiddingScheme. @return bidFloor * Minimum bid limit that applies to all keywords managed by the strategy. <span class="constraint InRange">This field must be greater than or equal to 0.</span>
[ "Gets", "the", "bidFloor", "value", "for", "this", "TargetRoasBiddingScheme", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/TargetRoasBiddingScheme.java#L144-L146
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/DimensionProperties.java
DimensionProperties.getLevelOfDetail
public com.google.api.ads.adwords.axis.v201809.cm.LevelOfDetail getLevelOfDetail() { return levelOfDetail; }
java
public com.google.api.ads.adwords.axis.v201809.cm.LevelOfDetail getLevelOfDetail() { return levelOfDetail; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "LevelOfDetail", "getLevelOfDetail", "(", ")", "{", "return", "levelOfDetail", ";", "}" ]
Gets the levelOfDetail value for this DimensionProperties. @return levelOfDetail
[ "Gets", "the", "levelOfDetail", "value", "for", "this", "DimensionProperties", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/DimensionProperties.java#L56-L58
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/DynamicSearchAdsSetting.java
DynamicSearchAdsSetting.getPageFeed
public com.google.api.ads.adwords.axis.v201809.cm.PageFeed getPageFeed() { return pageFeed; }
java
public com.google.api.ads.adwords.axis.v201809.cm.PageFeed getPageFeed() { return pageFeed; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "PageFeed", "getPageFeed", "(", ")", "{", "return", "pageFeed", ";", "}" ]
Gets the pageFeed value for this DynamicSearchAdsSetting. @return pageFeed * Page feeds associated with this campaign.
[ "Gets", "the", "pageFeed", "value", "for", "this", "DynamicSearchAdsSetting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/DynamicSearchAdsSetting.java#L162-L164
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/FlashRedirectOverlayCreative.java
FlashRedirectOverlayCreative.setFlashAssetSize
public void setFlashAssetSize(com.google.api.ads.admanager.axis.v201811.Size flashAssetSize) { this.flashAssetSize = flashAssetSize; }
java
public void setFlashAssetSize(com.google.api.ads.admanager.axis.v201811.Size flashAssetSize) { this.flashAssetSize = flashAssetSize; }
[ "public", "void", "setFlashAssetSize", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "Size", "flashAssetSize", ")", "{", "this", ".", "flashAssetSize", "=", "flashAssetSize", ";", "}" ]
Sets the flashAssetSize value for this FlashRedirectOverlayCreative. @param flashAssetSize * The size of the flash asset. Note that this may differ from {@link #size} if the asset is not expected to fill the entire video player. This attribute is optional.
[ "Sets", "the", "flashAssetSize", "value", "for", "this", "FlashRedirectOverlayCreative", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/FlashRedirectOverlayCreative.java#L315-L317
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/SecurityPolicySettings.java
SecurityPolicySettings.getOriginForwardingType
public com.google.api.ads.admanager.axis.v201805.OriginForwardingType getOriginForwardingType() { return originForwardingType; }
java
public com.google.api.ads.admanager.axis.v201805.OriginForwardingType getOriginForwardingType() { return originForwardingType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "OriginForwardingType", "getOriginForwardingType", "(", ")", "{", "return", "originForwardingType", ";", "}" ]
Gets the originForwardingType value for this SecurityPolicySettings. @return originForwardingType * The type of origin forwarding used to support Akamai authentication policies. This field is not applicable to ingest locations, and is only applicable to delivery media locations with the {@link #securityPolicyType} s...
[ "Gets", "the", "originForwardingType", "value", "for", "this", "SecurityPolicySettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/SecurityPolicySettings.java#L190-L192
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/SecurityPolicySettings.java
SecurityPolicySettings.setOriginForwardingType
public void setOriginForwardingType(com.google.api.ads.admanager.axis.v201805.OriginForwardingType originForwardingType) { this.originForwardingType = originForwardingType; }
java
public void setOriginForwardingType(com.google.api.ads.admanager.axis.v201805.OriginForwardingType originForwardingType) { this.originForwardingType = originForwardingType; }
[ "public", "void", "setOriginForwardingType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "OriginForwardingType", "originForwardingType", ")", "{", "this", ".", "originForwardingType", "=", "originForwardin...
Sets the originForwardingType value for this SecurityPolicySettings. @param originForwardingType * The type of origin forwarding used to support Akamai authentication policies. This field is not applicable to ingest locations, and is only applicable to delivery media locations with the {@link #securityPolicyType} se...
[ "Sets", "the", "originForwardingType", "value", "for", "this", "SecurityPolicySettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/SecurityPolicySettings.java#L206-L208
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Creative.java
Creative.getPolicyViolations
public com.google.api.ads.admanager.axis.v201902.CreativePolicyViolation[] getPolicyViolations() { return policyViolations; }
java
public com.google.api.ads.admanager.axis.v201902.CreativePolicyViolation[] getPolicyViolations() { return policyViolations; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "CreativePolicyViolation", "[", "]", "getPolicyViolations", "(", ")", "{", "return", "policyViolations", ";", "}" ]
Gets the policyViolations value for this Creative. @return policyViolations * Set of policy violations detected for this creative. This attribute is read-only.
[ "Gets", "the", "policyViolations", "value", "for", "this", "Creative", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Creative.java#L246-L248
train
googleads/googleads-java-lib
modules/ads_lib/src/main/java/com/google/api/ads/common/lib/utils/XmlFieldExtractor.java
XmlFieldExtractor.extract
public Map<String, String> extract(InputStream xml, String[] fields) { Map<String, String> parsedFields = Maps.newHashMap(); try { DocumentBuilder documentBuilder = documentBuilderSupplier.get(); if (documentBuilder == null) { logger.warn("Could not create DocumentBuilder"); return p...
java
public Map<String, String> extract(InputStream xml, String[] fields) { Map<String, String> parsedFields = Maps.newHashMap(); try { DocumentBuilder documentBuilder = documentBuilderSupplier.get(); if (documentBuilder == null) { logger.warn("Could not create DocumentBuilder"); return p...
[ "public", "Map", "<", "String", ",", "String", ">", "extract", "(", "InputStream", "xml", ",", "String", "[", "]", "fields", ")", "{", "Map", "<", "String", ",", "String", ">", "parsedFields", "=", "Maps", ".", "newHashMap", "(", ")", ";", "try", "{"...
Locates the target fields in the specified XML and uses a wildcard XPath to identify the first matching node and return it in a map. <p>For example, for the xml: {@code <xml><bar>BAR</bar></xml></code>} and field "bar", this class return a map with key "bar" and value "BAR". @param xml Stream of XML to process. @para...
[ "Locates", "the", "target", "fields", "in", "the", "specified", "XML", "and", "uses", "a", "wildcard", "XPath", "to", "identify", "the", "first", "matching", "node", "and", "return", "it", "in", "a", "map", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib/src/main/java/com/google/api/ads/common/lib/utils/XmlFieldExtractor.java#L69-L95
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/RichMediaAd.java
RichMediaAd.getRichMediaAdType
public com.google.api.ads.adwords.axis.v201809.cm.RichMediaAdRichMediaAdType getRichMediaAdType() { return richMediaAdType; }
java
public com.google.api.ads.adwords.axis.v201809.cm.RichMediaAdRichMediaAdType getRichMediaAdType() { return richMediaAdType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "RichMediaAdRichMediaAdType", "getRichMediaAdType", "(", ")", "{", "return", "richMediaAdType", ";", "}" ]
Gets the richMediaAdType value for this RichMediaAd. @return richMediaAdType * Type of this rich media ad, the default is Standard. <span class="constraint Selectable">This field can be selected using the value "RichMediaAdType".</span>
[ "Gets", "the", "richMediaAdType", "value", "for", "this", "RichMediaAd", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/RichMediaAd.java#L386-L388
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/CustomAffinity.java
CustomAffinity.getType
public com.google.api.ads.adwords.axis.v201809.rm.CustomAffinityType getType() { return type; }
java
public com.google.api.ads.adwords.axis.v201809.rm.CustomAffinityType getType() { return type; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "rm", ".", "CustomAffinityType", "getType", "(", ")", "{", "return", "type", ";", "}" ]
Gets the type value for this CustomAffinity. @return type * The type of this custom affinity, CUSTOM_AFFINITY or CUSTOM_INTENT. By default the type is set to CUSTOM_AFFINITY. <span class="constraint Selectable">This field can be selected using the value "Type".</span><span class="constraint Filterable">This field ca...
[ "Gets", "the", "type", "value", "for", "this", "CustomAffinity", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/CustomAffinity.java#L234-L236
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/AdGroupAdRotationMode.java
AdGroupAdRotationMode.getAdRotationMode
public com.google.api.ads.adwords.axis.v201809.cm.AdRotationMode getAdRotationMode() { return adRotationMode; }
java
public com.google.api.ads.adwords.axis.v201809.cm.AdRotationMode getAdRotationMode() { return adRotationMode; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "AdRotationMode", "getAdRotationMode", "(", ")", "{", "return", "adRotationMode", ";", "}" ]
Gets the adRotationMode value for this AdGroupAdRotationMode. @return adRotationMode * <span class="constraint CampaignType">This field may only be set to OPTIMIZE for campaign channel subtype UNIVERSAL_APP_CAMPAIGN.</span> <span class="constraint CampaignType">This field may only be set to the values: OPTIMIZE, ROT...
[ "Gets", "the", "adRotationMode", "value", "for", "this", "AdGroupAdRotationMode", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/AdGroupAdRotationMode.java#L60-L62
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Predicate.java
Predicate.getOperator
public com.google.api.ads.adwords.axis.v201809.cm.PredicateOperator getOperator() { return operator; }
java
public com.google.api.ads.adwords.axis.v201809.cm.PredicateOperator getOperator() { return operator; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "PredicateOperator", "getOperator", "(", ")", "{", "return", "operator", ";", "}" ]
Gets the operator value for this Predicate. @return operator * The operator to use for filtering the data returned. <span class="constraint Required">This field is required and should not be {@code null}.</span>
[ "Gets", "the", "operator", "value", "for", "this", "Predicate", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Predicate.java#L122-L124
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductChannel.java
ProductChannel.getChannel
public com.google.api.ads.adwords.axis.v201809.cm.ShoppingProductChannel getChannel() { return channel; }
java
public com.google.api.ads.adwords.axis.v201809.cm.ShoppingProductChannel getChannel() { return channel; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "ShoppingProductChannel", "getChannel", "(", ")", "{", "return", "channel", ";", "}" ]
Gets the channel value for this ProductChannel. @return channel
[ "Gets", "the", "channel", "value", "for", "this", "ProductChannel", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductChannel.java#L58-L60
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java
AdSenseSettings.getAdType
public com.google.api.ads.admanager.axis.v201902.AdSenseSettingsAdType getAdType() { return adType; }
java
public com.google.api.ads.admanager.axis.v201902.AdSenseSettingsAdType getAdType() { return adType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "AdSenseSettingsAdType", "getAdType", "(", ")", "{", "return", "adType", ";", "}" ]
Gets the adType value for this AdSenseSettings. @return adType * Specifies what kind of ad can be served by this {@link AdUnit} from the AdSense Content Network. This attribute is optional and defaults to the ad unit's parent or ancestor's setting if one has been set. If no ancestor of the ad unit has set {@code adT...
[ "Gets", "the", "adType", "value", "for", "this", "AdSenseSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java#L402-L404
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java
AdSenseSettings.setFontFamily
public void setFontFamily(com.google.api.ads.admanager.axis.v201902.AdSenseSettingsFontFamily fontFamily) { this.fontFamily = fontFamily; }
java
public void setFontFamily(com.google.api.ads.admanager.axis.v201902.AdSenseSettingsFontFamily fontFamily) { this.fontFamily = fontFamily; }
[ "public", "void", "setFontFamily", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "AdSenseSettingsFontFamily", "fontFamily", ")", "{", "this", ".", "fontFamily", "=", "fontFamily", ";", "}" ]
Sets the fontFamily value for this AdSenseSettings. @param fontFamily * Specifies the font family of the {@link AdUnit}. This attribute is optional and defaults to the ad unit's parent or ancestor's setting if one has been set. If no ancestor of the ad unit has set {@code fontFamily}, the attribute is defaulted to {...
[ "Sets", "the", "fontFamily", "value", "for", "this", "AdSenseSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java#L484-L486
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java
AdSenseSettings.getFontSize
public com.google.api.ads.admanager.axis.v201902.AdSenseSettingsFontSize getFontSize() { return fontSize; }
java
public com.google.api.ads.admanager.axis.v201902.AdSenseSettingsFontSize getFontSize() { return fontSize; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "AdSenseSettingsFontSize", "getFontSize", "(", ")", "{", "return", "fontSize", ";", "}" ]
Gets the fontSize value for this AdSenseSettings. @return fontSize * Specifies the font size of the {@link AdUnit}. This attribute is optional and defaults to the ad unit's parent or ancestor's setting if one has been set. If no ancestor of the ad unit has set {@code fontSize}, the attribute is defaulted to {@link F...
[ "Gets", "the", "fontSize", "value", "for", "this", "AdSenseSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java#L500-L502
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java
AdSenseSettings.setFontSize
public void setFontSize(com.google.api.ads.admanager.axis.v201902.AdSenseSettingsFontSize fontSize) { this.fontSize = fontSize; }
java
public void setFontSize(com.google.api.ads.admanager.axis.v201902.AdSenseSettingsFontSize fontSize) { this.fontSize = fontSize; }
[ "public", "void", "setFontSize", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "AdSenseSettingsFontSize", "fontSize", ")", "{", "this", ".", "fontSize", "=", "fontSize", ";", "}" ]
Sets the fontSize value for this AdSenseSettings. @param fontSize * Specifies the font size of the {@link AdUnit}. This attribute is optional and defaults to the ad unit's parent or ancestor's setting if one has been set. If no ancestor of the ad unit has set {@code fontSize}, the attribute is defaulted to {@link Fo...
[ "Sets", "the", "fontSize", "value", "for", "this", "AdSenseSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdSenseSettings.java#L516-L518
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/o/MonthlySearchVolumeAttribute.java
MonthlySearchVolumeAttribute.getValue
public com.google.api.ads.adwords.axis.v201809.o.MonthlySearchVolume[] getValue() { return value; }
java
public com.google.api.ads.adwords.axis.v201809.o.MonthlySearchVolume[] getValue() { return value; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "o", ".", "MonthlySearchVolume", "[", "]", "getValue", "(", ")", "{", "return", "value", ";", "}" ]
Gets the value value for this MonthlySearchVolumeAttribute. @return value * List of {@link MonthlySearchVolume} values contained by this {@link Attribute}. The list contains the data for the past 12 months (excluding the current month) in sorted order started with the most recent month. <span class="constraint Requi...
[ "Gets", "the", "value", "value", "for", "this", "MonthlySearchVolumeAttribute", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/o/MonthlySearchVolumeAttribute.java#L74-L76
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/AppConversion.java
AppConversion.getAppPlatform
public com.google.api.ads.adwords.axis.v201809.cm.AppConversionAppPlatform getAppPlatform() { return appPlatform; }
java
public com.google.api.ads.adwords.axis.v201809.cm.AppConversionAppPlatform getAppPlatform() { return appPlatform; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "AppConversionAppPlatform", "getAppPlatform", "(", ")", "{", "return", "appPlatform", ";", "}" ]
Gets the appPlatform value for this AppConversion. @return appPlatform * App platform of the app conversion tracker. This field defaults to NONE. Once it is set to a value other than NONE it cannot be changed again. It must be set at the same time as AppConversionType. <span class="constraint Selectable">This field ...
[ "Gets", "the", "appPlatform", "value", "for", "this", "AppConversion", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/AppConversion.java#L215-L217
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/AppConversion.java
AppConversion.getAppConversionType
public com.google.api.ads.adwords.axis.v201809.cm.AppConversionAppConversionType getAppConversionType() { return appConversionType; }
java
public com.google.api.ads.adwords.axis.v201809.cm.AppConversionAppConversionType getAppConversionType() { return appConversionType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "AppConversionAppConversionType", "getAppConversionType", "(", ")", "{", "return", "appConversionType", ";", "}" ]
Gets the appConversionType value for this AppConversion. @return appConversionType * The type of AppConversion, which identifies a conversion as being either download or in-app purchase. This field can only be set once and future reads will populate the type appropriately. It is an error to change the value once it ...
[ "Gets", "the", "appConversionType", "value", "for", "this", "AppConversion", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/AppConversion.java#L282-L284
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/MediaLocationSettings.java
MediaLocationSettings.getSecurityPolicy
public com.google.api.ads.admanager.axis.v201805.SecurityPolicySettings getSecurityPolicy() { return securityPolicy; }
java
public com.google.api.ads.admanager.axis.v201805.SecurityPolicySettings getSecurityPolicy() { return securityPolicy; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "SecurityPolicySettings", "getSecurityPolicy", "(", ")", "{", "return", "securityPolicy", ";", "}" ]
Gets the securityPolicy value for this MediaLocationSettings. @return securityPolicy * The security policy and authentication credentials needed to access the content in this media location. This value is required for a valid media location.
[ "Gets", "the", "securityPolicy", "value", "for", "this", "MediaLocationSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/MediaLocationSettings.java#L119-L121
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/MediaLocationSettings.java
MediaLocationSettings.setSecurityPolicy
public void setSecurityPolicy(com.google.api.ads.admanager.axis.v201805.SecurityPolicySettings securityPolicy) { this.securityPolicy = securityPolicy; }
java
public void setSecurityPolicy(com.google.api.ads.admanager.axis.v201805.SecurityPolicySettings securityPolicy) { this.securityPolicy = securityPolicy; }
[ "public", "void", "setSecurityPolicy", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "SecurityPolicySettings", "securityPolicy", ")", "{", "this", ".", "securityPolicy", "=", "securityPolicy", ";", "}" ]
Sets the securityPolicy value for this MediaLocationSettings. @param securityPolicy * The security policy and authentication credentials needed to access the content in this media location. This value is required for a valid media location.
[ "Sets", "the", "securityPolicy", "value", "for", "this", "MediaLocationSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/MediaLocationSettings.java#L132-L134
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/LogicalUserList.java
LogicalUserList.getRules
public com.google.api.ads.adwords.axis.v201809.rm.UserListLogicalRule[] getRules() { return rules; }
java
public com.google.api.ads.adwords.axis.v201809.rm.UserListLogicalRule[] getRules() { return rules; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "rm", ".", "UserListLogicalRule", "[", "]", "getRules", "(", ")", "{", "return", "rules", ";", "}" ]
Gets the rules value for this LogicalUserList. @return rules * Logical list rules that define this user list. The rules are defined as logical operator (ALL/ANY/NONE) and a list of user lists. All the rules are anded for the evaluation. Required for ADD operation. <span class="constraint Selectable">This field can ...
[ "Gets", "the", "rules", "value", "for", "this", "LogicalUserList", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/LogicalUserList.java#L122-L124
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/GrpSettings.java
GrpSettings.getTargetGender
public com.google.api.ads.admanager.axis.v201902.GrpTargetGender getTargetGender() { return targetGender; }
java
public com.google.api.ads.admanager.axis.v201902.GrpTargetGender getTargetGender() { return targetGender; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "GrpTargetGender", "getTargetGender", "(", ")", "{", "return", "targetGender", ";", "}" ]
Gets the targetGender value for this GrpSettings. @return targetGender * Specifies the target gender of the {@link LineItem}. This field is only applicable if {@link #provider} is not null.
[ "Gets", "the", "targetGender", "value", "for", "this", "GrpSettings", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/GrpSettings.java#L151-L153
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/FrequencyCap.java
FrequencyCap.setTimeUnit
public void setTimeUnit(com.google.api.ads.admanager.axis.v201808.TimeUnit timeUnit) { this.timeUnit = timeUnit; }
java
public void setTimeUnit(com.google.api.ads.admanager.axis.v201808.TimeUnit timeUnit) { this.timeUnit = timeUnit; }
[ "public", "void", "setTimeUnit", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "TimeUnit", "timeUnit", ")", "{", "this", ".", "timeUnit", "=", "timeUnit", ";", "}" ]
Sets the timeUnit value for this FrequencyCap. @param timeUnit * The unit of time for specifying the time period.
[ "Sets", "the", "timeUnit", "value", "for", "this", "FrequencyCap", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/FrequencyCap.java#L129-L131
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/Company.java
Company.getViewabilityProvider
public com.google.api.ads.admanager.axis.v201808.ViewabilityProvider getViewabilityProvider() { return viewabilityProvider; }
java
public com.google.api.ads.admanager.axis.v201808.ViewabilityProvider getViewabilityProvider() { return viewabilityProvider; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "ViewabilityProvider", "getViewabilityProvider", "(", ")", "{", "return", "viewabilityProvider", ";", "}" ]
Gets the viewabilityProvider value for this Company. @return viewabilityProvider * Info required for when Company Type is VIEWABILITY_PROVIDER.
[ "Gets", "the", "viewabilityProvider", "value", "for", "this", "Company", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/Company.java#L573-L575
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/DeviceCategoryTargeting.java
DeviceCategoryTargeting.getTargetedDeviceCategories
public com.google.api.ads.admanager.axis.v201808.Technology[] getTargetedDeviceCategories() { return targetedDeviceCategories; }
java
public com.google.api.ads.admanager.axis.v201808.Technology[] getTargetedDeviceCategories() { return targetedDeviceCategories; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Technology", "[", "]", "getTargetedDeviceCategories", "(", ")", "{", "return", "targetedDeviceCategories", ";", "}" ]
Gets the targetedDeviceCategories value for this DeviceCategoryTargeting. @return targetedDeviceCategories * Device categories that are being targeted by the {@link LineItem}.
[ "Gets", "the", "targetedDeviceCategories", "value", "for", "this", "DeviceCategoryTargeting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/DeviceCategoryTargeting.java#L60-L62
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/DeviceCategoryTargeting.java
DeviceCategoryTargeting.setTargetedDeviceCategories
public void setTargetedDeviceCategories(com.google.api.ads.admanager.axis.v201808.Technology[] targetedDeviceCategories) { this.targetedDeviceCategories = targetedDeviceCategories; }
java
public void setTargetedDeviceCategories(com.google.api.ads.admanager.axis.v201808.Technology[] targetedDeviceCategories) { this.targetedDeviceCategories = targetedDeviceCategories; }
[ "public", "void", "setTargetedDeviceCategories", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Technology", "[", "]", "targetedDeviceCategories", ")", "{", "this", ".", "targetedDeviceCategories", "=", ...
Sets the targetedDeviceCategories value for this DeviceCategoryTargeting. @param targetedDeviceCategories * Device categories that are being targeted by the {@link LineItem}.
[ "Sets", "the", "targetedDeviceCategories", "value", "for", "this", "DeviceCategoryTargeting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/DeviceCategoryTargeting.java#L70-L72
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/DeviceCategoryTargeting.java
DeviceCategoryTargeting.getExcludedDeviceCategories
public com.google.api.ads.admanager.axis.v201808.Technology[] getExcludedDeviceCategories() { return excludedDeviceCategories; }
java
public com.google.api.ads.admanager.axis.v201808.Technology[] getExcludedDeviceCategories() { return excludedDeviceCategories; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Technology", "[", "]", "getExcludedDeviceCategories", "(", ")", "{", "return", "excludedDeviceCategories", ";", "}" ]
Gets the excludedDeviceCategories value for this DeviceCategoryTargeting. @return excludedDeviceCategories * Device categories that are being excluded by the {@link LineItem}.
[ "Gets", "the", "excludedDeviceCategories", "value", "for", "this", "DeviceCategoryTargeting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/DeviceCategoryTargeting.java#L88-L90
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdownEntry.java
ForecastBreakdownEntry.getForecast
public com.google.api.ads.admanager.axis.v201811.BreakdownForecast getForecast() { return forecast; }
java
public com.google.api.ads.admanager.axis.v201811.BreakdownForecast getForecast() { return forecast; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "BreakdownForecast", "getForecast", "(", ")", "{", "return", "forecast", ";", "}" ]
Gets the forecast value for this ForecastBreakdownEntry. @return forecast * The forecast of this entry.
[ "Gets", "the", "forecast", "value", "for", "this", "ForecastBreakdownEntry", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdownEntry.java#L82-L84
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdownEntry.java
ForecastBreakdownEntry.setForecast
public void setForecast(com.google.api.ads.admanager.axis.v201811.BreakdownForecast forecast) { this.forecast = forecast; }
java
public void setForecast(com.google.api.ads.admanager.axis.v201811.BreakdownForecast forecast) { this.forecast = forecast; }
[ "public", "void", "setForecast", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "BreakdownForecast", "forecast", ")", "{", "this", ".", "forecast", "=", "forecast", ";", "}" ]
Sets the forecast value for this ForecastBreakdownEntry. @param forecast * The forecast of this entry.
[ "Sets", "the", "forecast", "value", "for", "this", "ForecastBreakdownEntry", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdownEntry.java#L92-L94
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/VideoPositionTarget.java
VideoPositionTarget.setVideoPosition
public void setVideoPosition(com.google.api.ads.admanager.axis.v201808.VideoPosition videoPosition) { this.videoPosition = videoPosition; }
java
public void setVideoPosition(com.google.api.ads.admanager.axis.v201808.VideoPosition videoPosition) { this.videoPosition = videoPosition; }
[ "public", "void", "setVideoPosition", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "VideoPosition", "videoPosition", ")", "{", "this", ".", "videoPosition", "=", "videoPosition", ";", "}" ]
Sets the videoPosition value for this VideoPositionTarget. @param videoPosition * The video position to target. This attribute is required.
[ "Sets", "the", "videoPosition", "value", "for", "this", "VideoPositionTarget", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/VideoPositionTarget.java#L84-L86
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/VideoPositionTarget.java
VideoPositionTarget.getVideoBumperType
public com.google.api.ads.admanager.axis.v201808.VideoBumperType getVideoBumperType() { return videoBumperType; }
java
public com.google.api.ads.admanager.axis.v201808.VideoBumperType getVideoBumperType() { return videoBumperType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "VideoBumperType", "getVideoBumperType", "(", ")", "{", "return", "videoBumperType", ";", "}" ]
Gets the videoBumperType value for this VideoPositionTarget. @return videoBumperType * The video bumper type to target. To target a video position or a pod position, this value must be null. To target a bumper position this value must be populated and the line item must have a bumper type. To target a custom ad spot...
[ "Gets", "the", "videoBumperType", "value", "for", "this", "VideoPositionTarget", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/VideoPositionTarget.java#L99-L101
train