idx
int64 0
41.2k
| question
stringlengths 74
4.04k
| target
stringlengths 7
750
|
|---|---|---|
39,100
|
public void initialize ( HttpRequest httpRequest ) throws IOException { httpRequest . setThrowExceptionOnExecuteError ( false ) ; httpRequest . setFollowRedirects ( false ) ; httpRequest . setNumberOfRetries ( 0 ) ; }
|
Sets attributes of the request that are common to all requests for this handler .
|
39,101
|
private HttpRequest createHttpRequest ( MessageContext msgContext ) throws SOAPException , IOException { Message requestMessage = Preconditions . checkNotNull ( msgContext . getRequestMessage ( ) , "Null request message on message context" ) ; String contentType = requestMessage . getContentType ( msgContext . getSOAPConstants ( ) ) ; ByteArrayOutputStream bos = new ByteArrayOutputStream ( BUFFER_SIZE ) ; if ( msgContext . isPropertyTrue ( HTTPConstants . MC_GZIP_REQUEST ) ) { logger . debug ( "Compressing request" ) ; try ( GZIPOutputStream gzipOs = new GZIPOutputStream ( bos , BUFFER_SIZE ) ) { requestMessage . writeTo ( gzipOs ) ; } } else { logger . debug ( "Not compressing request" ) ; requestMessage . writeTo ( bos ) ; } HttpRequest httpRequest = requestFactory . buildPostRequest ( new GenericUrl ( msgContext . getStrProp ( MessageContext . TRANS_URL ) ) , new ByteArrayContent ( contentType , bos . toByteArray ( ) ) ) ; int timeoutMillis = msgContext . getTimeout ( ) ; if ( timeoutMillis >= 0 ) { logger . debug ( "Setting read and connect timeout to {} millis" , timeoutMillis ) ; httpRequest . setReadTimeout ( timeoutMillis ) ; httpRequest . setConnectTimeout ( timeoutMillis ) ; } setHttpRequestHeaders ( msgContext , httpRequest ) ; return httpRequest ; }
|
Creates an HTTP request based on the message context .
|
39,102
|
private void setHttpRequestHeaders ( MessageContext msgContext , HttpRequest httpRequest ) { @ SuppressWarnings ( "unchecked" ) Map < Object , Object > requestHeaders = ( Map < Object , Object > ) msgContext . getProperty ( HTTPConstants . REQUEST_HEADERS ) ; if ( requestHeaders != null ) { for ( Entry < Object , Object > headerEntry : requestHeaders . entrySet ( ) ) { Object headerKey = headerEntry . getKey ( ) ; if ( headerKey == null ) { continue ; } String headerName = headerKey . toString ( ) . trim ( ) ; Object headerValue = headerEntry . getValue ( ) ; if ( HTTPConstants . HEADER_AUTHORIZATION . equals ( headerName ) && ( headerValue instanceof String ) ) { httpRequest . getHeaders ( ) . setAuthorization ( ( String ) headerValue ) ; } else { httpRequest . getHeaders ( ) . set ( headerName , headerValue ) ; } } } if ( msgContext . isPropertyTrue ( HTTPConstants . MC_GZIP_REQUEST ) ) { httpRequest . getHeaders ( ) . setContentEncoding ( HTTPConstants . COMPRESSION_GZIP ) ; } }
|
Sets HTTP request headers based on the Axis message context .
|
39,103
|
private Message createResponseMessage ( HttpResponse httpResponse ) throws IOException , AxisFault { int statusCode = httpResponse . getStatusCode ( ) ; String contentType = httpResponse . getContentType ( ) ; boolean shouldParseResponse = ( statusCode > 199 && statusCode < 300 ) || ( contentType != null && ! contentType . equals ( "text/html" ) && statusCode > 499 && statusCode < 600 ) ; InputStream responseInputStream = new NotifyingInputStream ( httpResponse . getContent ( ) , inputStreamEventListener ) ; if ( ! shouldParseResponse ) { String statusMessage = httpResponse . getStatusMessage ( ) ; AxisFault axisFault = new AxisFault ( "HTTP" , "(" + statusCode + ")" + statusMessage , null , null ) ; axisFault . addFaultDetail ( Constants . QNAME_FAULTDETAIL_HTTPERRORCODE , String . valueOf ( statusCode ) ) ; try ( InputStream stream = responseInputStream ) { byte [ ] contentBytes = ByteStreams . toByteArray ( stream ) ; axisFault . setFaultDetailString ( Messages . getMessage ( "return01" , String . valueOf ( statusCode ) , new String ( contentBytes , UTF_8 ) ) ) ; } throw axisFault ; } Message responseMessage = new Message ( responseInputStream , false , contentType , httpResponse . getHeaders ( ) . getLocation ( ) ) ; responseMessage . setMessageType ( Message . RESPONSE ) ; return responseMessage ; }
|
Returns a new Axis Message based on the contents of the HTTP response .
|
39,104
|
public void setAdvertiser ( com . google . api . ads . admanager . axis . v201902 . ProposalCompanyAssociation advertiser ) { this . advertiser = advertiser ; }
|
Sets the advertiser value for this Proposal .
|
39,105
|
public com . google . api . ads . admanager . axis . v201902 . ProposalCompanyAssociation [ ] getAgencies ( ) { return agencies ; }
|
Gets the agencies value for this Proposal .
|
39,106
|
public com . google . api . ads . admanager . axis . v201902 . SalespersonSplit [ ] getSecondarySalespeople ( ) { return secondarySalespeople ; }
|
Gets the secondarySalespeople value for this Proposal .
|
39,107
|
public void setSecondarySalespeople ( com . google . api . ads . admanager . axis . v201902 . SalespersonSplit [ ] secondarySalespeople ) { this . secondarySalespeople = secondarySalespeople ; }
|
Sets the secondarySalespeople value for this Proposal .
|
39,108
|
public com . google . api . ads . admanager . axis . v201902 . ProposalApprovalStatus getApprovalStatus ( ) { return approvalStatus ; }
|
Gets the approvalStatus value for this Proposal .
|
39,109
|
public com . google . api . ads . admanager . axis . v201902 . DateTime getActualExpiryTime ( ) { return actualExpiryTime ; }
|
Gets the actualExpiryTime value for this Proposal .
|
39,110
|
public void setActualExpiryTime ( com . google . api . ads . admanager . axis . v201902 . DateTime actualExpiryTime ) { this . actualExpiryTime = actualExpiryTime ; }
|
Sets the actualExpiryTime value for this Proposal .
|
39,111
|
public com . google . api . ads . admanager . axis . v201902 . RetractionDetails getLastRetractionDetails ( ) { return lastRetractionDetails ; }
|
Gets the lastRetractionDetails value for this Proposal .
|
39,112
|
public void setLastRetractionDetails ( com . google . api . ads . admanager . axis . v201902 . RetractionDetails lastRetractionDetails ) { this . lastRetractionDetails = lastRetractionDetails ; }
|
Sets the lastRetractionDetails value for this Proposal .
|
39,113
|
public com . google . api . ads . adwords . axis . v201809 . cm . GeoPoint getGeoPoint ( ) { return geoPoint ; }
|
Gets the geoPoint value for this Proximity .
|
39,114
|
public void setRadiusDistanceUnits ( com . google . api . ads . adwords . axis . v201809 . cm . ProximityDistanceUnits radiusDistanceUnits ) { this . radiusDistanceUnits = radiusDistanceUnits ; }
|
Sets the radiusDistanceUnits value for this Proximity .
|
39,115
|
public com . google . api . ads . adwords . axis . v201809 . cm . Address getAddress ( ) { return address ; }
|
Gets the address value for this Proximity .
|
39,116
|
public com . google . api . ads . adwords . axis . v201809 . mcm . ConversionTrackingSettings getConversionTrackingSettings ( ) { return conversionTrackingSettings ; }
|
Gets the conversionTrackingSettings value for this Customer .
|
39,117
|
public void setRemarketingSettings ( com . google . api . ads . adwords . axis . v201809 . mcm . RemarketingSettings remarketingSettings ) { this . remarketingSettings = remarketingSettings ; }
|
Sets the remarketingSettings value for this Customer .
|
39,118
|
public com . google . api . ads . admanager . axis . v201902 . DateRange getTimeSeriesDateRange ( ) { return timeSeriesDateRange ; }
|
Gets the timeSeriesDateRange value for this TimeSeries .
|
39,119
|
public void setTimeSeriesDateRange ( com . google . api . ads . admanager . axis . v201902 . DateRange timeSeriesDateRange ) { this . timeSeriesDateRange = timeSeriesDateRange ; }
|
Sets the timeSeriesDateRange value for this TimeSeries .
|
39,120
|
public com . google . api . ads . admanager . axis . v201902 . PeriodType getValuePeriodType ( ) { return valuePeriodType ; }
|
Gets the valuePeriodType value for this TimeSeries .
|
39,121
|
public void setValuePeriodType ( com . google . api . ads . admanager . axis . v201902 . PeriodType valuePeriodType ) { this . valuePeriodType = valuePeriodType ; }
|
Sets the valuePeriodType value for this TimeSeries .
|
39,122
|
public void setNetBillableRevenueOverride ( com . google . api . ads . admanager . axis . v201902 . Money netBillableRevenueOverride ) { this . netBillableRevenueOverride = netBillableRevenueOverride ; }
|
Sets the netBillableRevenueOverride value for this BillableRevenueOverrides .
|
39,123
|
public void setGrossBillableRevenueOverride ( com . google . api . ads . admanager . axis . v201902 . Money grossBillableRevenueOverride ) { this . grossBillableRevenueOverride = grossBillableRevenueOverride ; }
|
Sets the grossBillableRevenueOverride value for this BillableRevenueOverrides .
|
39,124
|
public com . google . api . ads . adwords . axis . v201809 . rm . UserListLogicalRuleOperator getOperator ( ) { return operator ; }
|
Gets the operator value for this UserListLogicalRule .
|
39,125
|
public com . google . api . ads . adwords . axis . v201809 . rm . LogicalUserListOperand [ ] getRuleOperands ( ) { return ruleOperands ; }
|
Gets the ruleOperands value for this UserListLogicalRule .
|
39,126
|
public com . google . api . ads . admanager . axis . v201902 . CreativeTargeting [ ] getCreativeTargetings ( ) { return creativeTargetings ; }
|
Gets the creativeTargetings value for this LineItem .
|
39,127
|
public void setContentStatement ( com . google . api . ads . admanager . axis . v201805 . Statement contentStatement ) { this . contentStatement = contentStatement ; }
|
Sets the contentStatement value for this ExcludeContentFromContentBundle .
|
39,128
|
public com . google . api . ads . admanager . axis . v201808 . Money getNetRate ( ) { return netRate ; }
|
Gets the netRate value for this ReconciliationLineItemReport .
|
39,129
|
public void setNetRate ( com . google . api . ads . admanager . axis . v201808 . Money netRate ) { this . netRate = netRate ; }
|
Sets the netRate value for this ReconciliationLineItemReport .
|
39,130
|
public void setNetBillableRevenue ( com . google . api . ads . admanager . axis . v201808 . Money netBillableRevenue ) { this . netBillableRevenue = netBillableRevenue ; }
|
Sets the netBillableRevenue value for this ReconciliationLineItemReport .
|
39,131
|
public com . google . api . ads . admanager . axis . v201808 . Money getGrossBillableRevenue ( ) { return grossBillableRevenue ; }
|
Gets the grossBillableRevenue value for this ReconciliationLineItemReport .
|
39,132
|
public void setGrossBillableRevenue ( com . google . api . ads . admanager . axis . v201808 . Money grossBillableRevenue ) { this . grossBillableRevenue = grossBillableRevenue ; }
|
Sets the grossBillableRevenue value for this ReconciliationLineItemReport .
|
39,133
|
public com . google . api . ads . admanager . axis . v201805 . DaiIngestErrorReason getReason ( ) { return reason ; }
|
Gets the reason value for this DaiIngestError .
|
39,134
|
public void setReason ( com . google . api . ads . admanager . axis . v201805 . DaiIngestErrorReason reason ) { this . reason = reason ; }
|
Sets the reason value for this DaiIngestError .
|
39,135
|
public void setCreativeTemplateVariableValues ( com . google . api . ads . admanager . axis . v201805 . BaseCreativeTemplateVariableValue [ ] creativeTemplateVariableValues ) { this . creativeTemplateVariableValues = creativeTemplateVariableValues ; }
|
Sets the creativeTemplateVariableValues value for this TemplateCreative .
|
39,136
|
public void setTimeWindows ( com . google . api . ads . admanager . axis . v201811 . DateTime [ ] timeWindows ) { this . timeWindows = timeWindows ; }
|
Sets the timeWindows value for this ForecastBreakdownOptions .
|
39,137
|
public void setNegotiationStatus ( com . google . api . ads . admanager . axis . v201902 . NegotiationStatus negotiationStatus ) { this . negotiationStatus = negotiationStatus ; }
|
Sets the negotiationStatus value for this ProposalMarketplaceInfo .
|
39,138
|
public com . google . api . ads . admanager . axis . v201811 . Technology [ ] getMobileCarriers ( ) { return mobileCarriers ; }
|
Gets the mobileCarriers value for this MobileCarrierTargeting .
|
39,139
|
public void setApprovalStatus ( com . google . api . ads . admanager . axis . v201902 . AudienceSegmentApprovalStatus approvalStatus ) { this . approvalStatus = approvalStatus ; }
|
Sets the approvalStatus value for this ThirdPartyAudienceSegment .
|
39,140
|
public com . google . api . ads . adwords . axis . v201809 . rm . PolicyViolationErrorPart [ ] getViolatingParts ( ) { return violatingParts ; }
|
Gets the violatingParts value for this PolicyViolationError .
|
39,141
|
public void setParentPath ( com . google . api . ads . admanager . axis . v201902 . AdUnitParent [ ] parentPath ) { this . parentPath = parentPath ; }
|
Sets the parentPath value for this AdUnit .
|
39,142
|
public void setAdUnitSizes ( com . google . api . ads . admanager . axis . v201902 . AdUnitSize [ ] adUnitSizes ) { this . adUnitSizes = adUnitSizes ; }
|
Sets the adUnitSizes value for this AdUnit .
|
39,143
|
public com . google . api . ads . admanager . axis . v201902 . ValueSourceType getAdSenseSettingsSource ( ) { return adSenseSettingsSource ; }
|
Gets the adSenseSettingsSource value for this AdUnit .
|
39,144
|
public com . google . api . ads . admanager . axis . v201902 . SmartSizeMode getSmartSizeMode ( ) { return smartSizeMode ; }
|
Gets the smartSizeMode value for this AdUnit .
|
39,145
|
public com . google . api . ads . admanager . axis . v201808 . NegotiationStatus getNegotiationStatus ( ) { return negotiationStatus ; }
|
Gets the negotiationStatus value for this ProposalMarketplaceInfo .
|
39,146
|
public com . google . api . ads . admanager . axis . v201808 . Technology [ ] getOperatingSystems ( ) { return operatingSystems ; }
|
Gets the operatingSystems value for this OperatingSystemTargeting .
|
39,147
|
public com . google . api . ads . admanager . axis . v201808 . VastRedirectType getVastRedirectType ( ) { return vastRedirectType ; }
|
Gets the vastRedirectType value for this VastRedirectCreative .
|
39,148
|
public void setChannelExclusivity ( com . google . api . ads . adwords . axis . v201809 . cm . ShoppingProductChannelExclusivity channelExclusivity ) { this . channelExclusivity = channelExclusivity ; }
|
Sets the channelExclusivity value for this ProductChannelExclusivity .
|
39,149
|
public void setBudget ( com . google . api . ads . admanager . axis . v201811 . Money budget ) { this . budget = budget ; }
|
Sets the budget value for this BuyerRfp .
|
39,150
|
public com . google . api . ads . admanager . axis . v201811 . CreativePlaceholder [ ] getCreativePlaceholders ( ) { return creativePlaceholders ; }
|
Gets the creativePlaceholders value for this BuyerRfp .
|
39,151
|
public void setRfpType ( com . google . api . ads . admanager . axis . v201811 . RfpType rfpType ) { this . rfpType = rfpType ; }
|
Sets the rfpType value for this BuyerRfp .
|
39,152
|
public com . google . api . ads . admanager . axis . v201805 . VideoPosition getVideoPosition ( ) { return videoPosition ; }
|
Gets the videoPosition value for this VideoPositionTarget .
|
39,153
|
private Set < OrderBy > copyOrderingSet ( ) { Set < OrderBy > orderingCopy = Sets . newLinkedHashSet ( ) ; for ( OrderBy order : this . ordering ) { OrderBy copyOrder = new OrderBy ( ) ; copyOrder . setField ( order . getField ( ) ) ; copyOrder . setSortOrder ( order . getSortOrder ( ) ) ; orderingCopy . add ( copyOrder ) ; } return orderingCopy ; }
|
Copies the whole set of OrderBy objects by creating new instances of each one in the given set .
|
39,154
|
private SelectorBuilderImpl singleValuePredicate ( String field , String propertyValue , PredicateOperator operator ) { Predicate predicate = new Predicate ( ) ; predicate . setField ( field ) ; predicate . setOperator ( operator ) ; String [ ] values = new String [ 1 ] ; values [ 0 ] = propertyValue ; predicate . setValues ( values ) ; this . predicates . add ( predicate ) ; return this ; }
|
Adds a predicate for the specified field property value and operator .
|
39,155
|
public com . google . api . ads . adwords . axis . v201809 . o . StatsEstimate getMin ( ) { return min ; }
|
Gets the min value for this KeywordEstimate .
|
39,156
|
public com . google . api . ads . adwords . axis . v201809 . o . StatsEstimate getMax ( ) { return max ; }
|
Gets the max value for this KeywordEstimate .
|
39,157
|
public void setReconciliationSource ( com . google . api . ads . admanager . axis . v201805 . BillFrom reconciliationSource ) { this . reconciliationSource = reconciliationSource ; }
|
Sets the reconciliationSource value for this ReconciliationLineItemReport .
|
39,158
|
public com . google . api . ads . admanager . axis . v201805 . BillableRevenueOverrides getBillableRevenueOverrides ( ) { return billableRevenueOverrides ; }
|
Gets the billableRevenueOverrides value for this ReconciliationLineItemReport .
|
39,159
|
public com . google . api . ads . admanager . axis . v201902 . LineItem getLineItem ( ) { return lineItem ; }
|
Gets the lineItem value for this ProspectiveLineItem .
|
39,160
|
public void setLineItem ( com . google . api . ads . admanager . axis . v201902 . LineItem lineItem ) { this . lineItem = lineItem ; }
|
Sets the lineItem value for this ProspectiveLineItem .
|
39,161
|
public com . google . api . ads . admanager . axis . v201805 . DateTime getErrorTime ( ) { return errorTime ; }
|
Gets the errorTime value for this OfflineError .
|
39,162
|
public void setErrorTime ( com . google . api . ads . admanager . axis . v201805 . DateTime errorTime ) { this . errorTime = errorTime ; }
|
Sets the errorTime value for this OfflineError .
|
39,163
|
public com . google . api . ads . admanager . axis . v201811 . DeliveryRateType getDeliveryRateType ( ) { return deliveryRateType ; }
|
Gets the deliveryRateType value for this LineItemSummary .
|
39,164
|
public void setDeliveryRateType ( com . google . api . ads . admanager . axis . v201811 . DeliveryRateType deliveryRateType ) { this . deliveryRateType = deliveryRateType ; }
|
Sets the deliveryRateType value for this LineItemSummary .
|
39,165
|
public com . google . api . ads . admanager . axis . v201811 . LineItemType getLineItemType ( ) { return lineItemType ; }
|
Gets the lineItemType value for this LineItemSummary .
|
39,166
|
public void setLineItemType ( com . google . api . ads . admanager . axis . v201811 . LineItemType lineItemType ) { this . lineItemType = lineItemType ; }
|
Sets the lineItemType value for this LineItemSummary .
|
39,167
|
public void setEnvironmentType ( com . google . api . ads . admanager . axis . v201811 . EnvironmentType environmentType ) { this . environmentType = environmentType ; }
|
Sets the environmentType value for this LineItemSummary .
|
39,168
|
public com . google . api . ads . admanager . axis . v201811 . CompanionDeliveryOption getCompanionDeliveryOption ( ) { return companionDeliveryOption ; }
|
Gets the companionDeliveryOption value for this LineItemSummary .
|
39,169
|
public void setCompanionDeliveryOption ( com . google . api . ads . admanager . axis . v201811 . CompanionDeliveryOption companionDeliveryOption ) { this . companionDeliveryOption = companionDeliveryOption ; }
|
Sets the companionDeliveryOption value for this LineItemSummary .
|
39,170
|
public com . google . api . ads . admanager . axis . v201811 . ComputedStatus getStatus ( ) { return status ; }
|
Gets the status value for this LineItemSummary .
|
39,171
|
public void setAppliedLabels ( com . google . api . ads . admanager . axis . v201811 . AppliedLabel [ ] appliedLabels ) { this . appliedLabels = appliedLabels ; }
|
Sets the appliedLabels value for this LineItemSummary .
|
39,172
|
public com . google . api . ads . admanager . axis . v201811 . Goal [ ] getSecondaryGoals ( ) { return secondaryGoals ; }
|
Gets the secondaryGoals value for this LineItemSummary .
|
39,173
|
public com . google . api . ads . admanager . axis . v201811 . UserConsentEligibility getUserConsentEligibility ( ) { return userConsentEligibility ; }
|
Gets the userConsentEligibility value for this LineItemSummary .
|
39,174
|
public com . google . api . ads . admanager . axis . v201811 . CustomCriteriaSetLogicalOperator getLogicalOperator ( ) { return logicalOperator ; }
|
Gets the logicalOperator value for this CustomCriteriaSet .
|
39,175
|
public void setChildren ( com . google . api . ads . admanager . axis . v201811 . CustomCriteriaNode [ ] children ) { this . children = children ; }
|
Sets the children value for this CustomCriteriaSet .
|
39,176
|
public com . google . api . ads . adwords . axis . v201809 . cm . OAuthInfo getOAuthInfo ( ) { return oAuthInfo ; }
|
Gets the oAuthInfo value for this PlacesLocationFeedData .
|
39,177
|
public void setAttributeValues ( com . google . api . ads . adwords . axis . v201809 . cm . FeedItemAttributeValue [ ] attributeValues ) { this . attributeValues = attributeValues ; }
|
Sets the attributeValues value for this FeedItem .
|
39,178
|
public com . google . api . ads . adwords . axis . v201809 . cm . FeedItemPolicySummary [ ] getPolicySummaries ( ) { return policySummaries ; }
|
Gets the policySummaries value for this FeedItem .
|
39,179
|
public void setGeoTargetingRestriction ( com . google . api . ads . adwords . axis . v201809 . cm . FeedItemGeoRestriction geoTargetingRestriction ) { this . geoTargetingRestriction = geoTargetingRestriction ; }
|
Sets the geoTargetingRestriction value for this FeedItem .
|
39,180
|
public String getServiceUrlGroup ( String version , String service ) { String [ ] groups = config . getStringArray ( "api.adwords.version." + version + ".groups" ) ; for ( String group : groups ) { String [ ] services = config . getStringArray ( "api.adwords.version." + version + "." + group + ".services" ) ; if ( Lists . newArrayList ( services ) . contains ( service ) ) { return group ; } } throw new NullPointerException ( "No group found for service: " + version + "." + service ) ; }
|
Gets the service URL group for the service and version .
|
39,181
|
public void setExcludedDeviceCapabilities ( com . google . api . ads . admanager . axis . v201805 . Technology [ ] excludedDeviceCapabilities ) { this . excludedDeviceCapabilities = excludedDeviceCapabilities ; }
|
Sets the excludedDeviceCapabilities value for this DeviceCapabilityTargeting .
|
39,182
|
public com . google . api . ads . adwords . axis . v201809 . cm . WebpageParameter getParameter ( ) { return parameter ; }
|
Gets the parameter value for this Webpage .
|
39,183
|
public com . google . api . ads . admanager . axis . v201808 . Money getCostPerUnit ( ) { return costPerUnit ; }
|
Gets the costPerUnit value for this LineItemSummary .
|
39,184
|
public com . google . api . ads . admanager . axis . v201808 . Money getValueCostPerUnit ( ) { return valueCostPerUnit ; }
|
Gets the valueCostPerUnit value for this LineItemSummary .
|
39,185
|
public void setDiscountType ( com . google . api . ads . admanager . axis . v201808 . LineItemDiscountType discountType ) { this . discountType = discountType ; }
|
Sets the discountType value for this LineItemSummary .
|
39,186
|
public com . google . api . ads . admanager . axis . v201808 . DeliveryIndicator getDeliveryIndicator ( ) { return deliveryIndicator ; }
|
Gets the deliveryIndicator value for this LineItemSummary .
|
39,187
|
public void setDeliveryIndicator ( com . google . api . ads . admanager . axis . v201808 . DeliveryIndicator deliveryIndicator ) { this . deliveryIndicator = deliveryIndicator ; }
|
Sets the deliveryIndicator value for this LineItemSummary .
|
39,188
|
public com . google . api . ads . admanager . axis . v201808 . DeliveryData getDeliveryData ( ) { return deliveryData ; }
|
Gets the deliveryData value for this LineItemSummary .
|
39,189
|
public void setDeliveryData ( com . google . api . ads . admanager . axis . v201808 . DeliveryData deliveryData ) { this . deliveryData = deliveryData ; }
|
Sets the deliveryData value for this LineItemSummary .
|
39,190
|
public com . google . api . ads . admanager . axis . v201808 . DateTime getCreationDateTime ( ) { return creationDateTime ; }
|
Gets the creationDateTime value for this LineItemSummary .
|
39,191
|
public void setCreationDateTime ( com . google . api . ads . admanager . axis . v201808 . DateTime creationDateTime ) { this . creationDateTime = creationDateTime ; }
|
Sets the creationDateTime value for this LineItemSummary .
|
39,192
|
public com . google . api . ads . admanager . axis . v201808 . SetTopBoxInfo getSetTopBoxDisplayInfo ( ) { return setTopBoxDisplayInfo ; }
|
Gets the setTopBoxDisplayInfo value for this LineItemSummary .
|
39,193
|
public void setPrimaryGoal ( com . google . api . ads . admanager . axis . v201808 . Goal primaryGoal ) { this . primaryGoal = primaryGoal ; }
|
Sets the primaryGoal value for this LineItemSummary .
|
39,194
|
public void setUserConsentEligibility ( com . google . api . ads . admanager . axis . v201808 . UserConsentEligibility userConsentEligibility ) { this . userConsentEligibility = userConsentEligibility ; }
|
Sets the userConsentEligibility value for this LineItemSummary .
|
39,195
|
public void setKey ( com . google . api . ads . adwords . axis . v201809 . cm . MediaSize key ) { this . key = key ; }
|
Sets the key value for this Media_Size_DimensionsMapEntry .
|
39,196
|
public com . google . api . ads . admanager . axis . v201902 . CreativeAsset [ ] getSecondaryImageAssets ( ) { return secondaryImageAssets ; }
|
Gets the secondaryImageAssets value for this ImageCreative .
|
39,197
|
public com . google . api . ads . adwords . axis . v201809 . cm . Image getProductImage ( ) { return productImage ; }
|
Gets the productImage value for this ProductImage .
|
39,198
|
public com . google . api . ads . adwords . axis . v201809 . cm . DisplayCallToAction getDisplayCallToAction ( ) { return displayCallToAction ; }
|
Gets the displayCallToAction value for this ProductImage .
|
39,199
|
public com . google . api . ads . admanager . axis . v201805 . InventoryTargeting getInventoryTargeting ( ) { return inventoryTargeting ; }
|
Gets the inventoryTargeting value for this Targeting .
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.