idx
int64
0
41.2k
question
stringlengths
74
4.04k
target
stringlengths
7
750
38,800
public void setProgrammaticCreativeSource ( com . google . api . ads . admanager . axis . v201805 . ProgrammaticCreativeSource programmaticCreativeSource ) { this . programmaticCreativeSource = programmaticCreativeSource ; }
Sets the programmaticCreativeSource value for this ProposalLineItem .
38,801
public void setTargetedLocations ( com . google . api . ads . admanager . axis . v201811 . Location [ ] targetedLocations ) { this . targetedLocations = targetedLocations ; }
Sets the targetedLocations value for this GeoTargeting .
38,802
public com . google . api . ads . admanager . axis . v201808 . SecurityPolicyType getSecurityPolicyType ( ) { return securityPolicyType ; }
Gets the securityPolicyType value for this SecurityPolicySettings .
38,803
public void setSecurityPolicyType ( com . google . api . ads . admanager . axis . v201808 . SecurityPolicyType securityPolicyType ) { this . securityPolicyType = securityPolicyType ; }
Sets the securityPolicyType value for this SecurityPolicySettings .
38,804
public com . google . api . ads . adwords . axis . v201809 . cm . FeedType getExtensionType ( ) { return extensionType ; }
Gets the extensionType value for this CampaignExtensionSetting .
38,805
public com . google . api . ads . adwords . axis . v201809 . cm . ExtensionSetting getExtensionSetting ( ) { return extensionSetting ; }
Gets the extensionSetting value for this CampaignExtensionSetting .
38,806
public com . google . api . ads . adwords . axis . v201809 . cm . PageOnePromotedBiddingSchemeStrategyGoal getStrategyGoal ( ) { return strategyGoal ; }
Gets the strategyGoal value for this PageOnePromotedBiddingScheme .
38,807
public void setBidCeiling ( com . google . api . ads . adwords . axis . v201809 . cm . Money bidCeiling ) { this . bidCeiling = bidCeiling ; }
Sets the bidCeiling value for this PageOnePromotedBiddingScheme .
38,808
public void setOperation ( com . google . api . ads . adwords . axis . v201809 . o . LongComparisonOperation operation ) { this . operation = operation ; }
Sets the operation value for this SearchVolumeSearchParameter .
38,809
public com . google . api . ads . adwords . axis . v201809 . billing . BudgetOrderErrorReason getReason ( ) { return reason ; }
Gets the reason value for this BudgetOrderError .
38,810
public com . google . api . ads . adwords . axis . v201809 . cm . WebpageCondition [ ] getConditions ( ) { return conditions ; }
Gets the conditions value for this WebpageParameter .
38,811
private static void validateSetValueEntryForSet ( Object entry , Set < ? > set ) { if ( entry instanceof Set < ? > || entry instanceof SetValue ) { throw new IllegalArgumentException ( "Unsupported Value type [nested sets]" ) ; } if ( ! set . isEmpty ( ) ) { Object existingEntry = set . iterator ( ) . next ( ) ; if ( ! existingEntry . getClass ( ) . isAssignableFrom ( entry . getClass ( ) ) ) { throw new IllegalArgumentException ( String . format ( "Unsupported Value type [SetValue with " + "mixed types %s and %s]" , existingEntry . getClass ( ) , entry . getClass ( ) ) ) ; } } }
Validates that an Object is a valid entry for a SetValue .
38,812
private static String createRowTemplate ( List < Integer > maxColumnSizes ) { List < String > columnFormatSpecifiers = Lists . newArrayList ( ) ; for ( int maxColumnSize : maxColumnSizes ) { columnFormatSpecifiers . add ( "%-" + maxColumnSize + "s" ) ; } return new StringBuilder ( "| " ) . append ( Joiner . on ( " | " ) . join ( columnFormatSpecifiers ) ) . append ( " |\n" ) . toString ( ) ; }
Creates the row template given the maximum size for each column
38,813
private static String createRowSeperator ( List < Integer > maxColumnSizes ) { StringBuilder rowSeparator = new StringBuilder ( "+" ) ; for ( int maxColumnSize : maxColumnSizes ) { rowSeparator . append ( Strings . repeat ( "-" , maxColumnSize + 2 ) ) . append ( "+" ) ; } return rowSeparator . append ( "\n" ) . toString ( ) ; }
Creates the row separator given the maximum size for each column
38,814
private static List < Integer > getMaxColumnSizes ( List < String [ ] > resultSet ) { List < Integer > maxColumnSizes = Lists . newArrayList ( ) ; for ( int i = 0 ; i < resultSet . get ( 0 ) . length ; i ++ ) { int maxColumnSize = - 1 ; for ( int j = 0 ; j < resultSet . size ( ) ; j ++ ) { if ( resultSet . get ( j ) [ i ] . length ( ) > maxColumnSize ) { maxColumnSize = resultSet . get ( j ) [ i ] . length ( ) ; } } maxColumnSizes . add ( maxColumnSize ) ; } return maxColumnSizes ; }
Gets a list of the maximum size for each column .
38,815
public URL getDownloadUrl ( ReportDownloadOptions options ) throws RemoteException , MalformedURLException { ReportJobStatus status = reportService . getReportJobStatus ( reportJobId ) ; Preconditions . checkState ( status == ReportJobStatus . COMPLETED , "Report " + reportJobId + " must be completed before downloading. It is currently: " + status ) ; return new URL ( reportService . getReportDownloadUrlWithOptions ( reportJobId , options ) ) ; }
Gets the download URL for a GZip or plain - text format report . If you requested a compressed report you may want to save your file with a gz or zip extension .
38,816
public com . google . api . ads . adwords . axis . v201809 . cm . PolicyTopicEntry [ ] getPolicyTopicEntries ( ) { return policyTopicEntries ; }
Gets the policyTopicEntries value for this PolicySummaryInfo .
38,817
public void setReviewState ( com . google . api . ads . adwords . axis . v201809 . cm . PolicySummaryReviewState reviewState ) { this . reviewState = reviewState ; }
Sets the reviewState value for this PolicySummaryInfo .
38,818
public com . google . api . ads . adwords . axis . v201809 . cm . PolicySummaryDenormalizedStatus getDenormalizedStatus ( ) { return denormalizedStatus ; }
Gets the denormalizedStatus value for this PolicySummaryInfo .
38,819
public com . google . api . ads . adwords . axis . v201809 . cm . PolicyApprovalStatus getCombinedApprovalStatus ( ) { return combinedApprovalStatus ; }
Gets the combinedApprovalStatus value for this PolicySummaryInfo .
38,820
private static Campaign createCampaign ( AdWordsServicesInterface adWordsServices , AdWordsSession session , Long budgetId , Long merchantId ) throws RemoteException { CampaignServiceInterface campaignService = adWordsServices . get ( session , CampaignServiceInterface . class ) ; Campaign campaign = new Campaign ( ) ; campaign . setName ( "Shopping campaign #" + System . currentTimeMillis ( ) ) ; campaign . setAdvertisingChannelType ( AdvertisingChannelType . SHOPPING ) ; campaign . setStatus ( CampaignStatus . PAUSED ) ; Budget budget = new Budget ( ) ; budget . setBudgetId ( budgetId ) ; campaign . setBudget ( budget ) ; BiddingStrategyConfiguration biddingStrategyConfiguration = new BiddingStrategyConfiguration ( ) ; biddingStrategyConfiguration . setBiddingStrategyType ( BiddingStrategyType . MANUAL_CPC ) ; campaign . setBiddingStrategyConfiguration ( biddingStrategyConfiguration ) ; ShoppingSetting shoppingSetting = new ShoppingSetting ( ) ; shoppingSetting . setSalesCountry ( "US" ) ; shoppingSetting . setCampaignPriority ( 0 ) ; shoppingSetting . setMerchantId ( merchantId ) ; shoppingSetting . setEnableLocal ( true ) ; campaign . setSettings ( new Setting [ ] { shoppingSetting } ) ; CampaignOperation campaignOperation = new CampaignOperation ( ) ; campaignOperation . setOperand ( campaign ) ; campaignOperation . setOperator ( Operator . ADD ) ; CampaignReturnValue campaignAddResult = campaignService . mutate ( new CampaignOperation [ ] { campaignOperation } ) ; return campaignAddResult . getValue ( 0 ) ; }
Creates a Shopping campaign .
38,821
private static AdGroup createAdGroup ( AdWordsServicesInterface adWordsServices , AdWordsSession session , Campaign campaign ) throws RemoteException { AdGroupServiceInterface adGroupService = adWordsServices . get ( session , AdGroupServiceInterface . class ) ; AdGroup adGroup = new AdGroup ( ) ; adGroup . setCampaignId ( campaign . getId ( ) ) ; adGroup . setName ( "Ad Group #" + System . currentTimeMillis ( ) ) ; adGroup . setAdGroupType ( AdGroupType . SHOPPING_SHOWCASE_ADS ) ; BiddingStrategyConfiguration biddingStrategyConfiguration = new BiddingStrategyConfiguration ( ) ; Money bidAmount = new Money ( ) ; bidAmount . setMicroAmount ( 100000L ) ; CpcBid cpcBid = new CpcBid ( ) ; cpcBid . setBid ( bidAmount ) ; biddingStrategyConfiguration . setBids ( new Bids [ ] { cpcBid } ) ; adGroup . setBiddingStrategyConfiguration ( biddingStrategyConfiguration ) ; AdGroupOperation adGroupOperation = new AdGroupOperation ( ) ; adGroupOperation . setOperand ( adGroup ) ; adGroupOperation . setOperator ( Operator . ADD ) ; AdGroupReturnValue adGroupAddResult = adGroupService . mutate ( new AdGroupOperation [ ] { adGroupOperation } ) ; return adGroupAddResult . getValue ( 0 ) ; }
Creates an ad group in the Shopping campaign .
38,822
private static AdGroupAd createShowcaseAd ( AdWordsServicesInterface adWordsServices , AdWordsSession session , AdGroup adGroup ) throws IOException { AdGroupAdServiceInterface adGroupAdService = adWordsServices . get ( session , AdGroupAdServiceInterface . class ) ; ShowcaseAd showcaseAd = new ShowcaseAd ( ) ; showcaseAd . setName ( "Showcase ad #" + System . currentTimeMillis ( ) ) ; showcaseAd . setFinalUrls ( new String [ ] { "http://example.com/showcase" } ) ; showcaseAd . setDisplayUrl ( "example.com" ) ; Image expandedImage = new Image ( ) ; expandedImage . setMediaId ( uploadImage ( adWordsServices , session , "https://goo.gl/IfVlpF" ) ) ; showcaseAd . setExpandedImage ( expandedImage ) ; Image collapsedImage = new Image ( ) ; collapsedImage . setMediaId ( uploadImage ( adWordsServices , session , "https://goo.gl/NqTxAE" ) ) ; showcaseAd . setCollapsedImage ( collapsedImage ) ; AdGroupAd adGroupAd = new AdGroupAd ( ) ; adGroupAd . setAdGroupId ( adGroup . getId ( ) ) ; adGroupAd . setAd ( showcaseAd ) ; AdGroupAdOperation adGroupAdOperation = new AdGroupAdOperation ( ) ; adGroupAdOperation . setOperand ( adGroupAd ) ; adGroupAdOperation . setOperator ( Operator . ADD ) ; AdGroupAdReturnValue adGroupAdAddResult = adGroupAdService . mutate ( new AdGroupAdOperation [ ] { adGroupAdOperation } ) ; return adGroupAdAddResult . getValue ( 0 ) ; }
Creates a Showcase ad .
38,823
private static ProductPartitionTree createProductPartitions ( AdWordsServicesInterface adWordsServices , AdWordsSession session , Long adGroupId ) throws RemoteException { AdGroupCriterionServiceInterface adGroupCriterionService = adWordsServices . get ( session , AdGroupCriterionServiceInterface . class ) ; ProductPartitionTree partitionTree = ProductPartitionTree . createAdGroupTree ( adWordsServices , session , adGroupId ) ; System . out . printf ( "Original tree: %s%n" , partitionTree ) ; ProductPartitionNode rootNode = partitionTree . getRoot ( ) . removeAllChildren ( ) ; rootNode = rootNode . asSubdivision ( ) ; rootNode . addChild ( ProductDimensions . createCanonicalCondition ( ProductCanonicalConditionCondition . NEW ) ) . asBiddableUnit ( ) ; rootNode . addChild ( ProductDimensions . createCanonicalCondition ( ProductCanonicalConditionCondition . USED ) ) . asBiddableUnit ( ) ; rootNode . addChild ( ProductDimensions . createCanonicalCondition ( null ) ) . asExcludedUnit ( ) ; List < AdGroupCriterionOperation > mutateOperations = partitionTree . getMutateOperations ( ) ; if ( mutateOperations . isEmpty ( ) ) { System . out . println ( "Skipping the mutate call because the original tree and the current " + "tree are logically identical." ) ; } else { adGroupCriterionService . mutate ( mutateOperations . toArray ( new AdGroupCriterionOperation [ mutateOperations . size ( ) ] ) ) ; } return ProductPartitionTree . createAdGroupTree ( adWordsServices , session , adGroupId ) ; }
Creates the product partition tree for the ad group .
38,824
public void setViewThroughConversionCost ( com . google . api . ads . admanager . axis . v201805 . Money viewThroughConversionCost ) { this . viewThroughConversionCost = viewThroughConversionCost ; }
Sets the viewThroughConversionCost value for this LineItemActivityAssociation .
38,825
public com . google . api . ads . admanager . axis . v201808 . ValueSourceType getAdditionalTermsSource ( ) { return additionalTermsSource ; }
Gets the additionalTermsSource value for this ProductMarketplaceInfo .
38,826
public void setAdditionalTermsSource ( com . google . api . ads . admanager . axis . v201808 . ValueSourceType additionalTermsSource ) { this . additionalTermsSource = additionalTermsSource ; }
Sets the additionalTermsSource value for this ProductMarketplaceInfo .
38,827
public com . google . api . ads . admanager . axis . v201808 . ImageDensity getImageDensity ( ) { return imageDensity ; }
Gets the imageDensity value for this CreativeAsset .
38,828
public void setImageDensity ( com . google . api . ads . admanager . axis . v201808 . ImageDensity imageDensity ) { this . imageDensity = imageDensity ; }
Sets the imageDensity value for this CreativeAsset .
38,829
public com . google . api . ads . adwords . axis . v201809 . cm . DateRange getDateRange ( ) { return dateRange ; }
Gets the dateRange value for this Selector .
38,830
public com . google . api . ads . adwords . axis . v201809 . cm . OrderBy [ ] getOrdering ( ) { return ordering ; }
Gets the ordering value for this Selector .
38,831
public com . google . api . ads . adwords . axis . v201809 . cm . Paging getPaging ( ) { return paging ; }
Gets the paging value for this Selector .
38,832
public com . google . api . ads . adwords . axis . v201809 . cm . ApiError getAsyncError ( ) { return asyncError ; }
Gets the asyncError value for this DraftAsyncError .
38,833
public com . google . api . ads . adwords . axis . v201809 . rm . DateRuleItem getDateRuleItem ( ) { return dateRuleItem ; }
Gets the dateRuleItem value for this RuleItem .
38,834
public com . google . api . ads . adwords . axis . v201809 . rm . NumberRuleItem getNumberRuleItem ( ) { return numberRuleItem ; }
Gets the numberRuleItem value for this RuleItem .
38,835
public com . google . api . ads . adwords . axis . v201809 . rm . StringRuleItem getStringRuleItem ( ) { return stringRuleItem ; }
Gets the stringRuleItem value for this RuleItem .
38,836
public com . google . api . ads . adwords . axis . v201809 . rm . OfflineDataUploadErrorReason getReason ( ) { return reason ; }
Gets the reason value for this OfflineDataUploadError .
38,837
public com . google . api . ads . admanager . axis . v201808 . Technology [ ] getDeviceManufacturers ( ) { return deviceManufacturers ; }
Gets the deviceManufacturers value for this DeviceManufacturerTargeting .
38,838
public void setDeviceManufacturers ( com . google . api . ads . admanager . axis . v201808 . Technology [ ] deviceManufacturers ) { this . deviceManufacturers = deviceManufacturers ; }
Sets the deviceManufacturers value for this DeviceManufacturerTargeting .
38,839
public void setExcludedDeviceCategories ( com . google . api . ads . admanager . axis . v201805 . Technology [ ] excludedDeviceCategories ) { this . excludedDeviceCategories = excludedDeviceCategories ; }
Sets the excludedDeviceCategories value for this DeviceCategoryTargeting .
38,840
public com . google . api . ads . adwords . axis . v201809 . rm . Rule getRule ( ) { return rule ; }
Gets the rule value for this ExpressionRuleUserList .
38,841
public < T > T get ( AdWordsSession session , Class < T > interfaceClass ) { T originalInterfaceObject = adWordsServices . get ( session , interfaceClass ) ; return getProxyObject ( originalInterfaceObject , session , interfaceClass , false ) ; }
Gets a rate - limit - aware client for the service represented by the interface with a reference to the session .
38,842
public < T > T getUtility ( AdWordsSession session , Class < T > utilityClass ) { T originalUtilityObject = adWordsServices . getUtility ( session , utilityClass ) ; return getProxyObject ( originalUtilityObject , session , utilityClass , true ) ; }
Gets a rate - limit - aware instance of the utility represented by the utilityClass with a reference to the session .
38,843
public void setCampaignCriterionStatus ( com . google . api . ads . adwords . axis . v201809 . cm . CampaignCriterionCampaignCriterionStatus campaignCriterionStatus ) { this . campaignCriterionStatus = campaignCriterionStatus ; }
Sets the campaignCriterionStatus value for this CampaignCriterion .
38,844
public static List < String > getColumnLabels ( ResultSet resultSet ) { return Lists . transform ( Lists . newArrayList ( resultSet . getColumnTypes ( ) ) , new Function < ColumnType , String > ( ) { public String apply ( ColumnType input ) { return input . getLabelName ( ) ; } } ) ; }
Gets the column labels for the result set .
38,845
public static List < String > getRowStringValues ( Row row ) { return Lists . transform ( Lists . newArrayList ( row . getValues ( ) ) , new Function < Value , String > ( ) { public String apply ( Value input ) { return Pql . toString ( input ) ; } } ) ; }
Gets the values in a row of the result set in the form of a string list .
38,846
public static ResultSet combineResultSets ( ResultSet first , ResultSet second ) { Function < ColumnType , String > columnTypeToString = new Function < ColumnType , String > ( ) { public String apply ( ColumnType input ) { return input . getLabelName ( ) ; } } ; List < String > firstColumns = Lists . transform ( Lists . newArrayList ( first . getColumnTypes ( ) ) , columnTypeToString ) ; List < String > secondColumns = Lists . transform ( Lists . newArrayList ( second . getColumnTypes ( ) ) , columnTypeToString ) ; if ( ! firstColumns . equals ( secondColumns ) ) { throw new IllegalArgumentException ( String . format ( "First result set columns [%s] do not match second columns [%s]" , Joiner . on ( "," ) . join ( firstColumns ) , Joiner . on ( "," ) . join ( secondColumns ) ) ) ; } List < Row > combinedRows = Lists . newArrayList ( first . getRows ( ) ) ; if ( second . getRows ( ) != null ) { combinedRows . addAll ( Lists . newArrayList ( second . getRows ( ) ) ) ; } ResultSet combinedResultSet = new ResultSet ( ) ; combinedResultSet . getColumnTypes ( ) . addAll ( first . getColumnTypes ( ) ) ; combinedResultSet . getRows ( ) . addAll ( combinedRows ) ; return combinedResultSet ; }
Combines the first and second result sets if and only if the columns of both result sets match .
38,847
public void setStartDateTime ( com . google . api . ads . admanager . axis . v201811 . DateTime startDateTime ) { this . startDateTime = startDateTime ; }
Sets the startDateTime value for this DateTimeRange .
38,848
public com . google . api . ads . adwords . axis . v201809 . cm . AdGroupCriterionLimitExceededCriteriaLimitType getLimitType ( ) { return limitType ; }
Gets the limitType value for this AdGroupCriterionLimitExceeded .
38,849
public com . google . api . ads . adwords . axis . v201809 . cm . Money getMoney ( ) { return money ; }
Gets the money value for this MoneyWithCurrency .
38,850
private static Double calculateMean ( Number min , Number max ) { if ( min == null || max == null ) { return null ; } return ( min . doubleValue ( ) + max . doubleValue ( ) ) / 2 ; }
Returns the mean of the two Number values if neither is null else returns null .
38,851
public com . google . api . ads . adwords . axis . v201809 . cm . SortOrder getSortOrder ( ) { return sortOrder ; }
Gets the sortOrder value for this OrderBy .
38,852
public com . google . api . ads . admanager . axis . v201805 . Money getRate ( ) { return rate ; }
Gets the rate value for this ProductPackageItemBaseRate .
38,853
public void setRate ( com . google . api . ads . admanager . axis . v201805 . Money rate ) { this . rate = rate ; }
Sets the rate value for this ProductPackageItemBaseRate .
38,854
public com . google . api . ads . adwords . axis . v201809 . cm . GmailTeaser getTeaser ( ) { return teaser ; }
Gets the teaser value for this GmailAd .
38,855
public com . google . api . ads . adwords . axis . v201809 . cm . Image getHeaderImage ( ) { return headerImage ; }
Gets the headerImage value for this GmailAd .
38,856
public com . google . api . ads . adwords . axis . v201809 . cm . Image getMarketingImage ( ) { return marketingImage ; }
Gets the marketingImage value for this GmailAd .
38,857
public com . google . api . ads . adwords . axis . v201809 . cm . DisplayCallToAction getMarketingImageDisplayCallToAction ( ) { return marketingImageDisplayCallToAction ; }
Gets the marketingImageDisplayCallToAction value for this GmailAd .
38,858
public com . google . api . ads . adwords . axis . v201809 . cm . ProductImage [ ] getProductImages ( ) { return productImages ; }
Gets the productImages value for this GmailAd .
38,859
public com . google . api . ads . adwords . axis . v201809 . cm . Video [ ] getProductVideoList ( ) { return productVideoList ; }
Gets the productVideoList value for this GmailAd .
38,860
public void setPolicyTopicEvidenceType ( com . google . api . ads . adwords . axis . v201809 . cm . PolicyTopicEvidenceType policyTopicEvidenceType ) { this . policyTopicEvidenceType = policyTopicEvidenceType ; }
Sets the policyTopicEvidenceType value for this PolicyTopicEvidence .
38,861
public com . google . api . ads . adwords . axis . v201809 . cm . PolicyTopicEvidenceDestinationMismatchUrlType [ ] getPolicyTopicEvidenceDestinationMismatchUrlTypes ( ) { return policyTopicEvidenceDestinationMismatchUrlTypes ; }
Gets the policyTopicEvidenceDestinationMismatchUrlTypes value for this PolicyTopicEvidence .
38,862
public com . google . api . ads . admanager . axis . v201902 . ExportFormat getExportFormat ( ) { return exportFormat ; }
Gets the exportFormat value for this ReportDownloadOptions .
38,863
public void setExportFormat ( com . google . api . ads . admanager . axis . v201902 . ExportFormat exportFormat ) { this . exportFormat = exportFormat ; }
Sets the exportFormat value for this ReportDownloadOptions .
38,864
public com . google . api . ads . adwords . axis . v201809 . cm . AppPaymentModelAppPaymentModelType getAppPaymentModelType ( ) { return appPaymentModelType ; }
Gets the appPaymentModelType value for this AppPaymentModel .
38,865
public com . google . api . ads . adwords . axis . v201809 . rm . UserList [ ] getUserLists ( ) { return userLists ; }
Gets the userLists value for this MutateMembersReturnValue .
38,866
public void setSslManualOverride ( com . google . api . ads . admanager . axis . v201805 . SslManualOverride sslManualOverride ) { this . sslManualOverride = sslManualOverride ; }
Sets the sslManualOverride value for this BaseFlashCreative .
38,867
public com . google . api . ads . admanager . axis . v201805 . CreativeAsset getFlashAsset ( ) { return flashAsset ; }
Gets the flashAsset value for this BaseFlashCreative .
38,868
public void setFlashAsset ( com . google . api . ads . admanager . axis . v201805 . CreativeAsset flashAsset ) { this . flashAsset = flashAsset ; }
Sets the flashAsset value for this BaseFlashCreative .
38,869
public com . google . api . ads . adwords . axis . v201809 . cm . VideoType [ ] getVideoTypes ( ) { return videoTypes ; }
Gets the videoTypes value for this ThirdPartyRedirectAd .
38,870
public com . google . api . ads . adwords . axis . v201809 . cm . ThirdPartyRedirectAdExpandingDirection [ ] getExpandingDirections ( ) { return expandingDirections ; }
Gets the expandingDirections value for this ThirdPartyRedirectAd .
38,871
public com . google . api . ads . admanager . axis . v201811 . Money getGrossRate ( ) { return grossRate ; }
Gets the grossRate value for this ReconciliationLineItemReport .
38,872
public void setGrossRate ( com . google . api . ads . admanager . axis . v201811 . Money grossRate ) { this . grossRate = grossRate ; }
Sets the grossRate value for this ReconciliationLineItemReport .
38,873
public void setPricingModel ( com . google . api . ads . admanager . axis . v201811 . PricingModel pricingModel ) { this . pricingModel = pricingModel ; }
Sets the pricingModel value for this ReconciliationLineItemReport .
38,874
public com . google . api . ads . admanager . axis . v201811 . Money getNetBillableRevenue ( ) { return netBillableRevenue ; }
Gets the netBillableRevenue value for this ReconciliationLineItemReport .
38,875
public com . google . api . ads . adwords . axis . v201809 . cm . UniversalAppBiddingStrategyGoalType getBiddingStrategyGoalType ( ) { return biddingStrategyGoalType ; }
Gets the biddingStrategyGoalType value for this UniversalAppCampaignInfo .
38,876
public com . google . api . ads . adwords . axis . v201809 . cm . MobileApplicationVendor getAppVendor ( ) { return appVendor ; }
Gets the appVendor value for this UniversalAppCampaignInfo .
38,877
public void setCreativeFormat ( com . google . api . ads . admanager . axis . v201902 . RichMediaStudioCreativeFormat creativeFormat ) { this . creativeFormat = creativeFormat ; }
Sets the creativeFormat value for this BaseRichMediaStudioCreative .
38,878
public com . google . api . ads . admanager . axis . v201902 . RichMediaStudioCreativeArtworkType getArtworkType ( ) { return artworkType ; }
Gets the artworkType value for this BaseRichMediaStudioCreative .
38,879
public com . google . api . ads . admanager . axis . v201902 . RichMediaStudioChildAssetProperty [ ] getRichMediaStudioChildAssetProperties ( ) { return richMediaStudioChildAssetProperties ; }
Gets the richMediaStudioChildAssetProperties value for this BaseRichMediaStudioCreative .
38,880
public com . google . api . ads . admanager . axis . v201808 . SetTopBoxSyncStatus getSyncStatus ( ) { return syncStatus ; }
Gets the syncStatus value for this SetTopBoxInfo .
38,881
public com . google . api . ads . admanager . axis . v201805 . PremiumRateValue getPremiumRateValue ( ) { return premiumRateValue ; }
Gets the premiumRateValue value for this ProposalLineItemPremium .
38,882
public void setPremiumRateValue ( com . google . api . ads . admanager . axis . v201805 . PremiumRateValue premiumRateValue ) { this . premiumRateValue = premiumRateValue ; }
Sets the premiumRateValue value for this ProposalLineItemPremium .
38,883
public void setHeadlines ( com . google . api . ads . adwords . axis . v201809 . cm . AssetLink [ ] headlines ) { this . headlines = headlines ; }
Sets the headlines value for this ResponsiveSearchAd .
38,884
public com . google . api . ads . adwords . axis . v201809 . cm . AssetLink [ ] getDescriptions ( ) { return descriptions ; }
Gets the descriptions value for this ResponsiveSearchAd .
38,885
public com . google . api . ads . admanager . axis . v201902 . Money getBudget ( ) { return budget ; }
Gets the budget value for this BuyerRfp .
38,886
public void setCreativePlaceholders ( com . google . api . ads . admanager . axis . v201902 . CreativePlaceholder [ ] creativePlaceholders ) { this . creativePlaceholders = creativePlaceholders ; }
Sets the creativePlaceholders value for this BuyerRfp .
38,887
public void setAdExchangeEnvironment ( com . google . api . ads . admanager . axis . v201902 . AdExchangeEnvironment adExchangeEnvironment ) { this . adExchangeEnvironment = adExchangeEnvironment ; }
Sets the adExchangeEnvironment value for this BuyerRfp .
38,888
public com . google . api . ads . admanager . axis . v201902 . ContentStatusDefinedBy getStatusDefinedBy ( ) { return statusDefinedBy ; }
Gets the statusDefinedBy value for this Content .
38,889
public void setHlsIngestErrors ( com . google . api . ads . admanager . axis . v201902 . DaiIngestError [ ] hlsIngestErrors ) { this . hlsIngestErrors = hlsIngestErrors ; }
Sets the hlsIngestErrors value for this Content .
38,890
public com . google . api . ads . admanager . axis . v201902 . DateTime getLastHlsIngestDateTime ( ) { return lastHlsIngestDateTime ; }
Gets the lastHlsIngestDateTime value for this Content .
38,891
public void setDashIngestErrors ( com . google . api . ads . admanager . axis . v201902 . DaiIngestError [ ] dashIngestErrors ) { this . dashIngestErrors = dashIngestErrors ; }
Sets the dashIngestErrors value for this Content .
38,892
public com . google . api . ads . admanager . axis . v201902 . DateTime getLastDashIngestDateTime ( ) { return lastDashIngestDateTime ; }
Gets the lastDashIngestDateTime value for this Content .
38,893
public void setLastModifiedDateTime ( com . google . api . ads . admanager . axis . v201902 . DateTime lastModifiedDateTime ) { this . lastModifiedDateTime = lastModifiedDateTime ; }
Sets the lastModifiedDateTime value for this Content .
38,894
public void setStatus ( com . google . api . ads . adwords . axis . v201809 . rm . UserListMembershipStatus status ) { this . status = status ; }
Sets the status value for this UserList .
38,895
public com . google . api . ads . adwords . axis . v201809 . rm . AccessReason getAccessReason ( ) { return accessReason ; }
Gets the accessReason value for this UserList .
38,896
public com . google . api . ads . adwords . axis . v201809 . rm . AccountUserListStatus getAccountUserListStatus ( ) { return accountUserListStatus ; }
Gets the accountUserListStatus value for this UserList .
38,897
public com . google . api . ads . adwords . axis . v201809 . rm . SizeRange getSizeRange ( ) { return sizeRange ; }
Gets the sizeRange value for this UserList .
38,898
public com . google . api . ads . adwords . axis . v201809 . rm . SizeRange getSizeRangeForSearch ( ) { return sizeRangeForSearch ; }
Gets the sizeRangeForSearch value for this UserList .
38,899
public void setListType ( com . google . api . ads . adwords . axis . v201809 . rm . UserListType listType ) { this . listType = listType ; }
Sets the listType value for this UserList .