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/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java
HttpHandler.initialize
@Override public void initialize(HttpRequest httpRequest) throws IOException { // Do not throw if execute fails, since Axis will handle unmarshalling the // fault. httpRequest.setThrowExceptionOnExecuteError(false); // For consistency with the default Axis HTTPSender and CommonsHTTPSender, do not ...
java
@Override public void initialize(HttpRequest httpRequest) throws IOException { // Do not throw if execute fails, since Axis will handle unmarshalling the // fault. httpRequest.setThrowExceptionOnExecuteError(false); // For consistency with the default Axis HTTPSender and CommonsHTTPSender, do not ...
[ "@", "Override", "public", "void", "initialize", "(", "HttpRequest", "httpRequest", ")", "throws", "IOException", "{", "// Do not throw if execute fails, since Axis will handle unmarshalling the", "// fault.", "httpRequest", ".", "setThrowExceptionOnExecuteError", "(", "false", ...
Sets attributes of the request that are common to all requests for this handler.
[ "Sets", "attributes", "of", "the", "request", "that", "are", "common", "to", "all", "requests", "for", "this", "handler", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java#L94-L106
train
googleads/googleads-java-lib
modules/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java
HttpHandler.createHttpRequest
private HttpRequest createHttpRequest(MessageContext msgContext) throws SOAPException, IOException { Message requestMessage = Preconditions.checkNotNull( msgContext.getRequestMessage(), "Null request message on message context"); // Construct the output stream. String contentT...
java
private HttpRequest createHttpRequest(MessageContext msgContext) throws SOAPException, IOException { Message requestMessage = Preconditions.checkNotNull( msgContext.getRequestMessage(), "Null request message on message context"); // Construct the output stream. String contentT...
[ "private", "HttpRequest", "createHttpRequest", "(", "MessageContext", "msgContext", ")", "throws", "SOAPException", ",", "IOException", "{", "Message", "requestMessage", "=", "Preconditions", ".", "checkNotNull", "(", "msgContext", ".", "getRequestMessage", "(", ")", ...
Creates an HTTP request based on the message context. @param msgContext the Axis message context @return a new {@link HttpRequest} with content and headers populated
[ "Creates", "an", "HTTP", "request", "based", "on", "the", "message", "context", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java#L114-L151
train
googleads/googleads-java-lib
modules/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java
HttpHandler.setHttpRequestHeaders
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> hea...
java
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> hea...
[ "private", "void", "setHttpRequestHeaders", "(", "MessageContext", "msgContext", ",", "HttpRequest", "httpRequest", ")", "{", "@", "SuppressWarnings", "(", "\"unchecked\"", ")", "Map", "<", "Object", ",", "Object", ">", "requestHeaders", "=", "(", "Map", "<", "O...
Sets HTTP request headers based on the Axis message context.
[ "Sets", "HTTP", "request", "headers", "based", "on", "the", "Axis", "message", "context", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java#L154-L179
train
googleads/googleads-java-lib
modules/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java
HttpHandler.createResponseMessage
private Message createResponseMessage(HttpResponse httpResponse) throws IOException, AxisFault { int statusCode = httpResponse.getStatusCode(); String contentType = httpResponse.getContentType(); // The conditions below duplicate the logic in CommonsHTTPSender and HTTPSender. boolean shouldParseResponse...
java
private Message createResponseMessage(HttpResponse httpResponse) throws IOException, AxisFault { int statusCode = httpResponse.getStatusCode(); String contentType = httpResponse.getContentType(); // The conditions below duplicate the logic in CommonsHTTPSender and HTTPSender. boolean shouldParseResponse...
[ "private", "Message", "createResponseMessage", "(", "HttpResponse", "httpResponse", ")", "throws", "IOException", ",", "AxisFault", "{", "int", "statusCode", "=", "httpResponse", ".", "getStatusCode", "(", ")", ";", "String", "contentType", "=", "httpResponse", ".",...
Returns a new Axis Message based on the contents of the HTTP response. @param httpResponse the HTTP response @return an Axis Message for the HTTP response @throws IOException if unable to retrieve the HTTP response's contents @throws AxisFault if the HTTP response's status or contents indicate an unexpected error, suc...
[ "Returns", "a", "new", "Axis", "Message", "based", "on", "the", "contents", "of", "the", "HTTP", "response", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib_axis/src/main/java/com/google/api/ads/common/lib/soap/axis/HttpHandler.java#L190-L228
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.setAdvertiser
public void setAdvertiser(com.google.api.ads.admanager.axis.v201902.ProposalCompanyAssociation advertiser) { this.advertiser = advertiser; }
java
public void setAdvertiser(com.google.api.ads.admanager.axis.v201902.ProposalCompanyAssociation advertiser) { this.advertiser = advertiser; }
[ "public", "void", "setAdvertiser", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "ProposalCompanyAssociation", "advertiser", ")", "{", "this", ".", "advertiser", "=", "advertiser", ";", "}" ]
Sets the advertiser value for this Proposal. @param advertiser * The advertiser, to which this {@code Proposal} belongs, and a set of {@link Contact} objects associated with the advertiser. The {@link ProposalCompanyAssociation#type} of this attribute should be {@link ProposalCompanyAssociationType#ADVERTISER}. This...
[ "Sets", "the", "advertiser", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L1068-L1070
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.getAgencies
public com.google.api.ads.admanager.axis.v201902.ProposalCompanyAssociation[] getAgencies() { return agencies; }
java
public com.google.api.ads.admanager.axis.v201902.ProposalCompanyAssociation[] getAgencies() { return agencies; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "ProposalCompanyAssociation", "[", "]", "getAgencies", "(", ")", "{", "return", "agencies", ";", "}" ]
Gets the agencies value for this Proposal. @return agencies * List of agencies and the set of {@link Contact} objects associated with each agency. This attribute is optional. A {@code Proposal} only has at most one {@link Company} with {@link ProposalCompanyAssociationType#PRIMARY_AGENCY} type, but a {@link Company}...
[ "Gets", "the", "agencies", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L1091-L1093
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.getSecondarySalespeople
public com.google.api.ads.admanager.axis.v201902.SalespersonSplit[] getSecondarySalespeople() { return secondarySalespeople; }
java
public com.google.api.ads.admanager.axis.v201902.SalespersonSplit[] getSecondarySalespeople() { return secondarySalespeople; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "SalespersonSplit", "[", "]", "getSecondarySalespeople", "(", ")", "{", "return", "secondarySalespeople", ";", "}" ]
Gets the secondarySalespeople value for this Proposal. @return secondarySalespeople * List of secondary salespeople who are responsible for the sales of the {@code Proposal} besides primary salesperson. This attribute is optional. A proposal could have 8 secondary salespeople at most, but must also have a {@link #pr...
[ "Gets", "the", "secondarySalespeople", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L1515-L1517
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.setSecondarySalespeople
public void setSecondarySalespeople(com.google.api.ads.admanager.axis.v201902.SalespersonSplit[] secondarySalespeople) { this.secondarySalespeople = secondarySalespeople; }
java
public void setSecondarySalespeople(com.google.api.ads.admanager.axis.v201902.SalespersonSplit[] secondarySalespeople) { this.secondarySalespeople = secondarySalespeople; }
[ "public", "void", "setSecondarySalespeople", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "SalespersonSplit", "[", "]", "secondarySalespeople", ")", "{", "this", ".", "secondarySalespeople", "=", "secon...
Sets the secondarySalespeople value for this Proposal. @param secondarySalespeople * List of secondary salespeople who are responsible for the sales of the {@code Proposal} besides primary salesperson. This attribute is optional. A proposal could have 8 secondary salespeople at most, but must also have a {@link #pri...
[ "Sets", "the", "secondarySalespeople", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L1538-L1540
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.getApprovalStatus
public com.google.api.ads.admanager.axis.v201902.ProposalApprovalStatus getApprovalStatus() { return approvalStatus; }
java
public com.google.api.ads.admanager.axis.v201902.ProposalApprovalStatus getApprovalStatus() { return approvalStatus; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "ProposalApprovalStatus", "getApprovalStatus", "(", ")", "{", "return", "approvalStatus", ";", "}" ]
Gets the approvalStatus value for this Proposal. @return approvalStatus * The approval status of the {@code Proposal} for the active user or {@code null} if the active user has no action needed. <span class="constraint Applicable">This attribute is applicable when:<ul><li>using programmatic guaranteed, using sales m...
[ "Gets", "the", "approvalStatus", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L2136-L2138
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.getActualExpiryTime
public com.google.api.ads.admanager.axis.v201902.DateTime getActualExpiryTime() { return actualExpiryTime; }
java
public com.google.api.ads.admanager.axis.v201902.DateTime getActualExpiryTime() { return actualExpiryTime; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "DateTime", "getActualExpiryTime", "(", ")", "{", "return", "actualExpiryTime", ";", "}" ]
Gets the actualExpiryTime value for this Proposal. @return actualExpiryTime * The actual date and time at which the inventory reserved by the {@link Proposal} will expire. <span class="constraint Applicable">This attribute is applicable when:<ul><li>using programmatic guaranteed, using sales management.</li><li>not ...
[ "Gets", "the", "actualExpiryTime", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L2269-L2271
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.setActualExpiryTime
public void setActualExpiryTime(com.google.api.ads.admanager.axis.v201902.DateTime actualExpiryTime) { this.actualExpiryTime = actualExpiryTime; }
java
public void setActualExpiryTime(com.google.api.ads.admanager.axis.v201902.DateTime actualExpiryTime) { this.actualExpiryTime = actualExpiryTime; }
[ "public", "void", "setActualExpiryTime", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "DateTime", "actualExpiryTime", ")", "{", "this", ".", "actualExpiryTime", "=", "actualExpiryTime", ";", "}" ]
Sets the actualExpiryTime value for this Proposal. @param actualExpiryTime * The actual date and time at which the inventory reserved by the {@link Proposal} will expire. <span class="constraint Applicable">This attribute is applicable when:<ul><li>using programmatic guaranteed, using sales management.</li><li>not u...
[ "Sets", "the", "actualExpiryTime", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L2286-L2288
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.getLastRetractionDetails
public com.google.api.ads.admanager.axis.v201902.RetractionDetails getLastRetractionDetails() { return lastRetractionDetails; }
java
public com.google.api.ads.admanager.axis.v201902.RetractionDetails getLastRetractionDetails() { return lastRetractionDetails; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "RetractionDetails", "getLastRetractionDetails", "(", ")", "{", "return", "lastRetractionDetails", ";", "}" ]
Gets the lastRetractionDetails value for this Proposal. @return lastRetractionDetails * Details describing the most recent proposal retraction. <span class="constraint Applicable">This attribute is applicable when:<ul><li>using programmatic guaranteed, using sales management.</li><li>not using programmatic, using sa...
[ "Gets", "the", "lastRetractionDetails", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L2452-L2454
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java
Proposal.setLastRetractionDetails
public void setLastRetractionDetails(com.google.api.ads.admanager.axis.v201902.RetractionDetails lastRetractionDetails) { this.lastRetractionDetails = lastRetractionDetails; }
java
public void setLastRetractionDetails(com.google.api.ads.admanager.axis.v201902.RetractionDetails lastRetractionDetails) { this.lastRetractionDetails = lastRetractionDetails; }
[ "public", "void", "setLastRetractionDetails", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "RetractionDetails", "lastRetractionDetails", ")", "{", "this", ".", "lastRetractionDetails", "=", "lastRetractionD...
Sets the lastRetractionDetails value for this Proposal. @param lastRetractionDetails * Details describing the most recent proposal retraction. <span class="constraint Applicable">This attribute is applicable when:<ul><li>using programmatic guaranteed, using sales management.</li><li>not using programmatic, using sal...
[ "Sets", "the", "lastRetractionDetails", "value", "for", "this", "Proposal", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/Proposal.java#L2468-L2470
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Proximity.java
Proximity.getGeoPoint
public com.google.api.ads.adwords.axis.v201809.cm.GeoPoint getGeoPoint() { return geoPoint; }
java
public com.google.api.ads.adwords.axis.v201809.cm.GeoPoint getGeoPoint() { return geoPoint; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "GeoPoint", "getGeoPoint", "(", ")", "{", "return", "geoPoint", ";", "}" ]
Gets the geoPoint value for this Proximity. @return geoPoint * Latitude and longitude.
[ "Gets", "the", "geoPoint", "value", "for", "this", "Proximity", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Proximity.java#L98-L100
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Proximity.java
Proximity.setRadiusDistanceUnits
public void setRadiusDistanceUnits(com.google.api.ads.adwords.axis.v201809.cm.ProximityDistanceUnits radiusDistanceUnits) { this.radiusDistanceUnits = radiusDistanceUnits; }
java
public void setRadiusDistanceUnits(com.google.api.ads.adwords.axis.v201809.cm.ProximityDistanceUnits radiusDistanceUnits) { this.radiusDistanceUnits = radiusDistanceUnits; }
[ "public", "void", "setRadiusDistanceUnits", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "ProximityDistanceUnits", "radiusDistanceUnits", ")", "{", "this", ".", "radiusDistanceUnits", "=", "rad...
Sets the radiusDistanceUnits value for this Proximity. @param radiusDistanceUnits * Radius distance units. <span class="constraint Required">This field is required and should not be {@code null} when it is contained within {@link Operator}s : ADD.</span>
[ "Sets", "the", "radiusDistanceUnits", "value", "for", "this", "Proximity", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Proximity.java#L134-L136
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Proximity.java
Proximity.getAddress
public com.google.api.ads.adwords.axis.v201809.cm.Address getAddress() { return address; }
java
public com.google.api.ads.adwords.axis.v201809.cm.Address getAddress() { return address; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "Address", "getAddress", "(", ")", "{", "return", "address", ";", "}" ]
Gets the address value for this Proximity. @return address * Full address; <code>null</code> if unknonwn.
[ "Gets", "the", "address", "value", "for", "this", "Proximity", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Proximity.java#L170-L172
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/mcm/Customer.java
Customer.getConversionTrackingSettings
public com.google.api.ads.adwords.axis.v201809.mcm.ConversionTrackingSettings getConversionTrackingSettings() { return conversionTrackingSettings; }
java
public com.google.api.ads.adwords.axis.v201809.mcm.ConversionTrackingSettings getConversionTrackingSettings() { return conversionTrackingSettings; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "mcm", ".", "ConversionTrackingSettings", "getConversionTrackingSettings", "(", ")", "{", "return", "conversionTrackingSettings", ";", "}" ]
Gets the conversionTrackingSettings value for this Customer. @return conversionTrackingSettings * Customer-level AdWords Conversion Tracking settings
[ "Gets", "the", "conversionTrackingSettings", "value", "for", "this", "Customer", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/mcm/Customer.java#L408-L410
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/mcm/Customer.java
Customer.setRemarketingSettings
public void setRemarketingSettings(com.google.api.ads.adwords.axis.v201809.mcm.RemarketingSettings remarketingSettings) { this.remarketingSettings = remarketingSettings; }
java
public void setRemarketingSettings(com.google.api.ads.adwords.axis.v201809.mcm.RemarketingSettings remarketingSettings) { this.remarketingSettings = remarketingSettings; }
[ "public", "void", "setRemarketingSettings", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "mcm", ".", "RemarketingSettings", "remarketingSettings", ")", "{", "this", ".", "remarketingSettings", "=", "remar...
Sets the remarketingSettings value for this Customer. @param remarketingSettings * Customer-level AdWords Remarketing settings <span class="constraint ReadOnly">This field is read only and will be ignored when sent to the API.</span>
[ "Sets", "the", "remarketingSettings", "value", "for", "this", "Customer", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/mcm/Customer.java#L442-L444
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java
TimeSeries.getTimeSeriesDateRange
public com.google.api.ads.admanager.axis.v201902.DateRange getTimeSeriesDateRange() { return timeSeriesDateRange; }
java
public com.google.api.ads.admanager.axis.v201902.DateRange getTimeSeriesDateRange() { return timeSeriesDateRange; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "DateRange", "getTimeSeriesDateRange", "(", ")", "{", "return", "timeSeriesDateRange", ";", "}" ]
Gets the timeSeriesDateRange value for this TimeSeries. @return timeSeriesDateRange * The date range of the time series.
[ "Gets", "the", "timeSeriesDateRange", "value", "for", "this", "TimeSeries", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java#L76-L78
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java
TimeSeries.setTimeSeriesDateRange
public void setTimeSeriesDateRange(com.google.api.ads.admanager.axis.v201902.DateRange timeSeriesDateRange) { this.timeSeriesDateRange = timeSeriesDateRange; }
java
public void setTimeSeriesDateRange(com.google.api.ads.admanager.axis.v201902.DateRange timeSeriesDateRange) { this.timeSeriesDateRange = timeSeriesDateRange; }
[ "public", "void", "setTimeSeriesDateRange", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "DateRange", "timeSeriesDateRange", ")", "{", "this", ".", "timeSeriesDateRange", "=", "timeSeriesDateRange", ";", ...
Sets the timeSeriesDateRange value for this TimeSeries. @param timeSeriesDateRange * The date range of the time series.
[ "Sets", "the", "timeSeriesDateRange", "value", "for", "this", "TimeSeries", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java#L86-L88
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java
TimeSeries.getValuePeriodType
public com.google.api.ads.admanager.axis.v201902.PeriodType getValuePeriodType() { return valuePeriodType; }
java
public com.google.api.ads.admanager.axis.v201902.PeriodType getValuePeriodType() { return valuePeriodType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "PeriodType", "getValuePeriodType", "(", ")", "{", "return", "valuePeriodType", ";", "}" ]
Gets the valuePeriodType value for this TimeSeries. @return valuePeriodType * The period of each time series value (e.g. daily or custom).
[ "Gets", "the", "valuePeriodType", "value", "for", "this", "TimeSeries", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java#L136-L138
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java
TimeSeries.setValuePeriodType
public void setValuePeriodType(com.google.api.ads.admanager.axis.v201902.PeriodType valuePeriodType) { this.valuePeriodType = valuePeriodType; }
java
public void setValuePeriodType(com.google.api.ads.admanager.axis.v201902.PeriodType valuePeriodType) { this.valuePeriodType = valuePeriodType; }
[ "public", "void", "setValuePeriodType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "PeriodType", "valuePeriodType", ")", "{", "this", ".", "valuePeriodType", "=", "valuePeriodType", ";", "}" ]
Sets the valuePeriodType value for this TimeSeries. @param valuePeriodType * The period of each time series value (e.g. daily or custom).
[ "Sets", "the", "valuePeriodType", "value", "for", "this", "TimeSeries", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/TimeSeries.java#L146-L148
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/BillableRevenueOverrides.java
BillableRevenueOverrides.setNetBillableRevenueOverride
public void setNetBillableRevenueOverride(com.google.api.ads.admanager.axis.v201902.Money netBillableRevenueOverride) { this.netBillableRevenueOverride = netBillableRevenueOverride; }
java
public void setNetBillableRevenueOverride(com.google.api.ads.admanager.axis.v201902.Money netBillableRevenueOverride) { this.netBillableRevenueOverride = netBillableRevenueOverride; }
[ "public", "void", "setNetBillableRevenueOverride", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "Money", "netBillableRevenueOverride", ")", "{", "this", ".", "netBillableRevenueOverride", "=", "netBillableR...
Sets the netBillableRevenueOverride value for this BillableRevenueOverrides. @param netBillableRevenueOverride * The overridden {@link ReconciliationLineItemReport#netBillableRevenue}. <p>If the {@link ReconciliationLineItemReport} data is for a {@link ProposalLineItem} and the {@link ReconciliationLineItemReport#p...
[ "Sets", "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/v201902/BillableRevenueOverrides.java#L130-L132
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/BillableRevenueOverrides.java
BillableRevenueOverrides.setGrossBillableRevenueOverride
public void setGrossBillableRevenueOverride(com.google.api.ads.admanager.axis.v201902.Money grossBillableRevenueOverride) { this.grossBillableRevenueOverride = grossBillableRevenueOverride; }
java
public void setGrossBillableRevenueOverride(com.google.api.ads.admanager.axis.v201902.Money grossBillableRevenueOverride) { this.grossBillableRevenueOverride = grossBillableRevenueOverride; }
[ "public", "void", "setGrossBillableRevenueOverride", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "Money", "grossBillableRevenueOverride", ")", "{", "this", ".", "grossBillableRevenueOverride", "=", "grossB...
Sets the grossBillableRevenueOverride value for this BillableRevenueOverrides. @param 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 r...
[ "Sets", "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/v201902/BillableRevenueOverrides.java#L162-L164
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/UserListLogicalRule.java
UserListLogicalRule.getOperator
public com.google.api.ads.adwords.axis.v201809.rm.UserListLogicalRuleOperator getOperator() { return operator; }
java
public com.google.api.ads.adwords.axis.v201809.rm.UserListLogicalRuleOperator getOperator() { return operator; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "rm", ".", "UserListLogicalRuleOperator", "getOperator", "(", ")", "{", "return", "operator", ";", "}" ]
Gets the operator value for this UserListLogicalRule. @return operator * The logical operator of the rule. <span class="constraint Required">This field is required and should not be {@code null}.</span>
[ "Gets", "the", "operator", "value", "for", "this", "UserListLogicalRule", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/UserListLogicalRule.java#L71-L73
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/UserListLogicalRule.java
UserListLogicalRule.getRuleOperands
public com.google.api.ads.adwords.axis.v201809.rm.LogicalUserListOperand[] getRuleOperands() { return ruleOperands; }
java
public com.google.api.ads.adwords.axis.v201809.rm.LogicalUserListOperand[] getRuleOperands() { return ruleOperands; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "rm", ".", "LogicalUserListOperand", "[", "]", "getRuleOperands", "(", ")", "{", "return", "ruleOperands", ";", "}" ]
Gets the ruleOperands value for this UserListLogicalRule. @return ruleOperands * The list of operands of the rule. <span class="constraint ContentsNotNull">This field must not contain {@code null} elements.</span> <span class="constraint NotEmpty">This field must contain at least one element.</span> <span class="con...
[ "Gets", "the", "ruleOperands", "value", "for", "this", "UserListLogicalRule", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/UserListLogicalRule.java#L99-L101
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/LineItem.java
LineItem.getCreativeTargetings
public com.google.api.ads.admanager.axis.v201902.CreativeTargeting[] getCreativeTargetings() { return creativeTargetings; }
java
public com.google.api.ads.admanager.axis.v201902.CreativeTargeting[] getCreativeTargetings() { return creativeTargetings; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "CreativeTargeting", "[", "]", "getCreativeTargetings", "(", ")", "{", "return", "creativeTargetings", ";", "}" ]
Gets the creativeTargetings value for this LineItem. @return creativeTargetings * A list of {@link CreativeTargeting} objects that can be used to specify creative level targeting for this line item. Creative level targeting is specified in a creative placeholder's {@link CreativePlaceholder#targetingName} field by r...
[ "Gets", "the", "creativeTargetings", "value", "for", "this", "LineItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/LineItem.java#L289-L291
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ExcludeContentFromContentBundle.java
ExcludeContentFromContentBundle.setContentStatement
public void setContentStatement(com.google.api.ads.admanager.axis.v201805.Statement contentStatement) { this.contentStatement = contentStatement; }
java
public void setContentStatement(com.google.api.ads.admanager.axis.v201805.Statement contentStatement) { this.contentStatement = contentStatement; }
[ "public", "void", "setContentStatement", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "Statement", "contentStatement", ")", "{", "this", ".", "contentStatement", "=", "contentStatement", ";", "}" ]
Sets the contentStatement value for this ExcludeContentFromContentBundle. @param contentStatement * The Publisher Query Language statement specifying which {@link Content} to exclude from the {@link ContentBundle}. The statement is expressed in terms of {@code Content} fields such as name and status. <p> All fields ...
[ "Sets", "the", "contentStatement", "value", "for", "this", "ExcludeContentFromContentBundle", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ExcludeContentFromContentBundle.java#L88-L90
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java
ReconciliationLineItemReport.getNetRate
public com.google.api.ads.admanager.axis.v201808.Money getNetRate() { return netRate; }
java
public com.google.api.ads.admanager.axis.v201808.Money getNetRate() { return netRate; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "getNetRate", "(", ")", "{", "return", "netRate", ";", "}" ]
Gets the netRate value for this ReconciliationLineItemReport. @return netRate * The {@link Money net rate} of the {@link LineItem} and/or {@link ProposalLineItem} this reconciliation data is for. This value is read-only.
[ "Gets", "the", "netRate", "value", "for", "this", "ReconciliationLineItemReport", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java#L498-L500
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java
ReconciliationLineItemReport.setNetRate
public void setNetRate(com.google.api.ads.admanager.axis.v201808.Money netRate) { this.netRate = netRate; }
java
public void setNetRate(com.google.api.ads.admanager.axis.v201808.Money netRate) { this.netRate = netRate; }
[ "public", "void", "setNetRate", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "netRate", ")", "{", "this", ".", "netRate", "=", "netRate", ";", "}" ]
Sets the netRate value for this ReconciliationLineItemReport. @param netRate * The {@link Money net rate} of the {@link LineItem} and/or {@link ProposalLineItem} this reconciliation data is for. This value is read-only.
[ "Sets", "the", "netRate", "value", "for", "this", "ReconciliationLineItemReport", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java#L511-L513
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java
ReconciliationLineItemReport.setNetBillableRevenue
public void setNetBillableRevenue(com.google.api.ads.admanager.axis.v201808.Money netBillableRevenue) { this.netBillableRevenue = netBillableRevenue; }
java
public void setNetBillableRevenue(com.google.api.ads.admanager.axis.v201808.Money netBillableRevenue) { this.netBillableRevenue = netBillableRevenue; }
[ "public", "void", "setNetBillableRevenue", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "netBillableRevenue", ")", "{", "this", ".", "netBillableRevenue", "=", "netBillableRevenue", ";", "}" ]
Sets the netBillableRevenue value for this ReconciliationLineItemReport. @param netBillableRevenue * The net billable revenue. If this reconciliation data is for a {@link ProposalLineItem}, this is calculated from the {@link #netRate}, {@link #billableVolume}, and the proposal line item's billing settings. This may ...
[ "Sets", "the", "netBillableRevenue", "value", "for", "this", "ReconciliationLineItemReport", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java#L939-L941
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java
ReconciliationLineItemReport.getGrossBillableRevenue
public com.google.api.ads.admanager.axis.v201808.Money getGrossBillableRevenue() { return grossBillableRevenue; }
java
public com.google.api.ads.admanager.axis.v201808.Money getGrossBillableRevenue() { return grossBillableRevenue; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "getGrossBillableRevenue", "(", ")", "{", "return", "grossBillableRevenue", ";", "}" ]
Gets the grossBillableRevenue value for this ReconciliationLineItemReport. @return grossBillableRevenue * The gross billable revenue. If this reconciliation data is for a {@link ProposalLineItem} and the {@link #pricingModel} is {@link PricingModel#GROSS}, this is calculated from the {@link #grossRate}, {@link #bill...
[ "Gets", "the", "grossBillableRevenue", "value", "for", "this", "ReconciliationLineItemReport", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java#L958-L960
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java
ReconciliationLineItemReport.setGrossBillableRevenue
public void setGrossBillableRevenue(com.google.api.ads.admanager.axis.v201808.Money grossBillableRevenue) { this.grossBillableRevenue = grossBillableRevenue; }
java
public void setGrossBillableRevenue(com.google.api.ads.admanager.axis.v201808.Money grossBillableRevenue) { this.grossBillableRevenue = grossBillableRevenue; }
[ "public", "void", "setGrossBillableRevenue", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "grossBillableRevenue", ")", "{", "this", ".", "grossBillableRevenue", "=", "grossBillableRevenue", ";", ...
Sets the grossBillableRevenue value for this ReconciliationLineItemReport. @param grossBillableRevenue * The gross billable revenue. If this reconciliation data is for a {@link ProposalLineItem} and the {@link #pricingModel} is {@link PricingModel#GROSS}, this is calculated from the {@link #grossRate}, {@link #billa...
[ "Sets", "the", "grossBillableRevenue", "value", "for", "this", "ReconciliationLineItemReport", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ReconciliationLineItemReport.java#L977-L979
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/DaiIngestError.java
DaiIngestError.getReason
public com.google.api.ads.admanager.axis.v201805.DaiIngestErrorReason getReason() { return reason; }
java
public com.google.api.ads.admanager.axis.v201805.DaiIngestErrorReason getReason() { return reason; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "DaiIngestErrorReason", "getReason", "(", ")", "{", "return", "reason", ";", "}" ]
Gets the reason value for this DaiIngestError. @return reason * The error associated with the content.
[ "Gets", "the", "reason", "value", "for", "this", "DaiIngestError", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/DaiIngestError.java#L59-L61
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/DaiIngestError.java
DaiIngestError.setReason
public void setReason(com.google.api.ads.admanager.axis.v201805.DaiIngestErrorReason reason) { this.reason = reason; }
java
public void setReason(com.google.api.ads.admanager.axis.v201805.DaiIngestErrorReason reason) { this.reason = reason; }
[ "public", "void", "setReason", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "DaiIngestErrorReason", "reason", ")", "{", "this", ".", "reason", "=", "reason", ";", "}" ]
Sets the reason value for this DaiIngestError. @param reason * The error associated with the content.
[ "Sets", "the", "reason", "value", "for", "this", "DaiIngestError", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/DaiIngestError.java#L69-L71
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/TemplateCreative.java
TemplateCreative.setCreativeTemplateVariableValues
public void setCreativeTemplateVariableValues(com.google.api.ads.admanager.axis.v201805.BaseCreativeTemplateVariableValue[] creativeTemplateVariableValues) { this.creativeTemplateVariableValues = creativeTemplateVariableValues; }
java
public void setCreativeTemplateVariableValues(com.google.api.ads.admanager.axis.v201805.BaseCreativeTemplateVariableValue[] creativeTemplateVariableValues) { this.creativeTemplateVariableValues = creativeTemplateVariableValues; }
[ "public", "void", "setCreativeTemplateVariableValues", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "BaseCreativeTemplateVariableValue", "[", "]", "creativeTemplateVariableValues", ")", "{", "this", ".", "c...
Sets the creativeTemplateVariableValues value for this TemplateCreative. @param creativeTemplateVariableValues * Stores values of {@link CreativeTemplateVariable} in the {@link CreativeTemplate}.
[ "Sets", "the", "creativeTemplateVariableValues", "value", "for", "this", "TemplateCreative", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/TemplateCreative.java#L290-L292
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdownOptions.java
ForecastBreakdownOptions.setTimeWindows
public void setTimeWindows(com.google.api.ads.admanager.axis.v201811.DateTime[] timeWindows) { this.timeWindows = timeWindows; }
java
public void setTimeWindows(com.google.api.ads.admanager.axis.v201811.DateTime[] timeWindows) { this.timeWindows = timeWindows; }
[ "public", "void", "setTimeWindows", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "DateTime", "[", "]", "timeWindows", ")", "{", "this", ".", "timeWindows", "=", "timeWindows", ";", "}" ]
Sets the timeWindows value for this ForecastBreakdownOptions. @param timeWindows * The boundaries of time windows to configure time breakdown. <p>By default, the time window of the forecasted {@link LineItem} is assumed if none are explicitly specified in this field. But if set, at least two {@link DateTime}s are n...
[ "Sets", "the", "timeWindows", "value", "for", "this", "ForecastBreakdownOptions", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/ForecastBreakdownOptions.java#L101-L103
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ProposalMarketplaceInfo.java
ProposalMarketplaceInfo.setNegotiationStatus
public void setNegotiationStatus(com.google.api.ads.admanager.axis.v201902.NegotiationStatus negotiationStatus) { this.negotiationStatus = negotiationStatus; }
java
public void setNegotiationStatus(com.google.api.ads.admanager.axis.v201902.NegotiationStatus negotiationStatus) { this.negotiationStatus = negotiationStatus; }
[ "public", "void", "setNegotiationStatus", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "NegotiationStatus", "negotiationStatus", ")", "{", "this", ".", "negotiationStatus", "=", "negotiationStatus", ";", ...
Sets the negotiationStatus value for this ProposalMarketplaceInfo. @param negotiationStatus * The negotiation status of the {@link Proposal}. This attribute is read-only.
[ "Sets", "the", "negotiationStatus", "value", "for", "this", "ProposalMarketplaceInfo", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ProposalMarketplaceInfo.java#L145-L147
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/MobileCarrierTargeting.java
MobileCarrierTargeting.getMobileCarriers
public com.google.api.ads.admanager.axis.v201811.Technology[] getMobileCarriers() { return mobileCarriers; }
java
public com.google.api.ads.admanager.axis.v201811.Technology[] getMobileCarriers() { return mobileCarriers; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "Technology", "[", "]", "getMobileCarriers", "(", ")", "{", "return", "mobileCarriers", ";", "}" ]
Gets the mobileCarriers value for this MobileCarrierTargeting. @return mobileCarriers * Mobile carriers that are being targeted or excluded by the {@link LineItem}.
[ "Gets", "the", "mobileCarriers", "value", "for", "this", "MobileCarrierTargeting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/MobileCarrierTargeting.java#L88-L90
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ThirdPartyAudienceSegment.java
ThirdPartyAudienceSegment.setApprovalStatus
public void setApprovalStatus(com.google.api.ads.admanager.axis.v201902.AudienceSegmentApprovalStatus approvalStatus) { this.approvalStatus = approvalStatus; }
java
public void setApprovalStatus(com.google.api.ads.admanager.axis.v201902.AudienceSegmentApprovalStatus approvalStatus) { this.approvalStatus = approvalStatus; }
[ "public", "void", "setApprovalStatus", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "AudienceSegmentApprovalStatus", "approvalStatus", ")", "{", "this", ".", "approvalStatus", "=", "approvalStatus", ";", ...
Sets the approvalStatus value for this ThirdPartyAudienceSegment. @param approvalStatus * Specifies if the publisher has approved or rejected the segment.
[ "Sets", "the", "approvalStatus", "value", "for", "this", "ThirdPartyAudienceSegment", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ThirdPartyAudienceSegment.java#L138-L140
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/PolicyViolationError.java
PolicyViolationError.getViolatingParts
public com.google.api.ads.adwords.axis.v201809.rm.PolicyViolationErrorPart[] getViolatingParts() { return violatingParts; }
java
public com.google.api.ads.adwords.axis.v201809.rm.PolicyViolationErrorPart[] getViolatingParts() { return violatingParts; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "rm", ".", "PolicyViolationErrorPart", "[", "]", "getViolatingParts", "(", ")", "{", "return", "violatingParts", ";", "}" ]
Gets the violatingParts value for this PolicyViolationError. @return violatingParts * Lists the parts that violate the policy.
[ "Gets", "the", "violatingParts", "value", "for", "this", "PolicyViolationError", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/rm/PolicyViolationError.java#L222-L224
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java
AdUnit.setParentPath
public void setParentPath(com.google.api.ads.admanager.axis.v201902.AdUnitParent[] parentPath) { this.parentPath = parentPath; }
java
public void setParentPath(com.google.api.ads.admanager.axis.v201902.AdUnitParent[] parentPath) { this.parentPath = parentPath; }
[ "public", "void", "setParentPath", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "AdUnitParent", "[", "]", "parentPath", ")", "{", "this", ".", "parentPath", "=", "parentPath", ";", "}" ]
Sets the parentPath value for this AdUnit. @param parentPath * The path to this ad unit in the ad unit hierarchy represented as a list from the root to this ad unit's parent. For root ad units, this list is empty. This attribute is read-only and is populated by Google.
[ "Sets", "the", "parentPath", "value", "for", "this", "AdUnit", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java#L391-L393
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java
AdUnit.setAdUnitSizes
public void setAdUnitSizes(com.google.api.ads.admanager.axis.v201902.AdUnitSize[] adUnitSizes) { this.adUnitSizes = adUnitSizes; }
java
public void setAdUnitSizes(com.google.api.ads.admanager.axis.v201902.AdUnitSize[] adUnitSizes) { this.adUnitSizes = adUnitSizes; }
[ "public", "void", "setAdUnitSizes", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "AdUnitSize", "[", "]", "adUnitSizes", ")", "{", "this", ".", "adUnitSizes", "=", "adUnitSizes", ";", "}" ]
Sets the adUnitSizes value for this AdUnit. @param adUnitSizes * The permissible creative sizes that can be served inside this ad unit. This attribute is optional. This attribute replaces the {@code sizes} attribute.
[ "Sets", "the", "adUnitSizes", "value", "for", "this", "AdUnit", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java#L563-L565
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java
AdUnit.getAdSenseSettingsSource
public com.google.api.ads.admanager.axis.v201902.ValueSourceType getAdSenseSettingsSource() { return adSenseSettingsSource; }
java
public com.google.api.ads.admanager.axis.v201902.ValueSourceType getAdSenseSettingsSource() { return adSenseSettingsSource; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "ValueSourceType", "getAdSenseSettingsSource", "(", ")", "{", "return", "adSenseSettingsSource", ";", "}" ]
Gets the adSenseSettingsSource value for this AdUnit. @return adSenseSettingsSource * Specifies the source of {@link #adSenseSettings} value. To revert an overridden value to its default, set this field to {@link PropertySourceType#PARENT}.
[ "Gets", "the", "adSenseSettingsSource", "value", "for", "this", "AdUnit", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java#L701-L703
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java
AdUnit.getSmartSizeMode
public com.google.api.ads.admanager.axis.v201902.SmartSizeMode getSmartSizeMode() { return smartSizeMode; }
java
public com.google.api.ads.admanager.axis.v201902.SmartSizeMode getSmartSizeMode() { return smartSizeMode; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "SmartSizeMode", "getSmartSizeMode", "(", ")", "{", "return", "smartSizeMode", ";", "}" ]
Gets the smartSizeMode value for this AdUnit. @return smartSizeMode * The smart size mode for this ad unit. This attribute is optional and defaults to {@link SmartSizeMode#NONE} for fixed sizes.
[ "Gets", "the", "smartSizeMode", "value", "for", "this", "AdUnit", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/AdUnit.java#L943-L945
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProposalMarketplaceInfo.java
ProposalMarketplaceInfo.getNegotiationStatus
public com.google.api.ads.admanager.axis.v201808.NegotiationStatus getNegotiationStatus() { return negotiationStatus; }
java
public com.google.api.ads.admanager.axis.v201808.NegotiationStatus getNegotiationStatus() { return negotiationStatus; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "NegotiationStatus", "getNegotiationStatus", "(", ")", "{", "return", "negotiationStatus", ";", "}" ]
Gets the negotiationStatus value for this ProposalMarketplaceInfo. @return negotiationStatus * The negotiation status of the {@link Proposal}. This attribute is read-only.
[ "Gets", "the", "negotiationStatus", "value", "for", "this", "ProposalMarketplaceInfo", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/ProposalMarketplaceInfo.java#L134-L136
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/OperatingSystemTargeting.java
OperatingSystemTargeting.getOperatingSystems
public com.google.api.ads.admanager.axis.v201808.Technology[] getOperatingSystems() { return operatingSystems; }
java
public com.google.api.ads.admanager.axis.v201808.Technology[] getOperatingSystems() { return operatingSystems; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Technology", "[", "]", "getOperatingSystems", "(", ")", "{", "return", "operatingSystems", ";", "}" ]
Gets the operatingSystems value for this OperatingSystemTargeting. @return operatingSystems * Operating systems that are being targeted or excluded by the {@link LineItem}.
[ "Gets", "the", "operatingSystems", "value", "for", "this", "OperatingSystemTargeting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/OperatingSystemTargeting.java#L89-L91
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/VastRedirectCreative.java
VastRedirectCreative.getVastRedirectType
public com.google.api.ads.admanager.axis.v201808.VastRedirectType getVastRedirectType() { return vastRedirectType; }
java
public com.google.api.ads.admanager.axis.v201808.VastRedirectType getVastRedirectType() { return vastRedirectType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "VastRedirectType", "getVastRedirectType", "(", ")", "{", "return", "vastRedirectType", ";", "}" ]
Gets the vastRedirectType value for this VastRedirectCreative. @return vastRedirectType * The type of VAST ad that this redirects to. This attribute is required.
[ "Gets", "the", "vastRedirectType", "value", "for", "this", "VastRedirectCreative", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/VastRedirectCreative.java#L163-L165
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductChannelExclusivity.java
ProductChannelExclusivity.setChannelExclusivity
public void setChannelExclusivity(com.google.api.ads.adwords.axis.v201809.cm.ShoppingProductChannelExclusivity channelExclusivity) { this.channelExclusivity = channelExclusivity; }
java
public void setChannelExclusivity(com.google.api.ads.adwords.axis.v201809.cm.ShoppingProductChannelExclusivity channelExclusivity) { this.channelExclusivity = channelExclusivity; }
[ "public", "void", "setChannelExclusivity", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "ShoppingProductChannelExclusivity", "channelExclusivity", ")", "{", "this", ".", "channelExclusivity", "="...
Sets the channelExclusivity value for this ProductChannelExclusivity. @param channelExclusivity
[ "Sets", "the", "channelExclusivity", "value", "for", "this", "ProductChannelExclusivity", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductChannelExclusivity.java#L70-L72
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/BuyerRfp.java
BuyerRfp.setBudget
public void setBudget(com.google.api.ads.admanager.axis.v201811.Money budget) { this.budget = budget; }
java
public void setBudget(com.google.api.ads.admanager.axis.v201811.Money budget) { this.budget = budget; }
[ "public", "void", "setBudget", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "Money", "budget", ")", "{", "this", ".", "budget", "=", "budget", ";", "}" ]
Sets the budget value for this BuyerRfp. @param budget * Total amount of {@link Money} available to spend on this deal. In the case of Preferred Deal, the budget is equal to the maximum amount of money a buyer is willing to spend on a given {@link Proposal}, even though the budget might not be spent entirely, as imp...
[ "Sets", "the", "budget", "value", "for", "this", "BuyerRfp", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/BuyerRfp.java#L290-L292
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/BuyerRfp.java
BuyerRfp.getCreativePlaceholders
public com.google.api.ads.admanager.axis.v201811.CreativePlaceholder[] getCreativePlaceholders() { return creativePlaceholders; }
java
public com.google.api.ads.admanager.axis.v201811.CreativePlaceholder[] getCreativePlaceholders() { return creativePlaceholders; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "CreativePlaceholder", "[", "]", "getCreativePlaceholders", "(", ")", "{", "return", "creativePlaceholders", ";", "}" ]
Gets the creativePlaceholders value for this BuyerRfp. @return creativePlaceholders * A list of inventory sizes in which creatives will be eventually served. <span class="constraint ReadOnly">This attribute is read-only when:<ul><li>using programmatic guaranteed, not using sales management.</li><li>using preferred d...
[ "Gets", "the", "creativePlaceholders", "value", "for", "this", "BuyerRfp", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/BuyerRfp.java#L416-L418
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/BuyerRfp.java
BuyerRfp.setRfpType
public void setRfpType(com.google.api.ads.admanager.axis.v201811.RfpType rfpType) { this.rfpType = rfpType; }
java
public void setRfpType(com.google.api.ads.admanager.axis.v201811.RfpType rfpType) { this.rfpType = rfpType; }
[ "public", "void", "setRfpType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "RfpType", "rfpType", ")", "{", "this", ".", "rfpType", "=", "rfpType", ";", "}" ]
Sets the rfpType value for this BuyerRfp. @param rfpType * Deal type; either Programmatic Guaranteed or Preferred Deal. This field corresponds to the type of {@link Proposal} that a buyer wishes to negotiate with a seller. <span class="constraint ReadOnly">This attribute is read-only when:<ul><li>using programmatic ...
[ "Sets", "the", "rfpType", "value", "for", "this", "BuyerRfp", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/BuyerRfp.java#L578-L580
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/VideoPositionTarget.java
VideoPositionTarget.getVideoPosition
public com.google.api.ads.admanager.axis.v201805.VideoPosition getVideoPosition() { return videoPosition; }
java
public com.google.api.ads.admanager.axis.v201805.VideoPosition getVideoPosition() { return videoPosition; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "VideoPosition", "getVideoPosition", "(", ")", "{", "return", "videoPosition", ";", "}" ]
Gets the videoPosition value for this VideoPositionTarget. @return videoPosition * The video position to target. This attribute is required.
[ "Gets", "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/v201805/VideoPositionTarget.java#L74-L76
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/SelectorBuilderImpl.java
SelectorBuilderImpl.copyOrderingSet
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); } ...
java
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); } ...
[ "private", "Set", "<", "OrderBy", ">", "copyOrderingSet", "(", ")", "{", "Set", "<", "OrderBy", ">", "orderingCopy", "=", "Sets", ".", "newLinkedHashSet", "(", ")", ";", "for", "(", "OrderBy", "order", ":", "this", ".", "ordering", ")", "{", "OrderBy", ...
Copies the whole set of OrderBy objects, by creating new instances of each one in the given set. @return the new set of OrderBy objects with different instance for each of the OrderBy
[ "Copies", "the", "whole", "set", "of", "OrderBy", "objects", "by", "creating", "new", "instances", "of", "each", "one", "in", "the", "given", "set", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/SelectorBuilderImpl.java#L97-L106
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/SelectorBuilderImpl.java
SelectorBuilderImpl.singleValuePredicate
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.setVa...
java
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.setVa...
[ "private", "SelectorBuilderImpl", "singleValuePredicate", "(", "String", "field", ",", "String", "propertyValue", ",", "PredicateOperator", "operator", ")", "{", "Predicate", "predicate", "=", "new", "Predicate", "(", ")", ";", "predicate", ".", "setField", "(", "...
Adds a predicate for the specified field, property value, and operator.
[ "Adds", "a", "predicate", "for", "the", "specified", "field", "property", "value", "and", "operator", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/utils/v201809/SelectorBuilderImpl.java#L343-L356
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/o/KeywordEstimate.java
KeywordEstimate.getMin
public com.google.api.ads.adwords.axis.v201809.o.StatsEstimate getMin() { return min; }
java
public com.google.api.ads.adwords.axis.v201809.o.StatsEstimate getMin() { return min; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "o", ".", "StatsEstimate", "getMin", "(", ")", "{", "return", "min", ";", "}" ]
Gets the min value for this KeywordEstimate. @return min * The lower bound on the estimated stats. <p>This is not a guarantee that actual performance will never be lower than these stats.
[ "Gets", "the", "min", "value", "for", "this", "KeywordEstimate", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/o/KeywordEstimate.java#L107-L109
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/o/KeywordEstimate.java
KeywordEstimate.getMax
public com.google.api.ads.adwords.axis.v201809.o.StatsEstimate getMax() { return max; }
java
public com.google.api.ads.adwords.axis.v201809.o.StatsEstimate getMax() { return max; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "o", ".", "StatsEstimate", "getMax", "(", ")", "{", "return", "max", ";", "}" ]
Gets the max value for this KeywordEstimate. @return max * The upper bound on the estimated stats. <p>This is not a guarantee that actual performance will never be higher than these stats.
[ "Gets", "the", "max", "value", "for", "this", "KeywordEstimate", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/o/KeywordEstimate.java#L135-L137
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReconciliationLineItemReport.java
ReconciliationLineItemReport.setReconciliationSource
public void setReconciliationSource(com.google.api.ads.admanager.axis.v201805.BillFrom reconciliationSource) { this.reconciliationSource = reconciliationSource; }
java
public void setReconciliationSource(com.google.api.ads.admanager.axis.v201805.BillFrom reconciliationSource) { this.reconciliationSource = reconciliationSource; }
[ "public", "void", "setReconciliationSource", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "BillFrom", "reconciliationSource", ")", "{", "this", ".", "reconciliationSource", "=", "reconciliationSource", ";...
Sets the reconciliationSource value for this ReconciliationLineItemReport. @param reconciliationSource * Specifies which of {@link #dfpVolume}, {@link #thirdPartyVolume}, or {@link #manualVolume} should be used as the {@link #reconciledVolume}. The value is optional. If this reconciliation data is for a {@link Propo...
[ "Sets", "the", "reconciliationSource", "value", "for", "this", "ReconciliationLineItemReport", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReconciliationLineItemReport.java#L713-L715
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReconciliationLineItemReport.java
ReconciliationLineItemReport.getBillableRevenueOverrides
public com.google.api.ads.admanager.axis.v201805.BillableRevenueOverrides getBillableRevenueOverrides() { return billableRevenueOverrides; }
java
public com.google.api.ads.admanager.axis.v201805.BillableRevenueOverrides getBillableRevenueOverrides() { return billableRevenueOverrides; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "BillableRevenueOverrides", "getBillableRevenueOverrides", "(", ")", "{", "return", "billableRevenueOverrides", ";", "}" ]
Gets the billableRevenueOverrides value for this ReconciliationLineItemReport. @return billableRevenueOverrides * Manual overrides for the Google calculated billable revenue fields. If set, it indicates that these values should be used as the final billable revenue instead of the Google calculated ones. This value i...
[ "Gets", "the", "billableRevenueOverrides", "value", "for", "this", "ReconciliationLineItemReport", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/ReconciliationLineItemReport.java#L992-L994
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ProspectiveLineItem.java
ProspectiveLineItem.getLineItem
public com.google.api.ads.admanager.axis.v201902.LineItem getLineItem() { return lineItem; }
java
public com.google.api.ads.admanager.axis.v201902.LineItem getLineItem() { return lineItem; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "LineItem", "getLineItem", "(", ")", "{", "return", "lineItem", ";", "}" ]
Gets the lineItem value for this ProspectiveLineItem. @return lineItem * The target of the forecast. If {@link LineItem#id} is null or no line item exists with that ID, then a forecast is computed for the subject, predicting what would happen if it were added to the network. If a line item already exists with {@link...
[ "Gets", "the", "lineItem", "value", "for", "this", "ProspectiveLineItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ProspectiveLineItem.java#L105-L107
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ProspectiveLineItem.java
ProspectiveLineItem.setLineItem
public void setLineItem(com.google.api.ads.admanager.axis.v201902.LineItem lineItem) { this.lineItem = lineItem; }
java
public void setLineItem(com.google.api.ads.admanager.axis.v201902.LineItem lineItem) { this.lineItem = lineItem; }
[ "public", "void", "setLineItem", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "LineItem", "lineItem", ")", "{", "this", ".", "lineItem", "=", "lineItem", ";", "}" ]
Sets the lineItem value for this ProspectiveLineItem. @param lineItem * The target of the forecast. If {@link LineItem#id} is null or no line item exists with that ID, then a forecast is computed for the subject, predicting what would happen if it were added to the network. If a line item already exists with {@link ...
[ "Sets", "the", "lineItem", "value", "for", "this", "ProspectiveLineItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ProspectiveLineItem.java#L123-L125
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/OfflineError.java
OfflineError.getErrorTime
public com.google.api.ads.admanager.axis.v201805.DateTime getErrorTime() { return errorTime; }
java
public com.google.api.ads.admanager.axis.v201805.DateTime getErrorTime() { return errorTime; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "DateTime", "getErrorTime", "(", ")", "{", "return", "errorTime", ";", "}" ]
Gets the errorTime value for this OfflineError. @return errorTime * The time when this error occurred.
[ "Gets", "the", "errorTime", "value", "for", "this", "OfflineError", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/OfflineError.java#L114-L116
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/OfflineError.java
OfflineError.setErrorTime
public void setErrorTime(com.google.api.ads.admanager.axis.v201805.DateTime errorTime) { this.errorTime = errorTime; }
java
public void setErrorTime(com.google.api.ads.admanager.axis.v201805.DateTime errorTime) { this.errorTime = errorTime; }
[ "public", "void", "setErrorTime", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "DateTime", "errorTime", ")", "{", "this", ".", "errorTime", "=", "errorTime", ";", "}" ]
Sets the errorTime value for this OfflineError. @param errorTime * The time when this error occurred.
[ "Sets", "the", "errorTime", "value", "for", "this", "OfflineError", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/OfflineError.java#L124-L126
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.getDeliveryRateType
public com.google.api.ads.admanager.axis.v201811.DeliveryRateType getDeliveryRateType() { return deliveryRateType; }
java
public com.google.api.ads.admanager.axis.v201811.DeliveryRateType getDeliveryRateType() { return deliveryRateType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "DeliveryRateType", "getDeliveryRateType", "(", ")", "{", "return", "deliveryRateType", ";", "}" ]
Gets the deliveryRateType value for this LineItemSummary. @return deliveryRateType * The strategy for delivering ads over the course of the line item's duration. This attribute is optional and defaults to {@link DeliveryRateType#EVENLY} or {@link DeliveryRateType#FRONTLOADED} depending on the network's configuration...
[ "Gets", "the", "deliveryRateType", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1028-L1030
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.setDeliveryRateType
public void setDeliveryRateType(com.google.api.ads.admanager.axis.v201811.DeliveryRateType deliveryRateType) { this.deliveryRateType = deliveryRateType; }
java
public void setDeliveryRateType(com.google.api.ads.admanager.axis.v201811.DeliveryRateType deliveryRateType) { this.deliveryRateType = deliveryRateType; }
[ "public", "void", "setDeliveryRateType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "DeliveryRateType", "deliveryRateType", ")", "{", "this", ".", "deliveryRateType", "=", "deliveryRateType", ";", "}"...
Sets the deliveryRateType value for this LineItemSummary. @param deliveryRateType * The strategy for delivering ads over the course of the line item's duration. This attribute is optional and defaults to {@link DeliveryRateType#EVENLY} or {@link DeliveryRateType#FRONTLOADED} depending on the network's configuration.
[ "Sets", "the", "deliveryRateType", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1043-L1045
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.getLineItemType
public com.google.api.ads.admanager.axis.v201811.LineItemType getLineItemType() { return lineItemType; }
java
public com.google.api.ads.admanager.axis.v201811.LineItemType getLineItemType() { return lineItemType; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "LineItemType", "getLineItemType", "(", ")", "{", "return", "lineItemType", ";", "}" ]
Gets the lineItemType value for this LineItemSummary. @return lineItemType * Indicates the line item type of a {@code LineItem}. This attribute is required. The line item type determines the default priority of the line item. More information can be found on the <a href="https://support.google.com/dfp_premium/answe...
[ "Gets", "the", "lineItemType", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1119-L1121
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.setLineItemType
public void setLineItemType(com.google.api.ads.admanager.axis.v201811.LineItemType lineItemType) { this.lineItemType = lineItemType; }
java
public void setLineItemType(com.google.api.ads.admanager.axis.v201811.LineItemType lineItemType) { this.lineItemType = lineItemType; }
[ "public", "void", "setLineItemType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "LineItemType", "lineItemType", ")", "{", "this", ".", "lineItemType", "=", "lineItemType", ";", "}" ]
Sets the lineItemType value for this LineItemSummary. @param lineItemType * Indicates the line item type of a {@code LineItem}. This attribute is required. The line item type determines the default priority of the line item. More information can be found on the <a href="https://support.google.com/dfp_premium/answer...
[ "Sets", "the", "lineItemType", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1135-L1137
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.setEnvironmentType
public void setEnvironmentType(com.google.api.ads.admanager.axis.v201811.EnvironmentType environmentType) { this.environmentType = environmentType; }
java
public void setEnvironmentType(com.google.api.ads.admanager.axis.v201811.EnvironmentType environmentType) { this.environmentType = environmentType; }
[ "public", "void", "setEnvironmentType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "EnvironmentType", "environmentType", ")", "{", "this", ".", "environmentType", "=", "environmentType", ";", "}" ]
Sets the environmentType value for this LineItemSummary. @param environmentType * The environment that the {@code LineItem} is targeting. The default value is {@link EnvironmentType#BROWSER}. If this value is {@link EnvironmentType#VIDEO_PLAYER}, then this line item can only target {@code AdUnits} that have {@code A...
[ "Sets", "the", "environmentType", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1579-L1581
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.getCompanionDeliveryOption
public com.google.api.ads.admanager.axis.v201811.CompanionDeliveryOption getCompanionDeliveryOption() { return companionDeliveryOption; }
java
public com.google.api.ads.admanager.axis.v201811.CompanionDeliveryOption getCompanionDeliveryOption() { return companionDeliveryOption; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "CompanionDeliveryOption", "getCompanionDeliveryOption", "(", ")", "{", "return", "companionDeliveryOption", ";", "}" ]
Gets the companionDeliveryOption value for this LineItemSummary. @return companionDeliveryOption * The delivery option for companions. Setting this field is only meaningful if the following conditions are met: <ol> <li> The <b>Guaranteed roadblocks</b> feature is enabled on your network. </li> <li> One of the follow...
[ "Gets", "the", "companionDeliveryOption", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1616-L1618
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.setCompanionDeliveryOption
public void setCompanionDeliveryOption(com.google.api.ads.admanager.axis.v201811.CompanionDeliveryOption companionDeliveryOption) { this.companionDeliveryOption = companionDeliveryOption; }
java
public void setCompanionDeliveryOption(com.google.api.ads.admanager.axis.v201811.CompanionDeliveryOption companionDeliveryOption) { this.companionDeliveryOption = companionDeliveryOption; }
[ "public", "void", "setCompanionDeliveryOption", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "CompanionDeliveryOption", "companionDeliveryOption", ")", "{", "this", ".", "companionDeliveryOption", "=", "com...
Sets the companionDeliveryOption value for this LineItemSummary. @param companionDeliveryOption * The delivery option for companions. Setting this field is only meaningful if the following conditions are met: <ol> <li> The <b>Guaranteed roadblocks</b> feature is enabled on your network. </li> <li> One of the followi...
[ "Sets", "the", "companionDeliveryOption", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1653-L1655
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.getStatus
public com.google.api.ads.admanager.axis.v201811.ComputedStatus getStatus() { return status; }
java
public com.google.api.ads.admanager.axis.v201811.ComputedStatus getStatus() { return status; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "ComputedStatus", "getStatus", "(", ")", "{", "return", "status", ";", "}" ]
Gets the status value for this LineItemSummary. @return status * The status of the {@code LineItem}. This attribute is readonly.
[ "Gets", "the", "status", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L1929-L1931
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.setAppliedLabels
public void setAppliedLabels(com.google.api.ads.admanager.axis.v201811.AppliedLabel[] appliedLabels) { this.appliedLabels = appliedLabels; }
java
public void setAppliedLabels(com.google.api.ads.admanager.axis.v201811.AppliedLabel[] appliedLabels) { this.appliedLabels = appliedLabels; }
[ "public", "void", "setAppliedLabels", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "AppliedLabel", "[", "]", "appliedLabels", ")", "{", "this", ".", "appliedLabels", "=", "appliedLabels", ";", "}" ]
Sets the appliedLabels value for this LineItemSummary. @param appliedLabels * The set of labels applied directly to this line item.
[ "Sets", "the", "appliedLabels", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L2029-L2031
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.getSecondaryGoals
public com.google.api.ads.admanager.axis.v201811.Goal[] getSecondaryGoals() { return secondaryGoals; }
java
public com.google.api.ads.admanager.axis.v201811.Goal[] getSecondaryGoals() { return secondaryGoals; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "Goal", "[", "]", "getSecondaryGoals", "(", ")", "{", "return", "secondaryGoals", ";", "}" ]
Gets the secondaryGoals value for this LineItemSummary. @return secondaryGoals * The secondary goals that this {@code LineItem} is associated with. It is required and meaningful only if the {@link LineItem#costType} is {@link CostType.CPA} or if the {@link LineItem#lineItemType} is {@link LineItemType#SPONSORSHIP} a...
[ "Gets", "the", "secondaryGoals", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L2499-L2501
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java
LineItemSummary.getUserConsentEligibility
public com.google.api.ads.admanager.axis.v201811.UserConsentEligibility getUserConsentEligibility() { return userConsentEligibility; }
java
public com.google.api.ads.admanager.axis.v201811.UserConsentEligibility getUserConsentEligibility() { return userConsentEligibility; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "UserConsentEligibility", "getUserConsentEligibility", "(", ")", "{", "return", "userConsentEligibility", ";", "}" ]
Gets the userConsentEligibility value for this LineItemSummary. @return userConsentEligibility * User consent eligibility designation for this line item. This field is optional and defaults to {@link UserConsentEligibility#NONE}. This field has no effect on serving enforcement unless you opt to "Limit line items" i...
[ "Gets", "the", "userConsentEligibility", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/LineItemSummary.java#L2592-L2594
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/CustomCriteriaSet.java
CustomCriteriaSet.getLogicalOperator
public com.google.api.ads.admanager.axis.v201811.CustomCriteriaSetLogicalOperator getLogicalOperator() { return logicalOperator; }
java
public com.google.api.ads.admanager.axis.v201811.CustomCriteriaSetLogicalOperator getLogicalOperator() { return logicalOperator; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "CustomCriteriaSetLogicalOperator", "getLogicalOperator", "(", ")", "{", "return", "logicalOperator", ";", "}" ]
Gets the logicalOperator value for this CustomCriteriaSet. @return logicalOperator * The logical operator to be applied to {@link CustomCriteriaSet#children}. This attribute is required. <span class="constraint Required">This attribute is required.</span>
[ "Gets", "the", "logicalOperator", "value", "for", "this", "CustomCriteriaSet", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/CustomCriteriaSet.java#L74-L76
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/CustomCriteriaSet.java
CustomCriteriaSet.setChildren
public void setChildren(com.google.api.ads.admanager.axis.v201811.CustomCriteriaNode[] children) { this.children = children; }
java
public void setChildren(com.google.api.ads.admanager.axis.v201811.CustomCriteriaNode[] children) { this.children = children; }
[ "public", "void", "setChildren", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201811", ".", "CustomCriteriaNode", "[", "]", "children", ")", "{", "this", ".", "children", "=", "children", ";", "}" ]
Sets the children value for this CustomCriteriaSet. @param children * The custom criteria. This attribute is required.
[ "Sets", "the", "children", "value", "for", "this", "CustomCriteriaSet", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201811/CustomCriteriaSet.java#L108-L110
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PlacesLocationFeedData.java
PlacesLocationFeedData.getOAuthInfo
public com.google.api.ads.adwords.axis.v201809.cm.OAuthInfo getOAuthInfo() { return oAuthInfo; }
java
public com.google.api.ads.adwords.axis.v201809.cm.OAuthInfo getOAuthInfo() { return oAuthInfo; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "OAuthInfo", "getOAuthInfo", "(", ")", "{", "return", "oAuthInfo", ";", "}" ]
Gets the oAuthInfo value for this PlacesLocationFeedData. @return oAuthInfo * Required authentication token (from OAuth API) for the email.</br> Use the following values when populating the oAuthInfo: <ul> <li>httpMethod: {@code GET}</li> <li>httpRequestUrl: {@code https://www.googleapis.com/auth/adwords}</li> <li> ...
[ "Gets", "the", "oAuthInfo", "value", "for", "this", "PlacesLocationFeedData", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/PlacesLocationFeedData.java#L130-L132
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedItem.java
FeedItem.setAttributeValues
public void setAttributeValues(com.google.api.ads.adwords.axis.v201809.cm.FeedItemAttributeValue[] attributeValues) { this.attributeValues = attributeValues; }
java
public void setAttributeValues(com.google.api.ads.adwords.axis.v201809.cm.FeedItemAttributeValue[] attributeValues) { this.attributeValues = attributeValues; }
[ "public", "void", "setAttributeValues", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "FeedItemAttributeValue", "[", "]", "attributeValues", ")", "{", "this", ".", "attributeValues", "=", "a...
Sets the attributeValues value for this FeedItem. @param attributeValues * The feed item's attribute values. For any unset/unspecified feed attributes, the value is considered unset/null on ADD and unchanged on SET. <span class="constraint Required">This field is required and should not be {@code null} when it is co...
[ "Sets", "the", "attributeValues", "value", "for", "this", "FeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedItem.java#L318-L320
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedItem.java
FeedItem.getPolicySummaries
public com.google.api.ads.adwords.axis.v201809.cm.FeedItemPolicySummary[] getPolicySummaries() { return policySummaries; }
java
public com.google.api.ads.adwords.axis.v201809.cm.FeedItemPolicySummary[] getPolicySummaries() { return policySummaries; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "FeedItemPolicySummary", "[", "]", "getPolicySummaries", "(", ")", "{", "return", "policySummaries", ";", "}" ]
Gets the policySummaries value for this FeedItem. @return policySummaries * Summary of a feed item's offline validation, policy findings, and approval results for active feed mappings. <span class="constraint ReadOnly">This field is read only and will be ignored when sent to the API.</span>
[ "Gets", "the", "policySummaries", "value", "for", "this", "FeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedItem.java#L340-L342
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedItem.java
FeedItem.setGeoTargetingRestriction
public void setGeoTargetingRestriction(com.google.api.ads.adwords.axis.v201809.cm.FeedItemGeoRestriction geoTargetingRestriction) { this.geoTargetingRestriction = geoTargetingRestriction; }
java
public void setGeoTargetingRestriction(com.google.api.ads.adwords.axis.v201809.cm.FeedItemGeoRestriction geoTargetingRestriction) { this.geoTargetingRestriction = geoTargetingRestriction; }
[ "public", "void", "setGeoTargetingRestriction", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "FeedItemGeoRestriction", "geoTargetingRestriction", ")", "{", "this", ".", "geoTargetingRestriction", ...
Sets the geoTargetingRestriction value for this FeedItem. @param geoTargetingRestriction * Geo targeting restriction specifies the type of location that can be used for targeting. Only applies if the feed item has a location FeedItemTarget. On update, if the field is left unspecified, the previous geo targeting rest...
[ "Sets", "the", "geoTargetingRestriction", "value", "for", "this", "FeedItem", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/FeedItem.java#L398-L400
train
googleads/googleads-java-lib
modules/ads_lib/src/main/java/com/google/api/ads/adwords/lib/conf/AdWordsApiConfiguration.java
AdWordsApiConfiguration.getServiceUrlGroup
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"); i...
java
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"); i...
[ "public", "String", "getServiceUrlGroup", "(", "String", "version", ",", "String", "service", ")", "{", "String", "[", "]", "groups", "=", "config", ".", "getStringArray", "(", "\"api.adwords.version.\"", "+", "version", "+", "\".groups\"", ")", ";", "for", "(...
Gets the service URL group for the service and version.
[ "Gets", "the", "service", "URL", "group", "for", "the", "service", "and", "version", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/ads_lib/src/main/java/com/google/api/ads/adwords/lib/conf/AdWordsApiConfiguration.java#L43-L53
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/DeviceCapabilityTargeting.java
DeviceCapabilityTargeting.setExcludedDeviceCapabilities
public void setExcludedDeviceCapabilities(com.google.api.ads.admanager.axis.v201805.Technology[] excludedDeviceCapabilities) { this.excludedDeviceCapabilities = excludedDeviceCapabilities; }
java
public void setExcludedDeviceCapabilities(com.google.api.ads.admanager.axis.v201805.Technology[] excludedDeviceCapabilities) { this.excludedDeviceCapabilities = excludedDeviceCapabilities; }
[ "public", "void", "setExcludedDeviceCapabilities", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "Technology", "[", "]", "excludedDeviceCapabilities", ")", "{", "this", ".", "excludedDeviceCapabilities", "...
Sets the excludedDeviceCapabilities value for this DeviceCapabilityTargeting. @param excludedDeviceCapabilities * Device capabilities that are being excluded by the {@link LineItem}.
[ "Sets", "the", "excludedDeviceCapabilities", "value", "for", "this", "DeviceCapabilityTargeting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/DeviceCapabilityTargeting.java#L98-L100
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Webpage.java
Webpage.getParameter
public com.google.api.ads.adwords.axis.v201809.cm.WebpageParameter getParameter() { return parameter; }
java
public com.google.api.ads.adwords.axis.v201809.cm.WebpageParameter getParameter() { return parameter; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "WebpageParameter", "getParameter", "(", ")", "{", "return", "parameter", ";", "}" ]
Gets the parameter value for this Webpage. @return parameter * The webpage criterion parameter. <span class="constraint Required">This field is required and should not be {@code null} when it is contained within {@link Operator}s : ADD.</span>
[ "Gets", "the", "parameter", "value", "for", "this", "Webpage", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Webpage.java#L92-L94
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.getCostPerUnit
public com.google.api.ads.admanager.axis.v201808.Money getCostPerUnit() { return costPerUnit; }
java
public com.google.api.ads.admanager.axis.v201808.Money getCostPerUnit() { return costPerUnit; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "getCostPerUnit", "(", ")", "{", "return", "costPerUnit", ";", "}" ]
Gets the costPerUnit value for this LineItemSummary. @return costPerUnit * The amount of money to spend per impression or click. This attribute is required for creating a {@code LineItem}.
[ "Gets", "the", "costPerUnit", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L1285-L1287
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.getValueCostPerUnit
public com.google.api.ads.admanager.axis.v201808.Money getValueCostPerUnit() { return valueCostPerUnit; }
java
public com.google.api.ads.admanager.axis.v201808.Money getValueCostPerUnit() { return valueCostPerUnit; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Money", "getValueCostPerUnit", "(", ")", "{", "return", "valueCostPerUnit", ";", "}" ]
Gets the valueCostPerUnit value for this LineItemSummary. @return valueCostPerUnit * An amount to help the adserver rank inventory. {@link LineItem#valueCostPerUnit} artificially raises the value of inventory over the {@link LineItem#costPerUnit} but avoids raising the actual {@link LineItem#costPerUnit}. This attri...
[ "Gets", "the", "valueCostPerUnit", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L1315-L1317
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.setDiscountType
public void setDiscountType(com.google.api.ads.admanager.axis.v201808.LineItemDiscountType discountType) { this.discountType = discountType; }
java
public void setDiscountType(com.google.api.ads.admanager.axis.v201808.LineItemDiscountType discountType) { this.discountType = discountType; }
[ "public", "void", "setDiscountType", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "LineItemDiscountType", "discountType", ")", "{", "this", ".", "discountType", "=", "discountType", ";", "}" ]
Sets the discountType value for this LineItemSummary. @param discountType * The type of discount being applied to a {@code LineItem}, either percentage based or absolute. This attribute is optional and defaults to {@link LineItemDiscountType#PERCENTAGE}.
[ "Sets", "the", "discountType", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L1385-L1387
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.getDeliveryIndicator
public com.google.api.ads.admanager.axis.v201808.DeliveryIndicator getDeliveryIndicator() { return deliveryIndicator; }
java
public com.google.api.ads.admanager.axis.v201808.DeliveryIndicator getDeliveryIndicator() { return deliveryIndicator; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DeliveryIndicator", "getDeliveryIndicator", "(", ")", "{", "return", "deliveryIndicator", ";", "}" ]
Gets the deliveryIndicator value for this LineItemSummary. @return deliveryIndicator * Indicates how well the line item has been performing. This attribute is readonly and is populated by Google. This will be {@code null} if the delivery indicator information is not available due to one of the following reasons: <ol...
[ "Gets", "the", "deliveryIndicator", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L1818-L1820
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.setDeliveryIndicator
public void setDeliveryIndicator(com.google.api.ads.admanager.axis.v201808.DeliveryIndicator deliveryIndicator) { this.deliveryIndicator = deliveryIndicator; }
java
public void setDeliveryIndicator(com.google.api.ads.admanager.axis.v201808.DeliveryIndicator deliveryIndicator) { this.deliveryIndicator = deliveryIndicator; }
[ "public", "void", "setDeliveryIndicator", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DeliveryIndicator", "deliveryIndicator", ")", "{", "this", ".", "deliveryIndicator", "=", "deliveryIndicator", ";", ...
Sets the deliveryIndicator value for this LineItemSummary. @param deliveryIndicator * Indicates how well the line item has been performing. This attribute is readonly and is populated by Google. This will be {@code null} if the delivery indicator information is not available due to one of the following reasons: <ol>...
[ "Sets", "the", "deliveryIndicator", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L1839-L1841
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.getDeliveryData
public com.google.api.ads.admanager.axis.v201808.DeliveryData getDeliveryData() { return deliveryData; }
java
public com.google.api.ads.admanager.axis.v201808.DeliveryData getDeliveryData() { return deliveryData; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DeliveryData", "getDeliveryData", "(", ")", "{", "return", "deliveryData", ";", "}" ]
Gets the deliveryData value for this LineItemSummary. @return deliveryData * Delivery data provides the number of clicks or impressions delivered for a {@link LineItem} in the last 7 days. This attribute is readonly and is populated by Google. This will be {@code null} if the delivery data cannot be computed due to ...
[ "Gets", "the", "deliveryData", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L1866-L1868
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.setDeliveryData
public void setDeliveryData(com.google.api.ads.admanager.axis.v201808.DeliveryData deliveryData) { this.deliveryData = deliveryData; }
java
public void setDeliveryData(com.google.api.ads.admanager.axis.v201808.DeliveryData deliveryData) { this.deliveryData = deliveryData; }
[ "public", "void", "setDeliveryData", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DeliveryData", "deliveryData", ")", "{", "this", ".", "deliveryData", "=", "deliveryData", ";", "}" ]
Sets the deliveryData value for this LineItemSummary. @param deliveryData * Delivery data provides the number of clicks or impressions delivered for a {@link LineItem} in the last 7 days. This attribute is readonly and is populated by Google. This will be {@code null} if the delivery data cannot be computed due to o...
[ "Sets", "the", "deliveryData", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L1893-L1895
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.getCreationDateTime
public com.google.api.ads.admanager.axis.v201808.DateTime getCreationDateTime() { return creationDateTime; }
java
public com.google.api.ads.admanager.axis.v201808.DateTime getCreationDateTime() { return creationDateTime; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DateTime", "getCreationDateTime", "(", ")", "{", "return", "creationDateTime", ";", "}" ]
Gets the creationDateTime value for this LineItemSummary. @return creationDateTime * This attribute may be {@code null} for line items created before this feature was introduced.
[ "Gets", "the", "creationDateTime", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L2192-L2194
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.setCreationDateTime
public void setCreationDateTime(com.google.api.ads.admanager.axis.v201808.DateTime creationDateTime) { this.creationDateTime = creationDateTime; }
java
public void setCreationDateTime(com.google.api.ads.admanager.axis.v201808.DateTime creationDateTime) { this.creationDateTime = creationDateTime; }
[ "public", "void", "setCreationDateTime", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "DateTime", "creationDateTime", ")", "{", "this", ".", "creationDateTime", "=", "creationDateTime", ";", "}" ]
Sets the creationDateTime value for this LineItemSummary. @param creationDateTime * This attribute may be {@code null} for line items created before this feature was introduced.
[ "Sets", "the", "creationDateTime", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L2203-L2205
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.getSetTopBoxDisplayInfo
public com.google.api.ads.admanager.axis.v201808.SetTopBoxInfo getSetTopBoxDisplayInfo() { return setTopBoxDisplayInfo; }
java
public com.google.api.ads.admanager.axis.v201808.SetTopBoxInfo getSetTopBoxDisplayInfo() { return setTopBoxDisplayInfo; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "SetTopBoxInfo", "getSetTopBoxDisplayInfo", "(", ")", "{", "return", "setTopBoxDisplayInfo", ";", "}" ]
Gets the setTopBoxDisplayInfo value for this LineItemSummary. @return setTopBoxDisplayInfo * Additional information for set-top box enabled line items. This attribute is optional and only meaningful when {@link #isSetTopBoxEnabled} is {@code true}.
[ "Gets", "the", "setTopBoxDisplayInfo", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L2392-L2394
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.setPrimaryGoal
public void setPrimaryGoal(com.google.api.ads.admanager.axis.v201808.Goal primaryGoal) { this.primaryGoal = primaryGoal; }
java
public void setPrimaryGoal(com.google.api.ads.admanager.axis.v201808.Goal primaryGoal) { this.primaryGoal = primaryGoal; }
[ "public", "void", "setPrimaryGoal", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "Goal", "primaryGoal", ")", "{", "this", ".", "primaryGoal", "=", "primaryGoal", ";", "}" ]
Sets the primaryGoal value for this LineItemSummary. @param primaryGoal * The primary goal that this {@code LineItem} is associated with, which is used in its pacing and budgeting.
[ "Sets", "the", "primaryGoal", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L2483-L2485
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java
LineItemSummary.setUserConsentEligibility
public void setUserConsentEligibility(com.google.api.ads.admanager.axis.v201808.UserConsentEligibility userConsentEligibility) { this.userConsentEligibility = userConsentEligibility; }
java
public void setUserConsentEligibility(com.google.api.ads.admanager.axis.v201808.UserConsentEligibility userConsentEligibility) { this.userConsentEligibility = userConsentEligibility; }
[ "public", "void", "setUserConsentEligibility", "(", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201808", ".", "UserConsentEligibility", "userConsentEligibility", ")", "{", "this", ".", "userConsentEligibility", "=", "userCon...
Sets the userConsentEligibility value for this LineItemSummary. @param userConsentEligibility * User consent eligibility designation for this line item. This field is optional and defaults to {@link UserConsentEligibility#NONE}. This field has no effect on serving enforcement unless you opt to "Limit line items" in...
[ "Sets", "the", "userConsentEligibility", "value", "for", "this", "LineItemSummary", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201808/LineItemSummary.java#L2611-L2613
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Media_Size_DimensionsMapEntry.java
Media_Size_DimensionsMapEntry.setKey
public void setKey(com.google.api.ads.adwords.axis.v201809.cm.MediaSize key) { this.key = key; }
java
public void setKey(com.google.api.ads.adwords.axis.v201809.cm.MediaSize key) { this.key = key; }
[ "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. @param key
[ "Sets", "the", "key", "value", "for", "this", "Media_Size_DimensionsMapEntry", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/Media_Size_DimensionsMapEntry.java#L68-L70
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ImageCreative.java
ImageCreative.getSecondaryImageAssets
public com.google.api.ads.admanager.axis.v201902.CreativeAsset[] getSecondaryImageAssets() { return secondaryImageAssets; }
java
public com.google.api.ads.admanager.axis.v201902.CreativeAsset[] getSecondaryImageAssets() { return secondaryImageAssets; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201902", ".", "CreativeAsset", "[", "]", "getSecondaryImageAssets", "(", ")", "{", "return", "secondaryImageAssets", ";", "}" ]
Gets the secondaryImageAssets value for this ImageCreative. @return secondaryImageAssets * The list of secondary image assets associated with this creative. This attribute is optional. <p>Secondary image assets can be used to store different resolution versions of the primary asset for use on non-standard density s...
[ "Gets", "the", "secondaryImageAssets", "value", "for", "this", "ImageCreative", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201902/ImageCreative.java#L178-L180
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductImage.java
ProductImage.getProductImage
public com.google.api.ads.adwords.axis.v201809.cm.Image getProductImage() { return productImage; }
java
public com.google.api.ads.adwords.axis.v201809.cm.Image getProductImage() { return productImage; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "Image", "getProductImage", "(", ")", "{", "return", "productImage", ";", "}" ]
Gets the productImage value for this ProductImage. @return productImage * Product image. An image must first be created using the MediaService, and Image.mediaId must be populated when creating a {@link "ProductImage"}. Valid image types are GIF, JPEG, and PNG. The minimum size is 300x300 and the aspect ratio must b...
[ "Gets", "the", "productImage", "value", "for", "this", "ProductImage", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductImage.java#L83-L85
train
googleads/googleads-java-lib
modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductImage.java
ProductImage.getDisplayCallToAction
public com.google.api.ads.adwords.axis.v201809.cm.DisplayCallToAction getDisplayCallToAction() { return displayCallToAction; }
java
public com.google.api.ads.adwords.axis.v201809.cm.DisplayCallToAction getDisplayCallToAction() { return displayCallToAction; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "adwords", ".", "axis", ".", "v201809", ".", "cm", ".", "DisplayCallToAction", "getDisplayCallToAction", "(", ")", "{", "return", "displayCallToAction", ";", "}" ]
Gets the displayCallToAction value for this ProductImage. @return displayCallToAction * Display-call-to-action of the product image. The DisplayCallToAction.textColor field cannot be set when setting this field.
[ "Gets", "the", "displayCallToAction", "value", "for", "this", "ProductImage", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/adwords_axis/src/main/java/com/google/api/ads/adwords/axis/v201809/cm/ProductImage.java#L133-L135
train
googleads/googleads-java-lib
modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/Targeting.java
Targeting.getInventoryTargeting
public com.google.api.ads.admanager.axis.v201805.InventoryTargeting getInventoryTargeting() { return inventoryTargeting; }
java
public com.google.api.ads.admanager.axis.v201805.InventoryTargeting getInventoryTargeting() { return inventoryTargeting; }
[ "public", "com", ".", "google", ".", "api", ".", "ads", ".", "admanager", ".", "axis", ".", "v201805", ".", "InventoryTargeting", "getInventoryTargeting", "(", ")", "{", "return", "inventoryTargeting", ";", "}" ]
Gets the inventoryTargeting value for this Targeting. @return inventoryTargeting * Specifies what inventory is targeted by the {@link LineItem}. This attribute is required. The line item must target at least one ad unit or placement.
[ "Gets", "the", "inventoryTargeting", "value", "for", "this", "Targeting", "." ]
967957cc4f6076514e3a7926fe653e4f1f7cc9c9
https://github.com/googleads/googleads-java-lib/blob/967957cc4f6076514e3a7926fe653e4f1f7cc9c9/modules/dfp_axis/src/main/java/com/google/api/ads/admanager/axis/v201805/Targeting.java#L181-L183
train