diff --git a/buildSrc/build.gradle b/buildSrc/build.gradle index 2939c829d2..df3d15aa53 100644 --- a/buildSrc/build.gradle +++ b/buildSrc/build.gradle @@ -26,6 +26,6 @@ repositories { } dependencies { - implementation "com.google.http-client:google-http-client:1.40.1" - implementation "com.google.http-client:google-http-client-xml:1.40.1" + implementation "com.google.http-client:google-http-client:1.41.4" + implementation "com.google.http-client:google-http-client-xml:1.41.4" } diff --git a/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle b/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle index 7c2c34caa9..a561883211 100644 --- a/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle +++ b/buildSrc/src/main/groovy/com.google.api-ads.java-conventions.gradle @@ -145,12 +145,13 @@ dependencies { api 'com.google.protobuf:protobuf-java' api 'io.grpc:grpc-stub' api 'io.grpc:grpc-protobuf' - api 'com.google.auth:google-auth-library-oauth2-http' - api platform('com.google.cloud:google-cloud-shared-dependencies:2.4.0') - implementation 'com.google.guava:guava:30.0-android' - implementation 'com.google.auto.service:auto-service:1.0-rc2' + api 'com.google.auth:google-auth-library-oauth2-http:1.5.3' + api 'com.google.auth:google-auth-library-credentials:1.5.3' + api platform('com.google.cloud:google-cloud-shared-dependencies:2.8.0') + implementation 'com.google.guava:guava:31.0.1-android' + implementation 'com.google.auto.service:auto-service:1.0.1' implementation 'javax.annotation:javax.annotation-api' - annotationProcessor 'com.google.auto.service:auto-service:1.0-rc2' + annotationProcessor 'com.google.auto.service:auto-service:1.0.1' testImplementation 'junit:junit:4.13.1' } diff --git a/google-ads-codegen/build.gradle b/google-ads-codegen/build.gradle index c9a7fa2eed..ccbd006e3b 100644 --- a/google-ads-codegen/build.gradle +++ b/google-ads-codegen/build.gradle @@ -25,7 +25,7 @@ dependencies { api project(":google-ads-stubs-lib") implementation 'org.slf4j:slf4j-api:1.7.25' implementation 'com.squareup:javapoet:1.11.1' - testImplementation 'com.google.api:gax-grpc:1.65.1:testlib' + testImplementation 'com.google.api:gax-grpc:2.12.2:testlib' testImplementation 'org.hamcrest:java-hamcrest:2.0.0.0' testImplementation 'org.mockito:mockito-all:1.9.5' // Finds all the stubs modules and adds these as dependencies. diff --git a/google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddExpandedTextAdWithUpgradedUrls.java b/google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddExpandedTextAdWithUpgradedUrls.java deleted file mode 100644 index 1f0aef41fa..0000000000 --- a/google-ads-examples/src/main/java/com/google/ads/googleads/examples/advancedoperations/AddExpandedTextAdWithUpgradedUrls.java +++ /dev/null @@ -1,155 +0,0 @@ -// Copyright 2018 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// https://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package com.google.ads.googleads.examples.advancedoperations; - -import com.beust.jcommander.Parameter; -import com.google.ads.googleads.examples.utils.ArgumentNames; -import com.google.ads.googleads.examples.utils.CodeSampleParams; -import com.google.ads.googleads.lib.GoogleAdsClient; -import com.google.ads.googleads.v11.common.CustomParameter; -import com.google.ads.googleads.v11.common.ExpandedTextAdInfo; -import com.google.ads.googleads.v11.enums.AdGroupAdStatusEnum.AdGroupAdStatus; -import com.google.ads.googleads.v11.errors.GoogleAdsError; -import com.google.ads.googleads.v11.errors.GoogleAdsException; -import com.google.ads.googleads.v11.resources.Ad; -import com.google.ads.googleads.v11.resources.AdGroupAd; -import com.google.ads.googleads.v11.services.AdGroupAdOperation; -import com.google.ads.googleads.v11.services.AdGroupAdServiceClient; -import com.google.ads.googleads.v11.services.MutateAdGroupAdResult; -import com.google.ads.googleads.v11.services.MutateAdGroupAdsResponse; -import com.google.ads.googleads.v11.utils.ResourceNames; -import com.google.common.collect.ImmutableList; -import java.io.FileNotFoundException; -import java.io.IOException; - -/** Adds expanded text ads to a given ad group. To get ad groups, run GetAdGroups.java. */ -public class AddExpandedTextAdWithUpgradedUrls { - - private static class AddExpandedTextAdWithUpgradedUrlsParams extends CodeSampleParams { - - @Parameter(names = ArgumentNames.CUSTOMER_ID, required = true) - private Long customerId; - - @Parameter(names = ArgumentNames.AD_GROUP_ID, required = true) - private Long adGroupId; - } - - public static void main(String[] args) throws IOException { - AddExpandedTextAdWithUpgradedUrlsParams params = new AddExpandedTextAdWithUpgradedUrlsParams(); - if (!params.parseArguments(args)) { - - // Either pass the required parameters for this example on the command line, or insert them - // into the code here. See the parameter class definition above for descriptions. - params.customerId = Long.parseLong("INSERT_CUSTOMER_ID_HERE"); - params.adGroupId = Long.parseLong("INSERT_AD_GROUP_ID_HERE"); - } - - GoogleAdsClient googleAdsClient = null; - try { - googleAdsClient = GoogleAdsClient.newBuilder().fromPropertiesFile().build(); - } catch (FileNotFoundException fnfe) { - System.err.printf( - "Failed to load GoogleAdsClient configuration from file. Exception: %s%n", fnfe); - System.exit(1); - } catch (IOException ioe) { - System.err.printf("Failed to create GoogleAdsClient. Exception: %s%n", ioe); - System.exit(1); - } - - try { - new AddExpandedTextAdWithUpgradedUrls() - .runExample(googleAdsClient, params.customerId, params.adGroupId); - } catch (GoogleAdsException gae) { - // GoogleAdsException is the base class for most exceptions thrown by an API request. - // Instances of this exception have a message and a GoogleAdsFailure that contains a - // collection of GoogleAdsErrors that indicate the underlying causes of the - // GoogleAdsException. - System.err.printf( - "Request ID %s failed due to GoogleAdsException. Underlying errors:%n", - gae.getRequestId()); - int i = 0; - for (GoogleAdsError googleAdsError : gae.getGoogleAdsFailure().getErrorsList()) { - System.err.printf(" Error %d: %s%n", i++, googleAdsError); - } - System.exit(1); - } - } - - /** - * Runs the example. - * - * @param googleAdsClient the Google Ads API client. - * @param customerId the client customer ID. - * @param adGroupId the ad group ID. - * @throws GoogleAdsException if an API request failed with one or more service errors. - */ - private void runExample(GoogleAdsClient googleAdsClient, long customerId, long adGroupId) { - String adGroupResourceName = ResourceNames.adGroup(customerId, adGroupId); - - // Creates an expanded text ad. - Ad ad = - Ad.newBuilder() - .setExpandedTextAd( - ExpandedTextAdInfo.newBuilder() - .setDescription("Low-gravity fun for everyone!") - .setHeadlinePart1("Luxury Cruise to Mars") - .setHeadlinePart2("Visit the Red Planet in style.") - .build()) - // Specifies a tracking URL for 3rd party tracking provider. You may specify one at - // customer, campaign, ad group, ad, criterion or feed item levels. - .setTrackingUrlTemplate( - "http://tracker.example.com/?season={_season}&promocode={_promocode}" - + "&u={lpurl}") - // Since your tracking URL has two custom parameters, provide their values too. This can - // be provided at campaign, ad group, ad, criterion or feed item levels. - .addAllUrlCustomParameters( - ImmutableList.of( - CustomParameter.newBuilder().setKey("season").setValue("christmas").build(), - CustomParameter.newBuilder().setKey("promocode").setValue("NY123").build())) - // Specifies a list of final URLs. This field cannot be set if URL field is set. This - // may be specified at ad, criterion and feed item levels. - .addFinalUrls("http://www.example.com/cruise/space/") - .addFinalUrls("http://www.example.com/locations/mars/") - // Specifies a list of final mobile URLs. This field cannot be set if URL field is - // set, or finalUrls is unset. This may be specified at ad, criterion and feed item - // levels. - /* - .addFinalMobileUrls("http://mobile.example.com/cruise/space/") - .addFinalMobileUrls("http://mobile.example.com/locations/mars/") - */ - .build(); - - // Creates an ad group ad containing the ad. - AdGroupAd adGroupAd = - AdGroupAd.newBuilder() - .setAdGroup(adGroupResourceName) - .setAd(ad) - // Sets the status to PAUSED. - .setStatus(AdGroupAdStatus.PAUSED) - .build(); - - try (AdGroupAdServiceClient adGroupAdServiceClient = - googleAdsClient.getLatestVersion().createAdGroupAdServiceClient()) { - MutateAdGroupAdsResponse response = - adGroupAdServiceClient.mutateAdGroupAds( - Long.toString(customerId), - ImmutableList.of(AdGroupAdOperation.newBuilder().setCreate(adGroupAd).build())); - for (MutateAdGroupAdResult result : response.getResultsList()) { - System.out.printf( - "Added an expanded text ad with resource name '%s'.%n", result.getResourceName()); - } - } - } -} diff --git a/google-ads-examples/src/main/java/com/google/ads/googleads/examples/basicoperations/AddExpandedTextAds.java b/google-ads-examples/src/main/java/com/google/ads/googleads/examples/basicoperations/AddExpandedTextAds.java deleted file mode 100644 index 4c41a1a447..0000000000 --- a/google-ads-examples/src/main/java/com/google/ads/googleads/examples/basicoperations/AddExpandedTextAds.java +++ /dev/null @@ -1,147 +0,0 @@ -// Copyright 2018 Google LLC -// -// Licensed under the Apache License, Version 2.0 (the "License"); -// you may not use this file except in compliance with the License. -// You may obtain a copy of the License at -// -// https://www.apache.org/licenses/LICENSE-2.0 -// -// Unless required by applicable law or agreed to in writing, software -// distributed under the License is distributed on an "AS IS" BASIS, -// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -// See the License for the specific language governing permissions and -// limitations under the License. - -package com.google.ads.googleads.examples.basicoperations; - -import com.beust.jcommander.Parameter; -import com.google.ads.googleads.examples.utils.ArgumentNames; -import com.google.ads.googleads.examples.utils.CodeSampleParams; -import com.google.ads.googleads.lib.GoogleAdsClient; -import com.google.ads.googleads.v11.common.ExpandedTextAdInfo; -import com.google.ads.googleads.v11.enums.AdGroupAdStatusEnum.AdGroupAdStatus; -import com.google.ads.googleads.v11.errors.GoogleAdsError; -import com.google.ads.googleads.v11.errors.GoogleAdsException; -import com.google.ads.googleads.v11.resources.Ad; -import com.google.ads.googleads.v11.resources.AdGroupAd; -import com.google.ads.googleads.v11.services.AdGroupAdOperation; -import com.google.ads.googleads.v11.services.AdGroupAdServiceClient; -import com.google.ads.googleads.v11.services.MutateAdGroupAdResult; -import com.google.ads.googleads.v11.services.MutateAdGroupAdsResponse; -import com.google.ads.googleads.v11.utils.ResourceNames; -import java.io.FileNotFoundException; -import java.io.IOException; -import java.util.ArrayList; -import java.util.List; - -/** Adds expanded text ads to a given ad group. */ -public class AddExpandedTextAds { - - /** Number of ads being added / updated in this code example. */ - private static final int NUMBER_OF_ADS_TO_ADD = 5; - - private static class AddExpandedTextAdsParams extends CodeSampleParams { - - @Parameter(names = ArgumentNames.CUSTOMER_ID, required = true) - private Long customerId; - - @Parameter(names = ArgumentNames.AD_GROUP_ID, required = true) - private Long adGroupId; - } - - public static void main(String[] args) { - AddExpandedTextAdsParams params = new AddExpandedTextAdsParams(); - if (!params.parseArguments(args)) { - - // Either pass the required parameters for this example on the command line, or insert them - // into the code here. See the parameter class definition above for descriptions. - params.customerId = Long.parseLong("INSERT_CUSTOMER_ID_HERE"); - params.adGroupId = Long.parseLong("INSERT_AD_GROUP_ID_HERE"); - } - - GoogleAdsClient googleAdsClient = null; - try { - googleAdsClient = GoogleAdsClient.newBuilder().fromPropertiesFile().build(); - } catch (FileNotFoundException fnfe) { - System.err.printf( - "Failed to load GoogleAdsClient configuration from file. Exception: %s%n", fnfe); - System.exit(1); - } catch (IOException ioe) { - System.err.printf("Failed to create GoogleAdsClient. Exception: %s%n", ioe); - System.exit(1); - } - - try { - new AddExpandedTextAds().runExample(googleAdsClient, params.customerId, params.adGroupId); - } catch (GoogleAdsException gae) { - // GoogleAdsException is the base class for most exceptions thrown by an API request. - // Instances of this exception have a message and a GoogleAdsFailure that contains a - // collection of GoogleAdsErrors that indicate the underlying causes of the - // GoogleAdsException. - System.err.printf( - "Request ID %s failed due to GoogleAdsException. Underlying errors:%n", - gae.getRequestId()); - int i = 0; - for (GoogleAdsError googleAdsError : gae.getGoogleAdsFailure().getErrorsList()) { - System.err.printf(" Error %d: %s%n", i++, googleAdsError); - } - System.exit(1); - } - } - - /** - * Runs the example. - * - * @param googleAdsClient the Google Ads API client. - * @param customerId the client customer ID. - * @param adGroupId the ad group ID. - * @throws GoogleAdsException if an API request failed with one or more service errors. - */ - // [START add_expanded_text_ads] - private void runExample(GoogleAdsClient googleAdsClient, long customerId, long adGroupId) { - - String adGroupResourceName = ResourceNames.adGroup(customerId, adGroupId); - - List operations = new ArrayList<>(); - - for (int i = 0; i < NUMBER_OF_ADS_TO_ADD; i++) { - - // Creates the expanded text ad info. - ExpandedTextAdInfo expandedTextAdInfo = - ExpandedTextAdInfo.newBuilder() - .setHeadlinePart1(String.format("Cruise #%d to Mars", i)) - .setHeadlinePart2("Best Space Cruise Line") - .setDescription("Buy your tickets now!") - .build(); - - // Wraps the info in an Ad object. - Ad ad = - Ad.newBuilder() - .setExpandedTextAd(expandedTextAdInfo) - .addFinalUrls("http://www.example.com") - .build(); - - // Builds the final ad group ad representation. - AdGroupAd adGroupAd = - AdGroupAd.newBuilder() - .setAdGroup(adGroupResourceName) - .setStatus(AdGroupAdStatus.PAUSED) - .setAd(ad) - .build(); - - AdGroupAdOperation op = AdGroupAdOperation.newBuilder().setCreate(adGroupAd).build(); - operations.add(op); - } - - try (AdGroupAdServiceClient adGroupAdServiceClient = - googleAdsClient.getLatestVersion().createAdGroupAdServiceClient()) { - MutateAdGroupAdsResponse response = - adGroupAdServiceClient.mutateAdGroupAds(Long.toString(customerId), operations); - for (MutateAdGroupAdResult result : response.getResultsList()) { - System.out.printf( - "Expanded text ad created with resource name: %s%n", result.getResourceName()); - } - } - } - // [END add_expanded_text_ads] -} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CriterionCategoryChannelAvailability.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CriterionCategoryChannelAvailability.java index dd407a10b3..901bdd7ea0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CriterionCategoryChannelAvailability.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CriterionCategoryChannelAvailability.java @@ -1020,8 +1020,8 @@ public int getAdvertisingChannelSubTypeValue(int index) { * * * repeated .google.ads.googleads.v11.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType advertising_channel_sub_type = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of advertisingChannelSubType at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for advertisingChannelSubType to set. * @return This builder for chaining. */ public Builder setAdvertisingChannelSubTypeValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfo.java index a47f2b0a5c..044f58305b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfo.java @@ -116,10 +116,10 @@ private CrmBasedUserListInfo( * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -137,10 +137,10 @@ public boolean hasAppId() { * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -167,10 +167,10 @@ public java.lang.String getAppId() { * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -611,10 +611,10 @@ public Builder mergeFrom( * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -631,10 +631,10 @@ public boolean hasAppId() { * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -660,10 +660,10 @@ public java.lang.String getAppId() { * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -690,10 +690,10 @@ public java.lang.String getAppId() { * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -718,10 +718,10 @@ public Builder setAppId( * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -741,10 +741,10 @@ public Builder clearAppId() { * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfoOrBuilder.java index f5e9cce6bd..db6df27115 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/CrmBasedUserListInfoOrBuilder.java @@ -12,10 +12,10 @@ public interface CrmBasedUserListInfoOrBuilder extends * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -30,10 +30,10 @@ public interface CrmBasedUserListInfoOrBuilder extends * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. @@ -48,10 +48,10 @@ public interface CrmBasedUserListInfoOrBuilder extends * A string that uniquely identifies a mobile application from which the data * was collected. * For iOS, the ID string is the 9 digit string that appears at the end of an - * App Store URL (e.g., "476943146" for "Flood-It! 2" whose App Store link is - * http://itunes.apple.com/us/app/flood-it!-2/id476943146). - * For Android, the ID string is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * App Store URL (for example, "476943146" for "Flood-It! 2" whose App Store + * link is http://itunes.apple.com/us/app/flood-it!-2/id476943146). For + * Android, the ID string is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * https://play.google.com/store/apps/details?id=com.labpixies.colordrips). * Required when creating CrmBasedUserList for uploading mobile advertising * IDs. diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfo.java index 374b70c555..7ec452c78b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfo.java @@ -735,7 +735,7 @@ public java.lang.String getCallToActionText() { private boolean leadFormOnly_; /** *
-   * Boolean flag that indicates if this ad must be served with lead form.
+   * Boolean option that indicates if this ad must be served with lead form.
    * 
* * optional bool lead_form_only = 9; @@ -747,7 +747,7 @@ public boolean hasLeadFormOnly() { } /** *
-   * Boolean flag that indicates if this ad must be served with lead form.
+   * Boolean option that indicates if this ad must be served with lead form.
    * 
* * optional bool lead_form_only = 9; @@ -3800,7 +3800,7 @@ public Builder setCallToActionTextBytes( private boolean leadFormOnly_ ; /** *
-     * Boolean flag that indicates if this ad must be served with lead form.
+     * Boolean option that indicates if this ad must be served with lead form.
      * 
* * optional bool lead_form_only = 9; @@ -3812,7 +3812,7 @@ public boolean hasLeadFormOnly() { } /** *
-     * Boolean flag that indicates if this ad must be served with lead form.
+     * Boolean option that indicates if this ad must be served with lead form.
      * 
* * optional bool lead_form_only = 9; @@ -3824,7 +3824,7 @@ public boolean getLeadFormOnly() { } /** *
-     * Boolean flag that indicates if this ad must be served with lead form.
+     * Boolean option that indicates if this ad must be served with lead form.
      * 
* * optional bool lead_form_only = 9; @@ -3839,7 +3839,7 @@ public Builder setLeadFormOnly(boolean value) { } /** *
-     * Boolean flag that indicates if this ad must be served with lead form.
+     * Boolean option that indicates if this ad must be served with lead form.
      * 
* * optional bool lead_form_only = 9; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfoOrBuilder.java index 0a98ea7e8d..a39efe7d71 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DiscoveryMultiAssetAdInfoOrBuilder.java @@ -401,7 +401,7 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsOrBuilde /** *
-   * Boolean flag that indicates if this ad must be served with lead form.
+   * Boolean option that indicates if this ad must be served with lead form.
    * 
* * optional bool lead_form_only = 9; @@ -410,7 +410,7 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsOrBuilde boolean hasLeadFormOnly(); /** *
-   * Boolean flag that indicates if this ad must be served with lead form.
+   * Boolean option that indicates if this ad must be served with lead form.
    * 
* * optional bool lead_form_only = 9; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToAction.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToAction.java index 3d4c41851a..3753edefa9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToAction.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToAction.java @@ -173,8 +173,8 @@ public java.lang.String getText() { private volatile java.lang.Object textColor_; /** *
-   * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-   * white.
+   * Text color for the display-call-to-action in hexadecimal, for example,
+   * # ffffff for white.
    * 
* * optional string text_color = 6; @@ -186,8 +186,8 @@ public boolean hasTextColor() { } /** *
-   * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-   * white.
+   * Text color for the display-call-to-action in hexadecimal, for example,
+   * # ffffff for white.
    * 
* * optional string text_color = 6; @@ -208,8 +208,8 @@ public java.lang.String getTextColor() { } /** *
-   * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-   * white.
+   * Text color for the display-call-to-action in hexadecimal, for example,
+   * # ffffff for white.
    * 
* * optional string text_color = 6; @@ -774,8 +774,8 @@ public Builder setTextBytes( private java.lang.Object textColor_ = ""; /** *
-     * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-     * white.
+     * Text color for the display-call-to-action in hexadecimal, for example,
+     * # ffffff for white.
      * 
* * optional string text_color = 6; @@ -786,8 +786,8 @@ public boolean hasTextColor() { } /** *
-     * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-     * white.
+     * Text color for the display-call-to-action in hexadecimal, for example,
+     * # ffffff for white.
      * 
* * optional string text_color = 6; @@ -807,8 +807,8 @@ public java.lang.String getTextColor() { } /** *
-     * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-     * white.
+     * Text color for the display-call-to-action in hexadecimal, for example,
+     * # ffffff for white.
      * 
* * optional string text_color = 6; @@ -829,8 +829,8 @@ public java.lang.String getTextColor() { } /** *
-     * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-     * white.
+     * Text color for the display-call-to-action in hexadecimal, for example,
+     * # ffffff for white.
      * 
* * optional string text_color = 6; @@ -849,8 +849,8 @@ public Builder setTextColor( } /** *
-     * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-     * white.
+     * Text color for the display-call-to-action in hexadecimal, for example,
+     * # ffffff for white.
      * 
* * optional string text_color = 6; @@ -864,8 +864,8 @@ public Builder clearTextColor() { } /** *
-     * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-     * white.
+     * Text color for the display-call-to-action in hexadecimal, for example,
+     * # ffffff for white.
      * 
* * optional string text_color = 6; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToActionOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToActionOrBuilder.java index c9263cfd1c..84342f99c9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToActionOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DisplayCallToActionOrBuilder.java @@ -38,8 +38,8 @@ public interface DisplayCallToActionOrBuilder extends /** *
-   * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-   * white.
+   * Text color for the display-call-to-action in hexadecimal, for example,
+   * # ffffff for white.
    * 
* * optional string text_color = 6; @@ -48,8 +48,8 @@ public interface DisplayCallToActionOrBuilder extends boolean hasTextColor(); /** *
-   * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-   * white.
+   * Text color for the display-call-to-action in hexadecimal, for example,
+   * # ffffff for white.
    * 
* * optional string text_color = 6; @@ -58,8 +58,8 @@ public interface DisplayCallToActionOrBuilder extends java.lang.String getTextColor(); /** *
-   * Text color for the display-call-to-action in hexadecimal, e.g. #ffffff for
-   * white.
+   * Text color for the display-call-to-action in hexadecimal, for example,
+   * # ffffff for white.
    * 
* * optional string text_color = 6; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAsset.java index cbc1d99d33..bb7510f0bb 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAsset.java @@ -221,7 +221,8 @@ private DynamicCustomAsset( /** *
    * Required. ID which can be any sequence of letters and digits, and must be
-   * unique and match the values of remarketing tag, e.g. sedan. Required.
+   * unique and match the values of remarketing tag, for example, sedan.
+   * Required.
    * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -243,7 +244,8 @@ public java.lang.String getId() { /** *
    * Required. ID which can be any sequence of letters and digits, and must be
-   * unique and match the values of remarketing tag, e.g. sedan. Required.
+   * unique and match the values of remarketing tag, for example, sedan.
+   * Required.
    * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -268,8 +270,8 @@ public java.lang.String getId() { private volatile java.lang.Object id2_; /** *
-   * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-   * (ID + ID2) must be unique.
+   * ID2 which can be any sequence of letters and digits, for example, red. ID
+   * sequence (ID + ID2) must be unique.
    * 
* * string id2 = 2; @@ -290,8 +292,8 @@ public java.lang.String getId2() { } /** *
-   * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-   * (ID + ID2) must be unique.
+   * ID2 which can be any sequence of letters and digits, for example, red. ID
+   * sequence (ID + ID2) must be unique.
    * 
* * string id2 = 2; @@ -316,7 +318,7 @@ public java.lang.String getId2() { private volatile java.lang.Object itemTitle_; /** *
-   * Required. Item title, e.g. Mid-size sedan. Required.
+   * Required. Item title, for example, Mid-size sedan. Required.
    * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -337,7 +339,7 @@ public java.lang.String getItemTitle() { } /** *
-   * Required. Item title, e.g. Mid-size sedan. Required.
+   * Required. Item title, for example, Mid-size sedan. Required.
    * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -362,7 +364,7 @@ public java.lang.String getItemTitle() { private volatile java.lang.Object itemSubtitle_; /** *
-   * Item subtitle, e.g. At your Mountain View dealership.
+   * Item subtitle, for example, At your Mountain View dealership.
    * 
* * string item_subtitle = 4; @@ -383,7 +385,7 @@ public java.lang.String getItemSubtitle() { } /** *
-   * Item subtitle, e.g. At your Mountain View dealership.
+   * Item subtitle, for example, At your Mountain View dealership.
    * 
* * string item_subtitle = 4; @@ -408,7 +410,7 @@ public java.lang.String getItemSubtitle() { private volatile java.lang.Object itemDescription_; /** *
-   * Item description, e.g. Best selling mid-size car.
+   * Item description, for example, Best selling mid-size car.
    * 
* * string item_description = 5; @@ -429,7 +431,7 @@ public java.lang.String getItemDescription() { } /** *
-   * Item description, e.g. Best selling mid-size car.
+   * Item description, for example, Best selling mid-size car.
    * 
* * string item_description = 5; @@ -455,9 +457,9 @@ public java.lang.String getItemDescription() { /** *
    * Item address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string item_address = 6; @@ -479,9 +481,9 @@ public java.lang.String getItemAddress() { /** *
    * Item address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string item_address = 6; @@ -506,7 +508,7 @@ public java.lang.String getItemAddress() { private volatile java.lang.Object itemCategory_; /** *
-   * Item category, e.g. Sedans.
+   * Item category, for example, Sedans.
    * 
* * string item_category = 7; @@ -527,7 +529,7 @@ public java.lang.String getItemCategory() { } /** *
-   * Item category, e.g. Sedans.
+   * Item category, for example, Sedans.
    * 
* * string item_category = 7; @@ -553,7 +555,7 @@ public java.lang.String getItemCategory() { /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
    * 
* * string price = 8; @@ -575,7 +577,7 @@ public java.lang.String getPrice() { /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
    * 
* * string price = 8; @@ -601,7 +603,7 @@ public java.lang.String getPrice() { /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -624,7 +626,7 @@ public java.lang.String getSalePrice() { /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -651,7 +653,7 @@ public java.lang.String getSalePrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $20,000.00.
+   * used instead of 'price', for example, Starting at $20,000.00.
    * 
* * string formatted_price = 10; @@ -673,7 +675,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $20,000.00.
+   * used instead of 'price', for example, Starting at $20,000.00.
    * 
* * string formatted_price = 10; @@ -699,7 +701,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+   * will be used instead of 'sale price', for example, On sale for $15,000.00.
    * 
* * string formatted_sale_price = 11; @@ -721,7 +723,7 @@ public java.lang.String getFormattedSalePrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+   * will be used instead of 'sale price', for example, On sale for $15,000.00.
    * 
* * string formatted_sale_price = 11; @@ -746,8 +748,8 @@ public java.lang.String getFormattedSalePrice() { private volatile java.lang.Object imageUrl_; /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 12; @@ -768,8 +770,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 12; @@ -794,7 +796,7 @@ public java.lang.String getImageUrl() { private com.google.protobuf.LazyStringList contextualKeywords_; /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -806,7 +808,7 @@ public java.lang.String getImageUrl() { } /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -817,7 +819,7 @@ public int getContextualKeywordsCount() { } /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -829,7 +831,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -845,7 +847,7 @@ public java.lang.String getContextualKeywords(int index) { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -867,7 +869,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -893,7 +895,7 @@ public java.lang.String getAndroidAppLink() { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; @@ -914,7 +916,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; @@ -1622,7 +1624,8 @@ public Builder mergeFrom( /** *
      * Required. ID which can be any sequence of letters and digits, and must be
-     * unique and match the values of remarketing tag, e.g. sedan. Required.
+     * unique and match the values of remarketing tag, for example, sedan.
+     * Required.
      * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1643,7 +1646,8 @@ public java.lang.String getId() { /** *
      * Required. ID which can be any sequence of letters and digits, and must be
-     * unique and match the values of remarketing tag, e.g. sedan. Required.
+     * unique and match the values of remarketing tag, for example, sedan.
+     * Required.
      * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1665,7 +1669,8 @@ public java.lang.String getId() { /** *
      * Required. ID which can be any sequence of letters and digits, and must be
-     * unique and match the values of remarketing tag, e.g. sedan. Required.
+     * unique and match the values of remarketing tag, for example, sedan.
+     * Required.
      * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1685,7 +1690,8 @@ public Builder setId( /** *
      * Required. ID which can be any sequence of letters and digits, and must be
-     * unique and match the values of remarketing tag, e.g. sedan. Required.
+     * unique and match the values of remarketing tag, for example, sedan.
+     * Required.
      * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1700,7 +1706,8 @@ public Builder clearId() { /** *
      * Required. ID which can be any sequence of letters and digits, and must be
-     * unique and match the values of remarketing tag, e.g. sedan. Required.
+     * unique and match the values of remarketing tag, for example, sedan.
+     * Required.
      * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -1722,8 +1729,8 @@ public Builder setIdBytes( private java.lang.Object id2_ = ""; /** *
-     * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-     * (ID + ID2) must be unique.
+     * ID2 which can be any sequence of letters and digits, for example, red. ID
+     * sequence (ID + ID2) must be unique.
      * 
* * string id2 = 2; @@ -1743,8 +1750,8 @@ public java.lang.String getId2() { } /** *
-     * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-     * (ID + ID2) must be unique.
+     * ID2 which can be any sequence of letters and digits, for example, red. ID
+     * sequence (ID + ID2) must be unique.
      * 
* * string id2 = 2; @@ -1765,8 +1772,8 @@ public java.lang.String getId2() { } /** *
-     * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-     * (ID + ID2) must be unique.
+     * ID2 which can be any sequence of letters and digits, for example, red. ID
+     * sequence (ID + ID2) must be unique.
      * 
* * string id2 = 2; @@ -1785,8 +1792,8 @@ public Builder setId2( } /** *
-     * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-     * (ID + ID2) must be unique.
+     * ID2 which can be any sequence of letters and digits, for example, red. ID
+     * sequence (ID + ID2) must be unique.
      * 
* * string id2 = 2; @@ -1800,8 +1807,8 @@ public Builder clearId2() { } /** *
-     * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-     * (ID + ID2) must be unique.
+     * ID2 which can be any sequence of letters and digits, for example, red. ID
+     * sequence (ID + ID2) must be unique.
      * 
* * string id2 = 2; @@ -1823,7 +1830,7 @@ public Builder setId2Bytes( private java.lang.Object itemTitle_ = ""; /** *
-     * Required. Item title, e.g. Mid-size sedan. Required.
+     * Required. Item title, for example, Mid-size sedan. Required.
      * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1843,7 +1850,7 @@ public java.lang.String getItemTitle() { } /** *
-     * Required. Item title, e.g. Mid-size sedan. Required.
+     * Required. Item title, for example, Mid-size sedan. Required.
      * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1864,7 +1871,7 @@ public java.lang.String getItemTitle() { } /** *
-     * Required. Item title, e.g. Mid-size sedan. Required.
+     * Required. Item title, for example, Mid-size sedan. Required.
      * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1883,7 +1890,7 @@ public Builder setItemTitle( } /** *
-     * Required. Item title, e.g. Mid-size sedan. Required.
+     * Required. Item title, for example, Mid-size sedan. Required.
      * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1897,7 +1904,7 @@ public Builder clearItemTitle() { } /** *
-     * Required. Item title, e.g. Mid-size sedan. Required.
+     * Required. Item title, for example, Mid-size sedan. Required.
      * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1919,7 +1926,7 @@ public Builder setItemTitleBytes( private java.lang.Object itemSubtitle_ = ""; /** *
-     * Item subtitle, e.g. At your Mountain View dealership.
+     * Item subtitle, for example, At your Mountain View dealership.
      * 
* * string item_subtitle = 4; @@ -1939,7 +1946,7 @@ public java.lang.String getItemSubtitle() { } /** *
-     * Item subtitle, e.g. At your Mountain View dealership.
+     * Item subtitle, for example, At your Mountain View dealership.
      * 
* * string item_subtitle = 4; @@ -1960,7 +1967,7 @@ public java.lang.String getItemSubtitle() { } /** *
-     * Item subtitle, e.g. At your Mountain View dealership.
+     * Item subtitle, for example, At your Mountain View dealership.
      * 
* * string item_subtitle = 4; @@ -1979,7 +1986,7 @@ public Builder setItemSubtitle( } /** *
-     * Item subtitle, e.g. At your Mountain View dealership.
+     * Item subtitle, for example, At your Mountain View dealership.
      * 
* * string item_subtitle = 4; @@ -1993,7 +2000,7 @@ public Builder clearItemSubtitle() { } /** *
-     * Item subtitle, e.g. At your Mountain View dealership.
+     * Item subtitle, for example, At your Mountain View dealership.
      * 
* * string item_subtitle = 4; @@ -2015,7 +2022,7 @@ public Builder setItemSubtitleBytes( private java.lang.Object itemDescription_ = ""; /** *
-     * Item description, e.g. Best selling mid-size car.
+     * Item description, for example, Best selling mid-size car.
      * 
* * string item_description = 5; @@ -2035,7 +2042,7 @@ public java.lang.String getItemDescription() { } /** *
-     * Item description, e.g. Best selling mid-size car.
+     * Item description, for example, Best selling mid-size car.
      * 
* * string item_description = 5; @@ -2056,7 +2063,7 @@ public java.lang.String getItemDescription() { } /** *
-     * Item description, e.g. Best selling mid-size car.
+     * Item description, for example, Best selling mid-size car.
      * 
* * string item_description = 5; @@ -2075,7 +2082,7 @@ public Builder setItemDescription( } /** *
-     * Item description, e.g. Best selling mid-size car.
+     * Item description, for example, Best selling mid-size car.
      * 
* * string item_description = 5; @@ -2089,7 +2096,7 @@ public Builder clearItemDescription() { } /** *
-     * Item description, e.g. Best selling mid-size car.
+     * Item description, for example, Best selling mid-size car.
      * 
* * string item_description = 5; @@ -2112,9 +2119,9 @@ public Builder setItemDescriptionBytes( /** *
      * Item address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string item_address = 6; @@ -2135,9 +2142,9 @@ public java.lang.String getItemAddress() { /** *
      * Item address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string item_address = 6; @@ -2159,9 +2166,9 @@ public java.lang.String getItemAddress() { /** *
      * Item address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string item_address = 6; @@ -2181,9 +2188,9 @@ public Builder setItemAddress( /** *
      * Item address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string item_address = 6; @@ -2198,9 +2205,9 @@ public Builder clearItemAddress() { /** *
      * Item address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string item_address = 6; @@ -2222,7 +2229,7 @@ public Builder setItemAddressBytes( private java.lang.Object itemCategory_ = ""; /** *
-     * Item category, e.g. Sedans.
+     * Item category, for example, Sedans.
      * 
* * string item_category = 7; @@ -2242,7 +2249,7 @@ public java.lang.String getItemCategory() { } /** *
-     * Item category, e.g. Sedans.
+     * Item category, for example, Sedans.
      * 
* * string item_category = 7; @@ -2263,7 +2270,7 @@ public java.lang.String getItemCategory() { } /** *
-     * Item category, e.g. Sedans.
+     * Item category, for example, Sedans.
      * 
* * string item_category = 7; @@ -2282,7 +2289,7 @@ public Builder setItemCategory( } /** *
-     * Item category, e.g. Sedans.
+     * Item category, for example, Sedans.
      * 
* * string item_category = 7; @@ -2296,7 +2303,7 @@ public Builder clearItemCategory() { } /** *
-     * Item category, e.g. Sedans.
+     * Item category, for example, Sedans.
      * 
* * string item_category = 7; @@ -2319,7 +2326,7 @@ public Builder setItemCategoryBytes( /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
      * 
* * string price = 8; @@ -2340,7 +2347,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
      * 
* * string price = 8; @@ -2362,7 +2369,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
      * 
* * string price = 8; @@ -2382,7 +2389,7 @@ public Builder setPrice( /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
      * 
* * string price = 8; @@ -2397,7 +2404,7 @@ public Builder clearPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
      * 
* * string price = 8; @@ -2420,7 +2427,7 @@ public Builder setPriceBytes( /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2442,7 +2449,7 @@ public java.lang.String getSalePrice() { /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2465,7 +2472,7 @@ public java.lang.String getSalePrice() { /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2486,7 +2493,7 @@ public Builder setSalePrice( /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2502,7 +2509,7 @@ public Builder clearSalePrice() { /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2526,7 +2533,7 @@ public Builder setSalePriceBytes( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $20,000.00.
+     * used instead of 'price', for example, Starting at $20,000.00.
      * 
* * string formatted_price = 10; @@ -2547,7 +2554,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $20,000.00.
+     * used instead of 'price', for example, Starting at $20,000.00.
      * 
* * string formatted_price = 10; @@ -2569,7 +2576,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $20,000.00.
+     * used instead of 'price', for example, Starting at $20,000.00.
      * 
* * string formatted_price = 10; @@ -2589,7 +2596,7 @@ public Builder setFormattedPrice( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $20,000.00.
+     * used instead of 'price', for example, Starting at $20,000.00.
      * 
* * string formatted_price = 10; @@ -2604,7 +2611,7 @@ public Builder clearFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $20,000.00.
+     * used instead of 'price', for example, Starting at $20,000.00.
      * 
* * string formatted_price = 10; @@ -2627,7 +2634,7 @@ public Builder setFormattedPriceBytes( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+     * will be used instead of 'sale price', for example, On sale for $15,000.00.
      * 
* * string formatted_sale_price = 11; @@ -2648,7 +2655,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+     * will be used instead of 'sale price', for example, On sale for $15,000.00.
      * 
* * string formatted_sale_price = 11; @@ -2670,7 +2677,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+     * will be used instead of 'sale price', for example, On sale for $15,000.00.
      * 
* * string formatted_sale_price = 11; @@ -2690,7 +2697,7 @@ public Builder setFormattedSalePrice( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+     * will be used instead of 'sale price', for example, On sale for $15,000.00.
      * 
* * string formatted_sale_price = 11; @@ -2705,7 +2712,7 @@ public Builder clearFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+     * will be used instead of 'sale price', for example, On sale for $15,000.00.
      * 
* * string formatted_sale_price = 11; @@ -2727,8 +2734,8 @@ public Builder setFormattedSalePriceBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 12; @@ -2748,8 +2755,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 12; @@ -2770,8 +2777,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 12; @@ -2790,8 +2797,8 @@ public Builder setImageUrl( } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 12; @@ -2805,8 +2812,8 @@ public Builder clearImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 12; @@ -2834,7 +2841,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2846,7 +2853,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2857,7 +2864,7 @@ public int getContextualKeywordsCount() { } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2869,7 +2876,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2882,7 +2889,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2902,7 +2909,7 @@ public Builder setContextualKeywords( } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2921,7 +2928,7 @@ public Builder addContextualKeywords( } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2938,7 +2945,7 @@ public Builder addAllContextualKeywords( } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2952,7 +2959,7 @@ public Builder clearContextualKeywords() { } /** *
-     * Contextual keywords, e.g. Sedans, 4 door sedans.
+     * Contextual keywords, for example, Sedans, 4 door sedans.
      * 
* * repeated string contextual_keywords = 13; @@ -2974,7 +2981,7 @@ public Builder addContextualKeywordsBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2995,7 +3002,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3017,7 +3024,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3037,7 +3044,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3052,7 +3059,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3075,7 +3082,7 @@ public Builder setAndroidAppLinkBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3095,7 +3102,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3116,7 +3123,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3135,7 +3142,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3149,7 +3156,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAssetOrBuilder.java index 011d31e2c3..3de5ea181c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicCustomAssetOrBuilder.java @@ -10,7 +10,8 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Required. ID which can be any sequence of letters and digits, and must be
-   * unique and match the values of remarketing tag, e.g. sedan. Required.
+   * unique and match the values of remarketing tag, for example, sedan.
+   * Required.
    * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -20,7 +21,8 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Required. ID which can be any sequence of letters and digits, and must be
-   * unique and match the values of remarketing tag, e.g. sedan. Required.
+   * unique and match the values of remarketing tag, for example, sedan.
+   * Required.
    * 
* * string id = 1 [(.google.api.field_behavior) = REQUIRED]; @@ -31,8 +33,8 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-   * (ID + ID2) must be unique.
+   * ID2 which can be any sequence of letters and digits, for example, red. ID
+   * sequence (ID + ID2) must be unique.
    * 
* * string id2 = 2; @@ -41,8 +43,8 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getId2(); /** *
-   * ID2 which can be any sequence of letters and digits, e.g. red. ID sequence
-   * (ID + ID2) must be unique.
+   * ID2 which can be any sequence of letters and digits, for example, red. ID
+   * sequence (ID + ID2) must be unique.
    * 
* * string id2 = 2; @@ -53,7 +55,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * Required. Item title, e.g. Mid-size sedan. Required.
+   * Required. Item title, for example, Mid-size sedan. Required.
    * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -62,7 +64,7 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getItemTitle(); /** *
-   * Required. Item title, e.g. Mid-size sedan. Required.
+   * Required. Item title, for example, Mid-size sedan. Required.
    * 
* * string item_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -73,7 +75,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * Item subtitle, e.g. At your Mountain View dealership.
+   * Item subtitle, for example, At your Mountain View dealership.
    * 
* * string item_subtitle = 4; @@ -82,7 +84,7 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getItemSubtitle(); /** *
-   * Item subtitle, e.g. At your Mountain View dealership.
+   * Item subtitle, for example, At your Mountain View dealership.
    * 
* * string item_subtitle = 4; @@ -93,7 +95,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * Item description, e.g. Best selling mid-size car.
+   * Item description, for example, Best selling mid-size car.
    * 
* * string item_description = 5; @@ -102,7 +104,7 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getItemDescription(); /** *
-   * Item description, e.g. Best selling mid-size car.
+   * Item description, for example, Best selling mid-size car.
    * 
* * string item_description = 5; @@ -114,9 +116,9 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Item address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string item_address = 6; @@ -126,9 +128,9 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Item address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string item_address = 6; @@ -139,7 +141,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * Item category, e.g. Sedans.
+   * Item category, for example, Sedans.
    * 
* * string item_category = 7; @@ -148,7 +150,7 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getItemCategory(); /** *
-   * Item category, e.g. Sedans.
+   * Item category, for example, Sedans.
    * 
* * string item_category = 7; @@ -160,7 +162,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
    * 
* * string price = 8; @@ -170,7 +172,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 20,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 20,000.00 USD.
    * 
* * string price = 8; @@ -182,7 +184,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -193,7 +195,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 15,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 15,000.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -206,7 +208,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $20,000.00.
+   * used instead of 'price', for example, Starting at $20,000.00.
    * 
* * string formatted_price = 10; @@ -216,7 +218,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $20,000.00.
+   * used instead of 'price', for example, Starting at $20,000.00.
    * 
* * string formatted_price = 10; @@ -228,7 +230,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+   * will be used instead of 'sale price', for example, On sale for $15,000.00.
    * 
* * string formatted_sale_price = 11; @@ -238,7 +240,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $15,000.00.
+   * will be used instead of 'sale price', for example, On sale for $15,000.00.
    * 
* * string formatted_sale_price = 11; @@ -249,8 +251,8 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 12; @@ -259,8 +261,8 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 12; @@ -271,7 +273,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -281,7 +283,7 @@ public interface DynamicCustomAssetOrBuilder extends getContextualKeywordsList(); /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -290,7 +292,7 @@ public interface DynamicCustomAssetOrBuilder extends int getContextualKeywordsCount(); /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -300,7 +302,7 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getContextualKeywords(int index); /** *
-   * Contextual keywords, e.g. Sedans, 4 door sedans.
+   * Contextual keywords, for example, Sedans, 4 door sedans.
    * 
* * repeated string contextual_keywords = 13; @@ -312,7 +314,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -322,7 +324,7 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -334,7 +336,7 @@ public interface DynamicCustomAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; @@ -343,7 +345,7 @@ public interface DynamicCustomAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAsset.java index 1fc75a53d4..c17c69d58b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAsset.java @@ -295,7 +295,7 @@ public java.lang.String getLocationId() { private volatile java.lang.Object programName_; /** *
-   * Required. Program name, e.g. Nursing. Required.
+   * Required. Program name, for example, Nursing. Required.
    * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -316,7 +316,7 @@ public java.lang.String getProgramName() { } /** *
-   * Required. Program name, e.g. Nursing. Required.
+   * Required. Program name, for example, Nursing. Required.
    * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -341,7 +341,7 @@ public java.lang.String getProgramName() { private volatile java.lang.Object subject_; /** *
-   * Subject of study, e.g. Health.
+   * Subject of study, for example, Health.
    * 
* * string subject = 4; @@ -362,7 +362,7 @@ public java.lang.String getSubject() { } /** *
-   * Subject of study, e.g. Health.
+   * Subject of study, for example, Health.
    * 
* * string subject = 4; @@ -387,7 +387,7 @@ public java.lang.String getSubject() { private volatile java.lang.Object programDescription_; /** *
-   * Program description, e.g. Nursing Certification.
+   * Program description, for example, Nursing Certification.
    * 
* * string program_description = 5; @@ -408,7 +408,7 @@ public java.lang.String getProgramDescription() { } /** *
-   * Program description, e.g. Nursing Certification.
+   * Program description, for example, Nursing Certification.
    * 
* * string program_description = 5; @@ -433,7 +433,7 @@ public java.lang.String getProgramDescription() { private volatile java.lang.Object schoolName_; /** *
-   * School name, e.g. Mountain View School of Nursing.
+   * School name, for example, Mountain View School of Nursing.
    * 
* * string school_name = 6; @@ -454,7 +454,7 @@ public java.lang.String getSchoolName() { } /** *
-   * School name, e.g. Mountain View School of Nursing.
+   * School name, for example, Mountain View School of Nursing.
    * 
* * string school_name = 6; @@ -480,9 +480,9 @@ public java.lang.String getSchoolName() { /** *
    * School address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 7; @@ -504,9 +504,9 @@ public java.lang.String getAddress() { /** *
    * School address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 7; @@ -531,7 +531,8 @@ public java.lang.String getAddress() { private com.google.protobuf.LazyStringList contextualKeywords_; /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -543,7 +544,8 @@ public java.lang.String getAddress() { } /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -554,7 +556,8 @@ public int getContextualKeywordsCount() { } /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -566,7 +569,8 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -582,7 +586,7 @@ public java.lang.String getContextualKeywords(int index) { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -604,7 +608,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -681,7 +685,7 @@ public java.lang.String getSimilarProgramIds(int index) { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 11; @@ -702,7 +706,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 11; @@ -744,7 +748,7 @@ public long getIosAppStoreId() { private volatile java.lang.Object thumbnailImageUrl_; /** *
-   * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+   * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
    * thumbnail image will not be uploaded as image asset.
    * 
* @@ -766,7 +770,7 @@ public java.lang.String getThumbnailImageUrl() { } /** *
-   * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+   * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
    * thumbnail image will not be uploaded as image asset.
    * 
* @@ -792,8 +796,8 @@ public java.lang.String getThumbnailImageUrl() { private volatile java.lang.Object imageUrl_; /** *
-   * Image url, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image url, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; @@ -814,8 +818,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image url, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image url, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; @@ -1605,7 +1609,7 @@ public Builder setLocationIdBytes( private java.lang.Object programName_ = ""; /** *
-     * Required. Program name, e.g. Nursing. Required.
+     * Required. Program name, for example, Nursing. Required.
      * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1625,7 +1629,7 @@ public java.lang.String getProgramName() { } /** *
-     * Required. Program name, e.g. Nursing. Required.
+     * Required. Program name, for example, Nursing. Required.
      * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1646,7 +1650,7 @@ public java.lang.String getProgramName() { } /** *
-     * Required. Program name, e.g. Nursing. Required.
+     * Required. Program name, for example, Nursing. Required.
      * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1665,7 +1669,7 @@ public Builder setProgramName( } /** *
-     * Required. Program name, e.g. Nursing. Required.
+     * Required. Program name, for example, Nursing. Required.
      * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1679,7 +1683,7 @@ public Builder clearProgramName() { } /** *
-     * Required. Program name, e.g. Nursing. Required.
+     * Required. Program name, for example, Nursing. Required.
      * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1701,7 +1705,7 @@ public Builder setProgramNameBytes( private java.lang.Object subject_ = ""; /** *
-     * Subject of study, e.g. Health.
+     * Subject of study, for example, Health.
      * 
* * string subject = 4; @@ -1721,7 +1725,7 @@ public java.lang.String getSubject() { } /** *
-     * Subject of study, e.g. Health.
+     * Subject of study, for example, Health.
      * 
* * string subject = 4; @@ -1742,7 +1746,7 @@ public java.lang.String getSubject() { } /** *
-     * Subject of study, e.g. Health.
+     * Subject of study, for example, Health.
      * 
* * string subject = 4; @@ -1761,7 +1765,7 @@ public Builder setSubject( } /** *
-     * Subject of study, e.g. Health.
+     * Subject of study, for example, Health.
      * 
* * string subject = 4; @@ -1775,7 +1779,7 @@ public Builder clearSubject() { } /** *
-     * Subject of study, e.g. Health.
+     * Subject of study, for example, Health.
      * 
* * string subject = 4; @@ -1797,7 +1801,7 @@ public Builder setSubjectBytes( private java.lang.Object programDescription_ = ""; /** *
-     * Program description, e.g. Nursing Certification.
+     * Program description, for example, Nursing Certification.
      * 
* * string program_description = 5; @@ -1817,7 +1821,7 @@ public java.lang.String getProgramDescription() { } /** *
-     * Program description, e.g. Nursing Certification.
+     * Program description, for example, Nursing Certification.
      * 
* * string program_description = 5; @@ -1838,7 +1842,7 @@ public java.lang.String getProgramDescription() { } /** *
-     * Program description, e.g. Nursing Certification.
+     * Program description, for example, Nursing Certification.
      * 
* * string program_description = 5; @@ -1857,7 +1861,7 @@ public Builder setProgramDescription( } /** *
-     * Program description, e.g. Nursing Certification.
+     * Program description, for example, Nursing Certification.
      * 
* * string program_description = 5; @@ -1871,7 +1875,7 @@ public Builder clearProgramDescription() { } /** *
-     * Program description, e.g. Nursing Certification.
+     * Program description, for example, Nursing Certification.
      * 
* * string program_description = 5; @@ -1893,7 +1897,7 @@ public Builder setProgramDescriptionBytes( private java.lang.Object schoolName_ = ""; /** *
-     * School name, e.g. Mountain View School of Nursing.
+     * School name, for example, Mountain View School of Nursing.
      * 
* * string school_name = 6; @@ -1913,7 +1917,7 @@ public java.lang.String getSchoolName() { } /** *
-     * School name, e.g. Mountain View School of Nursing.
+     * School name, for example, Mountain View School of Nursing.
      * 
* * string school_name = 6; @@ -1934,7 +1938,7 @@ public java.lang.String getSchoolName() { } /** *
-     * School name, e.g. Mountain View School of Nursing.
+     * School name, for example, Mountain View School of Nursing.
      * 
* * string school_name = 6; @@ -1953,7 +1957,7 @@ public Builder setSchoolName( } /** *
-     * School name, e.g. Mountain View School of Nursing.
+     * School name, for example, Mountain View School of Nursing.
      * 
* * string school_name = 6; @@ -1967,7 +1971,7 @@ public Builder clearSchoolName() { } /** *
-     * School name, e.g. Mountain View School of Nursing.
+     * School name, for example, Mountain View School of Nursing.
      * 
* * string school_name = 6; @@ -1990,9 +1994,9 @@ public Builder setSchoolNameBytes( /** *
      * School address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 7; @@ -2013,9 +2017,9 @@ public java.lang.String getAddress() { /** *
      * School address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 7; @@ -2037,9 +2041,9 @@ public java.lang.String getAddress() { /** *
      * School address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 7; @@ -2059,9 +2063,9 @@ public Builder setAddress( /** *
      * School address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 7; @@ -2076,9 +2080,9 @@ public Builder clearAddress() { /** *
      * School address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 7; @@ -2106,7 +2110,8 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2118,7 +2123,8 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2129,7 +2135,8 @@ public int getContextualKeywordsCount() { } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2141,7 +2148,8 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2154,7 +2162,8 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2174,7 +2183,8 @@ public Builder setContextualKeywords( } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2193,7 +2203,8 @@ public Builder addContextualKeywords( } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2210,7 +2221,8 @@ public Builder addAllContextualKeywords( } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2224,7 +2236,8 @@ public Builder clearContextualKeywords() { } /** *
-     * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+     * Contextual keywords, for example, Nursing certification, Health, Mountain
+     * View.
      * 
* * repeated string contextual_keywords = 8; @@ -2246,7 +2259,7 @@ public Builder addContextualKeywordsBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2267,7 +2280,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2289,7 +2302,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2309,7 +2322,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2324,7 +2337,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2493,7 +2506,7 @@ public Builder addSimilarProgramIdsBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 11; @@ -2513,7 +2526,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 11; @@ -2534,7 +2547,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 11; @@ -2553,7 +2566,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 11; @@ -2567,7 +2580,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 11; @@ -2638,7 +2651,7 @@ public Builder clearIosAppStoreId() { private java.lang.Object thumbnailImageUrl_ = ""; /** *
-     * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+     * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
      * thumbnail image will not be uploaded as image asset.
      * 
* @@ -2659,7 +2672,7 @@ public java.lang.String getThumbnailImageUrl() { } /** *
-     * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+     * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
      * thumbnail image will not be uploaded as image asset.
      * 
* @@ -2681,7 +2694,7 @@ public java.lang.String getThumbnailImageUrl() { } /** *
-     * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+     * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
      * thumbnail image will not be uploaded as image asset.
      * 
* @@ -2701,7 +2714,7 @@ public Builder setThumbnailImageUrl( } /** *
-     * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+     * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
      * thumbnail image will not be uploaded as image asset.
      * 
* @@ -2716,7 +2729,7 @@ public Builder clearThumbnailImageUrl() { } /** *
-     * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+     * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
      * thumbnail image will not be uploaded as image asset.
      * 
* @@ -2739,8 +2752,8 @@ public Builder setThumbnailImageUrlBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image url, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image url, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -2760,8 +2773,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image url, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image url, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -2782,8 +2795,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image url, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image url, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -2802,8 +2815,8 @@ public Builder setImageUrl( } /** *
-     * Image url, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image url, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -2817,8 +2830,8 @@ public Builder clearImageUrl() { } /** *
-     * Image url, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image url, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAssetOrBuilder.java index 45b7ab03f7..abc198a48c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicEducationAssetOrBuilder.java @@ -53,7 +53,7 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * Required. Program name, e.g. Nursing. Required.
+   * Required. Program name, for example, Nursing. Required.
    * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -62,7 +62,7 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getProgramName(); /** *
-   * Required. Program name, e.g. Nursing. Required.
+   * Required. Program name, for example, Nursing. Required.
    * 
* * string program_name = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -73,7 +73,7 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * Subject of study, e.g. Health.
+   * Subject of study, for example, Health.
    * 
* * string subject = 4; @@ -82,7 +82,7 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getSubject(); /** *
-   * Subject of study, e.g. Health.
+   * Subject of study, for example, Health.
    * 
* * string subject = 4; @@ -93,7 +93,7 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * Program description, e.g. Nursing Certification.
+   * Program description, for example, Nursing Certification.
    * 
* * string program_description = 5; @@ -102,7 +102,7 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getProgramDescription(); /** *
-   * Program description, e.g. Nursing Certification.
+   * Program description, for example, Nursing Certification.
    * 
* * string program_description = 5; @@ -113,7 +113,7 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * School name, e.g. Mountain View School of Nursing.
+   * School name, for example, Mountain View School of Nursing.
    * 
* * string school_name = 6; @@ -122,7 +122,7 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getSchoolName(); /** *
-   * School name, e.g. Mountain View School of Nursing.
+   * School name, for example, Mountain View School of Nursing.
    * 
* * string school_name = 6; @@ -134,9 +134,9 @@ public interface DynamicEducationAssetOrBuilder extends /** *
    * School address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 7; @@ -146,9 +146,9 @@ public interface DynamicEducationAssetOrBuilder extends /** *
    * School address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 7; @@ -159,7 +159,8 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -169,7 +170,8 @@ public interface DynamicEducationAssetOrBuilder extends getContextualKeywordsList(); /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -178,7 +180,8 @@ public interface DynamicEducationAssetOrBuilder extends int getContextualKeywordsCount(); /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -188,7 +191,8 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getContextualKeywords(int index); /** *
-   * Contextual keywords, e.g. Nursing certification, Health, Mountain View.
+   * Contextual keywords, for example, Nursing certification, Health, Mountain
+   * View.
    * 
* * repeated string contextual_keywords = 8; @@ -200,7 +204,7 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -210,7 +214,7 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -263,7 +267,7 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 11; @@ -272,7 +276,7 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 11; @@ -295,7 +299,7 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+   * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
    * thumbnail image will not be uploaded as image asset.
    * 
* @@ -305,7 +309,7 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getThumbnailImageUrl(); /** *
-   * Thumbnail image url, e.g. http://www.example.com/thumbnail.png. The
+   * Thumbnail image url, for example, http://www.example.com/thumbnail.png. The
    * thumbnail image will not be uploaded as image asset.
    * 
* @@ -317,8 +321,8 @@ public interface DynamicEducationAssetOrBuilder extends /** *
-   * Image url, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image url, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; @@ -327,8 +331,8 @@ public interface DynamicEducationAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image url, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image url, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAsset.java index 5f0f0ae157..2722c68838 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAsset.java @@ -296,7 +296,7 @@ public java.lang.String getOriginId() { private volatile java.lang.Object flightDescription_; /** *
-   * Required. Flight description, e.g. Book your ticket. Required.
+   * Required. Flight description, for example, Book your ticket. Required.
    * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -317,7 +317,7 @@ public java.lang.String getFlightDescription() { } /** *
-   * Required. Flight description, e.g. Book your ticket. Required.
+   * Required. Flight description, for example, Book your ticket. Required.
    * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -342,8 +342,8 @@ public java.lang.String getFlightDescription() { private volatile java.lang.Object imageUrl_; /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 4; @@ -364,8 +364,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 4; @@ -390,7 +390,7 @@ public java.lang.String getImageUrl() { private volatile java.lang.Object destinationName_; /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 5; @@ -411,7 +411,7 @@ public java.lang.String getDestinationName() { } /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 5; @@ -436,7 +436,7 @@ public java.lang.String getDestinationName() { private volatile java.lang.Object originName_; /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -457,7 +457,7 @@ public java.lang.String getOriginName() { } /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -483,7 +483,7 @@ public java.lang.String getOriginName() { /** *
    * Flight price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string flight_price = 7; @@ -505,7 +505,7 @@ public java.lang.String getFlightPrice() { /** *
    * Flight price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string flight_price = 7; @@ -531,8 +531,8 @@ public java.lang.String getFlightPrice() { /** *
    * Flight sale price which can be number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'flight_price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'flight_price' field.
    * 
* * string flight_sale_price = 8; @@ -554,8 +554,8 @@ public java.lang.String getFlightSalePrice() { /** *
    * Flight sale price which can be number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'flight_price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'flight_price' field.
    * 
* * string flight_sale_price = 8; @@ -581,7 +581,7 @@ public java.lang.String getFlightSalePrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -603,7 +603,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -629,7 +629,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -651,7 +651,7 @@ public java.lang.String getFormattedSalePrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -676,7 +676,7 @@ public java.lang.String getFormattedSalePrice() { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -698,7 +698,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -724,7 +724,7 @@ public java.lang.String getAndroidAppLink() { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 12; @@ -745,7 +745,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 12; @@ -787,7 +787,7 @@ public long getIosAppStoreId() { private com.google.protobuf.LazyStringList similarDestinationIds_; /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -799,7 +799,7 @@ public long getIosAppStoreId() { } /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -810,7 +810,7 @@ public int getSimilarDestinationIdsCount() { } /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -822,7 +822,7 @@ public java.lang.String getSimilarDestinationIds(int index) { } /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -841,8 +841,8 @@ public java.lang.String getSimilarDestinationIds(int index) { * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; @@ -866,8 +866,8 @@ public java.lang.String getCustomMapping() { * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; @@ -1657,7 +1657,7 @@ public Builder setOriginIdBytes( private java.lang.Object flightDescription_ = ""; /** *
-     * Required. Flight description, e.g. Book your ticket. Required.
+     * Required. Flight description, for example, Book your ticket. Required.
      * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1677,7 +1677,7 @@ public java.lang.String getFlightDescription() { } /** *
-     * Required. Flight description, e.g. Book your ticket. Required.
+     * Required. Flight description, for example, Book your ticket. Required.
      * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1698,7 +1698,7 @@ public java.lang.String getFlightDescription() { } /** *
-     * Required. Flight description, e.g. Book your ticket. Required.
+     * Required. Flight description, for example, Book your ticket. Required.
      * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1717,7 +1717,7 @@ public Builder setFlightDescription( } /** *
-     * Required. Flight description, e.g. Book your ticket. Required.
+     * Required. Flight description, for example, Book your ticket. Required.
      * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1731,7 +1731,7 @@ public Builder clearFlightDescription() { } /** *
-     * Required. Flight description, e.g. Book your ticket. Required.
+     * Required. Flight description, for example, Book your ticket. Required.
      * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1753,8 +1753,8 @@ public Builder setFlightDescriptionBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 4; @@ -1774,8 +1774,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 4; @@ -1796,8 +1796,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 4; @@ -1816,8 +1816,8 @@ public Builder setImageUrl( } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 4; @@ -1831,8 +1831,8 @@ public Builder clearImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 4; @@ -1854,7 +1854,7 @@ public Builder setImageUrlBytes( private java.lang.Object destinationName_ = ""; /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 5; @@ -1874,7 +1874,7 @@ public java.lang.String getDestinationName() { } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 5; @@ -1895,7 +1895,7 @@ public java.lang.String getDestinationName() { } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 5; @@ -1914,7 +1914,7 @@ public Builder setDestinationName( } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 5; @@ -1928,7 +1928,7 @@ public Builder clearDestinationName() { } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 5; @@ -1950,7 +1950,7 @@ public Builder setDestinationNameBytes( private java.lang.Object originName_ = ""; /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -1970,7 +1970,7 @@ public java.lang.String getOriginName() { } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -1991,7 +1991,7 @@ public java.lang.String getOriginName() { } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2010,7 +2010,7 @@ public Builder setOriginName( } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2024,7 +2024,7 @@ public Builder clearOriginName() { } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2047,7 +2047,7 @@ public Builder setOriginNameBytes( /** *
      * Flight price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string flight_price = 7; @@ -2068,7 +2068,7 @@ public java.lang.String getFlightPrice() { /** *
      * Flight price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string flight_price = 7; @@ -2090,7 +2090,7 @@ public java.lang.String getFlightPrice() { /** *
      * Flight price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string flight_price = 7; @@ -2110,7 +2110,7 @@ public Builder setFlightPrice( /** *
      * Flight price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string flight_price = 7; @@ -2125,7 +2125,7 @@ public Builder clearFlightPrice() { /** *
      * Flight price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string flight_price = 7; @@ -2148,8 +2148,8 @@ public Builder setFlightPriceBytes( /** *
      * Flight sale price which can be number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'flight_price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'flight_price' field.
      * 
* * string flight_sale_price = 8; @@ -2170,8 +2170,8 @@ public java.lang.String getFlightSalePrice() { /** *
      * Flight sale price which can be number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'flight_price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'flight_price' field.
      * 
* * string flight_sale_price = 8; @@ -2193,8 +2193,8 @@ public java.lang.String getFlightSalePrice() { /** *
      * Flight sale price which can be number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'flight_price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'flight_price' field.
      * 
* * string flight_sale_price = 8; @@ -2214,8 +2214,8 @@ public Builder setFlightSalePrice( /** *
      * Flight sale price which can be number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'flight_price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'flight_price' field.
      * 
* * string flight_sale_price = 8; @@ -2230,8 +2230,8 @@ public Builder clearFlightSalePrice() { /** *
      * Flight sale price which can be number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'flight_price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'flight_price' field.
      * 
* * string flight_sale_price = 8; @@ -2254,7 +2254,7 @@ public Builder setFlightSalePriceBytes( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2275,7 +2275,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2297,7 +2297,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2317,7 +2317,7 @@ public Builder setFormattedPrice( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2332,7 +2332,7 @@ public Builder clearFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2355,7 +2355,7 @@ public Builder setFormattedPriceBytes( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2376,7 +2376,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2398,7 +2398,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2418,7 +2418,7 @@ public Builder setFormattedSalePrice( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2433,7 +2433,7 @@ public Builder clearFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2455,7 +2455,7 @@ public Builder setFormattedSalePriceBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2476,7 +2476,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2498,7 +2498,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2518,7 +2518,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2533,7 +2533,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2556,7 +2556,7 @@ public Builder setAndroidAppLinkBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 12; @@ -2576,7 +2576,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 12; @@ -2597,7 +2597,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 12; @@ -2616,7 +2616,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 12; @@ -2630,7 +2630,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 12; @@ -2707,7 +2707,7 @@ private void ensureSimilarDestinationIdsIsMutable() { } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2719,7 +2719,7 @@ private void ensureSimilarDestinationIdsIsMutable() { } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2730,7 +2730,7 @@ public int getSimilarDestinationIdsCount() { } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2742,7 +2742,7 @@ public java.lang.String getSimilarDestinationIds(int index) { } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2755,7 +2755,7 @@ public java.lang.String getSimilarDestinationIds(int index) { } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2775,7 +2775,7 @@ public Builder setSimilarDestinationIds( } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2794,7 +2794,7 @@ public Builder addSimilarDestinationIds( } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2811,7 +2811,7 @@ public Builder addAllSimilarDestinationIds( } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2825,7 +2825,7 @@ public Builder clearSimilarDestinationIds() { } /** *
-     * Similar destination IDs, e.g. PAR,LON.
+     * Similar destination IDs, for example, PAR,LON.
      * 
* * repeated string similar_destination_ids = 14; @@ -2850,8 +2850,8 @@ public Builder addSimilarDestinationIdsBytes( * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; @@ -2874,8 +2874,8 @@ public java.lang.String getCustomMapping() { * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; @@ -2899,8 +2899,8 @@ public java.lang.String getCustomMapping() { * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; @@ -2922,8 +2922,8 @@ public Builder setCustomMapping( * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; @@ -2940,8 +2940,8 @@ public Builder clearCustomMapping() { * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAssetOrBuilder.java index 250d637451..bd90ba3749 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicFlightsAssetOrBuilder.java @@ -53,7 +53,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
-   * Required. Flight description, e.g. Book your ticket. Required.
+   * Required. Flight description, for example, Book your ticket. Required.
    * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -62,7 +62,7 @@ public interface DynamicFlightsAssetOrBuilder extends java.lang.String getFlightDescription(); /** *
-   * Required. Flight description, e.g. Book your ticket. Required.
+   * Required. Flight description, for example, Book your ticket. Required.
    * 
* * string flight_description = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -73,8 +73,8 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 4; @@ -83,8 +83,8 @@ public interface DynamicFlightsAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 4; @@ -95,7 +95,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 5; @@ -104,7 +104,7 @@ public interface DynamicFlightsAssetOrBuilder extends java.lang.String getDestinationName(); /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 5; @@ -115,7 +115,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -124,7 +124,7 @@ public interface DynamicFlightsAssetOrBuilder extends java.lang.String getOriginName(); /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -136,7 +136,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Flight price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string flight_price = 7; @@ -146,7 +146,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Flight price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string flight_price = 7; @@ -158,8 +158,8 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Flight sale price which can be number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'flight_price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'flight_price' field.
    * 
* * string flight_sale_price = 8; @@ -169,8 +169,8 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Flight sale price which can be number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'flight_price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'flight_price' field.
    * 
* * string flight_sale_price = 8; @@ -182,7 +182,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -192,7 +192,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -204,7 +204,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -214,7 +214,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -225,7 +225,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -235,7 +235,7 @@ public interface DynamicFlightsAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -247,7 +247,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 12; @@ -256,7 +256,7 @@ public interface DynamicFlightsAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 12; @@ -279,7 +279,7 @@ public interface DynamicFlightsAssetOrBuilder extends /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -289,7 +289,7 @@ public interface DynamicFlightsAssetOrBuilder extends getSimilarDestinationIdsList(); /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -298,7 +298,7 @@ public interface DynamicFlightsAssetOrBuilder extends int getSimilarDestinationIdsCount(); /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -308,7 +308,7 @@ public interface DynamicFlightsAssetOrBuilder extends java.lang.String getSimilarDestinationIds(int index); /** *
-   * Similar destination IDs, e.g. PAR,LON.
+   * Similar destination IDs, for example, PAR,LON.
    * 
* * repeated string similar_destination_ids = 14; @@ -323,8 +323,8 @@ public interface DynamicFlightsAssetOrBuilder extends * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; @@ -336,8 +336,8 @@ public interface DynamicFlightsAssetOrBuilder extends * A custom field which can be multiple key to values mapping separated by * delimiters (",", "|" and ":"), in the forms of * "<KEY_1>: <VALUE_1>, <VALUE_2>, ... ,<VALUE_N> | <KEY_2>: <VALUE_1>, ... - * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" e.g. wifi: most | - * aircraft: 320, 77W | flights: 42 | legroom: 32". + * ,<VALUE_N> | ... | <KEY_N>: <VALUE_1>, ... ,<VALUE_N>" for example, wifi: + * most | aircraft: 320, 77W | flights: 42 | legroom: 32". * * * string custom_mapping = 15; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAsset.java index 8a2dc48440..d089e89d31 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAsset.java @@ -266,7 +266,7 @@ public java.lang.String getPropertyId() { private volatile java.lang.Object propertyName_; /** *
-   * Required. Property name, e.g. Mountain View Hotel. Required.
+   * Required. Property name, for example, Mountain View Hotel. Required.
    * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -287,7 +287,7 @@ public java.lang.String getPropertyName() { } /** *
-   * Required. Property name, e.g. Mountain View Hotel. Required.
+   * Required. Property name, for example, Mountain View Hotel. Required.
    * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -312,8 +312,8 @@ public java.lang.String getPropertyName() { private volatile java.lang.Object imageUrl_; /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 3; @@ -334,8 +334,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 3; @@ -360,7 +360,7 @@ public java.lang.String getImageUrl() { private volatile java.lang.Object destinationName_; /** *
-   * Destination name, e.g. Downtown Mountain View.
+   * Destination name, for example, Downtown Mountain View.
    * 
* * string destination_name = 4; @@ -381,7 +381,7 @@ public java.lang.String getDestinationName() { } /** *
-   * Destination name, e.g. Downtown Mountain View.
+   * Destination name, for example, Downtown Mountain View.
    * 
* * string destination_name = 4; @@ -406,7 +406,7 @@ public java.lang.String getDestinationName() { private volatile java.lang.Object description_; /** *
-   * Description, e.g. Close to SJC Airport.
+   * Description, for example, Close to SJC Airport.
    * 
* * string description = 5; @@ -427,7 +427,7 @@ public java.lang.String getDescription() { } /** *
-   * Description, e.g. Close to SJC Airport.
+   * Description, for example, Close to SJC Airport.
    * 
* * string description = 5; @@ -453,7 +453,7 @@ public java.lang.String getDescription() { /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 6; @@ -475,7 +475,7 @@ public java.lang.String getPrice() { /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 6; @@ -500,7 +500,7 @@ public java.lang.String getPrice() { private volatile java.lang.Object salePrice_; /** *
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -522,7 +522,7 @@ public java.lang.String getSalePrice() { } /** *
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -563,7 +563,7 @@ public long getStarRating() { private volatile java.lang.Object category_; /** *
-   * Category, e.g. Hotel suite.
+   * Category, for example, Hotel suite.
    * 
* * string category = 9; @@ -584,7 +584,7 @@ public java.lang.String getCategory() { } /** *
-   * Category, e.g. Hotel suite.
+   * Category, for example, Hotel suite.
    * 
* * string category = 9; @@ -609,7 +609,7 @@ public java.lang.String getCategory() { private com.google.protobuf.LazyStringList contextualKeywords_; /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -621,7 +621,7 @@ public java.lang.String getCategory() { } /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -632,7 +632,7 @@ public int getContextualKeywordsCount() { } /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -644,7 +644,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -661,9 +661,9 @@ public java.lang.String getContextualKeywords(int index) { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 11; @@ -685,9 +685,9 @@ public java.lang.String getAddress() { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 11; @@ -712,7 +712,7 @@ public java.lang.String getAddress() { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -734,7 +734,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -760,7 +760,7 @@ public java.lang.String getAndroidAppLink() { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -781,7 +781,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -824,7 +824,7 @@ public long getIosAppStoreId() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 15; @@ -846,7 +846,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 15; @@ -872,7 +872,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 16; @@ -894,7 +894,7 @@ public java.lang.String getFormattedSalePrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 16; @@ -1686,7 +1686,7 @@ public Builder setPropertyIdBytes( private java.lang.Object propertyName_ = ""; /** *
-     * Required. Property name, e.g. Mountain View Hotel. Required.
+     * Required. Property name, for example, Mountain View Hotel. Required.
      * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1706,7 +1706,7 @@ public java.lang.String getPropertyName() { } /** *
-     * Required. Property name, e.g. Mountain View Hotel. Required.
+     * Required. Property name, for example, Mountain View Hotel. Required.
      * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1727,7 +1727,7 @@ public java.lang.String getPropertyName() { } /** *
-     * Required. Property name, e.g. Mountain View Hotel. Required.
+     * Required. Property name, for example, Mountain View Hotel. Required.
      * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1746,7 +1746,7 @@ public Builder setPropertyName( } /** *
-     * Required. Property name, e.g. Mountain View Hotel. Required.
+     * Required. Property name, for example, Mountain View Hotel. Required.
      * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1760,7 +1760,7 @@ public Builder clearPropertyName() { } /** *
-     * Required. Property name, e.g. Mountain View Hotel. Required.
+     * Required. Property name, for example, Mountain View Hotel. Required.
      * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1782,8 +1782,8 @@ public Builder setPropertyNameBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 3; @@ -1803,8 +1803,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 3; @@ -1825,8 +1825,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 3; @@ -1845,8 +1845,8 @@ public Builder setImageUrl( } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 3; @@ -1860,8 +1860,8 @@ public Builder clearImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 3; @@ -1883,7 +1883,7 @@ public Builder setImageUrlBytes( private java.lang.Object destinationName_ = ""; /** *
-     * Destination name, e.g. Downtown Mountain View.
+     * Destination name, for example, Downtown Mountain View.
      * 
* * string destination_name = 4; @@ -1903,7 +1903,7 @@ public java.lang.String getDestinationName() { } /** *
-     * Destination name, e.g. Downtown Mountain View.
+     * Destination name, for example, Downtown Mountain View.
      * 
* * string destination_name = 4; @@ -1924,7 +1924,7 @@ public java.lang.String getDestinationName() { } /** *
-     * Destination name, e.g. Downtown Mountain View.
+     * Destination name, for example, Downtown Mountain View.
      * 
* * string destination_name = 4; @@ -1943,7 +1943,7 @@ public Builder setDestinationName( } /** *
-     * Destination name, e.g. Downtown Mountain View.
+     * Destination name, for example, Downtown Mountain View.
      * 
* * string destination_name = 4; @@ -1957,7 +1957,7 @@ public Builder clearDestinationName() { } /** *
-     * Destination name, e.g. Downtown Mountain View.
+     * Destination name, for example, Downtown Mountain View.
      * 
* * string destination_name = 4; @@ -1979,7 +1979,7 @@ public Builder setDestinationNameBytes( private java.lang.Object description_ = ""; /** *
-     * Description, e.g. Close to SJC Airport.
+     * Description, for example, Close to SJC Airport.
      * 
* * string description = 5; @@ -1999,7 +1999,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. Close to SJC Airport.
+     * Description, for example, Close to SJC Airport.
      * 
* * string description = 5; @@ -2020,7 +2020,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. Close to SJC Airport.
+     * Description, for example, Close to SJC Airport.
      * 
* * string description = 5; @@ -2039,7 +2039,7 @@ public Builder setDescription( } /** *
-     * Description, e.g. Close to SJC Airport.
+     * Description, for example, Close to SJC Airport.
      * 
* * string description = 5; @@ -2053,7 +2053,7 @@ public Builder clearDescription() { } /** *
-     * Description, e.g. Close to SJC Airport.
+     * Description, for example, Close to SJC Airport.
      * 
* * string description = 5; @@ -2076,7 +2076,7 @@ public Builder setDescriptionBytes( /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 6; @@ -2097,7 +2097,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 6; @@ -2119,7 +2119,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 6; @@ -2139,7 +2139,7 @@ public Builder setPrice( /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 6; @@ -2154,7 +2154,7 @@ public Builder clearPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 6; @@ -2176,7 +2176,7 @@ public Builder setPriceBytes( private java.lang.Object salePrice_ = ""; /** *
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2197,7 +2197,7 @@ public java.lang.String getSalePrice() { } /** *
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2219,7 +2219,7 @@ public java.lang.String getSalePrice() { } /** *
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2239,7 +2239,7 @@ public Builder setSalePrice( } /** *
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2254,7 +2254,7 @@ public Builder clearSalePrice() { } /** *
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2320,7 +2320,7 @@ public Builder clearStarRating() { private java.lang.Object category_ = ""; /** *
-     * Category, e.g. Hotel suite.
+     * Category, for example, Hotel suite.
      * 
* * string category = 9; @@ -2340,7 +2340,7 @@ public java.lang.String getCategory() { } /** *
-     * Category, e.g. Hotel suite.
+     * Category, for example, Hotel suite.
      * 
* * string category = 9; @@ -2361,7 +2361,7 @@ public java.lang.String getCategory() { } /** *
-     * Category, e.g. Hotel suite.
+     * Category, for example, Hotel suite.
      * 
* * string category = 9; @@ -2380,7 +2380,7 @@ public Builder setCategory( } /** *
-     * Category, e.g. Hotel suite.
+     * Category, for example, Hotel suite.
      * 
* * string category = 9; @@ -2394,7 +2394,7 @@ public Builder clearCategory() { } /** *
-     * Category, e.g. Hotel suite.
+     * Category, for example, Hotel suite.
      * 
* * string category = 9; @@ -2422,7 +2422,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2434,7 +2434,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2445,7 +2445,7 @@ public int getContextualKeywordsCount() { } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2457,7 +2457,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2470,7 +2470,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2490,7 +2490,7 @@ public Builder setContextualKeywords( } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2509,7 +2509,7 @@ public Builder addContextualKeywords( } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2526,7 +2526,7 @@ public Builder addAllContextualKeywords( } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2540,7 +2540,7 @@ public Builder clearContextualKeywords() { } /** *
-     * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+     * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
      * 
* * repeated string contextual_keywords = 10; @@ -2563,9 +2563,9 @@ public Builder addContextualKeywordsBytes( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 11; @@ -2586,9 +2586,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 11; @@ -2610,9 +2610,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 11; @@ -2632,9 +2632,9 @@ public Builder setAddress( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 11; @@ -2649,9 +2649,9 @@ public Builder clearAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 11; @@ -2673,7 +2673,7 @@ public Builder setAddressBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2694,7 +2694,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2716,7 +2716,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2736,7 +2736,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2751,7 +2751,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2774,7 +2774,7 @@ public Builder setAndroidAppLinkBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2794,7 +2794,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2815,7 +2815,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2834,7 +2834,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2848,7 +2848,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2920,7 +2920,7 @@ public Builder clearIosAppStoreId() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 15; @@ -2941,7 +2941,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 15; @@ -2963,7 +2963,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 15; @@ -2983,7 +2983,7 @@ public Builder setFormattedPrice( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 15; @@ -2998,7 +2998,7 @@ public Builder clearFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 15; @@ -3021,7 +3021,7 @@ public Builder setFormattedPriceBytes( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 16; @@ -3042,7 +3042,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 16; @@ -3064,7 +3064,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 16; @@ -3084,7 +3084,7 @@ public Builder setFormattedSalePrice( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 16; @@ -3099,7 +3099,7 @@ public Builder clearFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 16; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAssetOrBuilder.java index 626a429523..c31f1f610c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicHotelsAndRentalsAssetOrBuilder.java @@ -31,7 +31,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * Required. Property name, e.g. Mountain View Hotel. Required.
+   * Required. Property name, for example, Mountain View Hotel. Required.
    * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -40,7 +40,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getPropertyName(); /** *
-   * Required. Property name, e.g. Mountain View Hotel. Required.
+   * Required. Property name, for example, Mountain View Hotel. Required.
    * 
* * string property_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -51,8 +51,8 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 3; @@ -61,8 +61,8 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 3; @@ -73,7 +73,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * Destination name, e.g. Downtown Mountain View.
+   * Destination name, for example, Downtown Mountain View.
    * 
* * string destination_name = 4; @@ -82,7 +82,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getDestinationName(); /** *
-   * Destination name, e.g. Downtown Mountain View.
+   * Destination name, for example, Downtown Mountain View.
    * 
* * string destination_name = 4; @@ -93,7 +93,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * Description, e.g. Close to SJC Airport.
+   * Description, for example, Close to SJC Airport.
    * 
* * string description = 5; @@ -102,7 +102,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getDescription(); /** *
-   * Description, e.g. Close to SJC Airport.
+   * Description, for example, Close to SJC Airport.
    * 
* * string description = 5; @@ -114,7 +114,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 6; @@ -124,7 +124,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 6; @@ -135,7 +135,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -145,7 +145,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getSalePrice(); /** *
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -167,7 +167,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * Category, e.g. Hotel suite.
+   * Category, for example, Hotel suite.
    * 
* * string category = 9; @@ -176,7 +176,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getCategory(); /** *
-   * Category, e.g. Hotel suite.
+   * Category, for example, Hotel suite.
    * 
* * string category = 9; @@ -187,7 +187,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -197,7 +197,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends getContextualKeywordsList(); /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -206,7 +206,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends int getContextualKeywordsCount(); /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -216,7 +216,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getContextualKeywords(int index); /** *
-   * Contextual keywords, e.g. Mountain View "Hotels", South Bay hotels.
+   * Contextual keywords, for example, Mountain View "Hotels", South Bay hotels.
    * 
* * repeated string contextual_keywords = 10; @@ -229,9 +229,9 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 11; @@ -241,9 +241,9 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 11; @@ -254,7 +254,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -264,7 +264,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -276,7 +276,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -285,7 +285,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -309,7 +309,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 15; @@ -319,7 +319,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 15; @@ -331,7 +331,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 16; @@ -341,7 +341,7 @@ public interface DynamicHotelsAndRentalsAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 16; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAsset.java index 764897afb6..46157b8328 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAsset.java @@ -295,7 +295,7 @@ public java.lang.String getLocationId() { private volatile java.lang.Object jobTitle_; /** *
-   * Required. Job title, e.g. Software engineer. Required.
+   * Required. Job title, for example, Software engineer. Required.
    * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -316,7 +316,7 @@ public java.lang.String getJobTitle() { } /** *
-   * Required. Job title, e.g. Software engineer. Required.
+   * Required. Job title, for example, Software engineer. Required.
    * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -341,7 +341,7 @@ public java.lang.String getJobTitle() { private volatile java.lang.Object jobSubtitle_; /** *
-   * Job subtitle, e.g. Level II.
+   * Job subtitle, for example, Level II.
    * 
* * string job_subtitle = 4; @@ -362,7 +362,7 @@ public java.lang.String getJobSubtitle() { } /** *
-   * Job subtitle, e.g. Level II.
+   * Job subtitle, for example, Level II.
    * 
* * string job_subtitle = 4; @@ -387,7 +387,7 @@ public java.lang.String getJobSubtitle() { private volatile java.lang.Object description_; /** *
-   * Description, e.g. Apply your technical skills.
+   * Description, for example, Apply your technical skills.
    * 
* * string description = 5; @@ -408,7 +408,7 @@ public java.lang.String getDescription() { } /** *
-   * Description, e.g. Apply your technical skills.
+   * Description, for example, Apply your technical skills.
    * 
* * string description = 5; @@ -433,8 +433,8 @@ public java.lang.String getDescription() { private volatile java.lang.Object imageUrl_; /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 6; @@ -455,8 +455,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 6; @@ -481,7 +481,7 @@ public java.lang.String getImageUrl() { private volatile java.lang.Object jobCategory_; /** *
-   * Job category, e.g. Technical.
+   * Job category, for example, Technical.
    * 
* * string job_category = 7; @@ -502,7 +502,7 @@ public java.lang.String getJobCategory() { } /** *
-   * Job category, e.g. Technical.
+   * Job category, for example, Technical.
    * 
* * string job_category = 7; @@ -527,7 +527,7 @@ public java.lang.String getJobCategory() { private com.google.protobuf.LazyStringList contextualKeywords_; /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -539,7 +539,7 @@ public java.lang.String getJobCategory() { } /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -550,7 +550,7 @@ public int getContextualKeywordsCount() { } /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -562,7 +562,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -579,9 +579,9 @@ public java.lang.String getContextualKeywords(int index) { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 9; @@ -603,9 +603,9 @@ public java.lang.String getAddress() { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 9; @@ -630,7 +630,7 @@ public java.lang.String getAddress() { private volatile java.lang.Object salary_; /** *
-   * Salary, e.g. $100,000.
+   * Salary, for example, $100,000.
    * 
* * string salary = 10; @@ -651,7 +651,7 @@ public java.lang.String getSalary() { } /** *
-   * Salary, e.g. $100,000.
+   * Salary, for example, $100,000.
    * 
* * string salary = 10; @@ -676,7 +676,7 @@ public java.lang.String getSalary() { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -698,7 +698,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -724,7 +724,7 @@ public java.lang.String getAndroidAppLink() { private com.google.protobuf.LazyStringList similarJobIds_; /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -736,7 +736,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -747,7 +747,7 @@ public int getSimilarJobIdsCount() { } /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -759,7 +759,7 @@ public java.lang.String getSimilarJobIds(int index) { } /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -775,7 +775,7 @@ public java.lang.String getSimilarJobIds(int index) { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -796,7 +796,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -1603,7 +1603,7 @@ public Builder setLocationIdBytes( private java.lang.Object jobTitle_ = ""; /** *
-     * Required. Job title, e.g. Software engineer. Required.
+     * Required. Job title, for example, Software engineer. Required.
      * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1623,7 +1623,7 @@ public java.lang.String getJobTitle() { } /** *
-     * Required. Job title, e.g. Software engineer. Required.
+     * Required. Job title, for example, Software engineer. Required.
      * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1644,7 +1644,7 @@ public java.lang.String getJobTitle() { } /** *
-     * Required. Job title, e.g. Software engineer. Required.
+     * Required. Job title, for example, Software engineer. Required.
      * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1663,7 +1663,7 @@ public Builder setJobTitle( } /** *
-     * Required. Job title, e.g. Software engineer. Required.
+     * Required. Job title, for example, Software engineer. Required.
      * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1677,7 +1677,7 @@ public Builder clearJobTitle() { } /** *
-     * Required. Job title, e.g. Software engineer. Required.
+     * Required. Job title, for example, Software engineer. Required.
      * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1699,7 +1699,7 @@ public Builder setJobTitleBytes( private java.lang.Object jobSubtitle_ = ""; /** *
-     * Job subtitle, e.g. Level II.
+     * Job subtitle, for example, Level II.
      * 
* * string job_subtitle = 4; @@ -1719,7 +1719,7 @@ public java.lang.String getJobSubtitle() { } /** *
-     * Job subtitle, e.g. Level II.
+     * Job subtitle, for example, Level II.
      * 
* * string job_subtitle = 4; @@ -1740,7 +1740,7 @@ public java.lang.String getJobSubtitle() { } /** *
-     * Job subtitle, e.g. Level II.
+     * Job subtitle, for example, Level II.
      * 
* * string job_subtitle = 4; @@ -1759,7 +1759,7 @@ public Builder setJobSubtitle( } /** *
-     * Job subtitle, e.g. Level II.
+     * Job subtitle, for example, Level II.
      * 
* * string job_subtitle = 4; @@ -1773,7 +1773,7 @@ public Builder clearJobSubtitle() { } /** *
-     * Job subtitle, e.g. Level II.
+     * Job subtitle, for example, Level II.
      * 
* * string job_subtitle = 4; @@ -1795,7 +1795,7 @@ public Builder setJobSubtitleBytes( private java.lang.Object description_ = ""; /** *
-     * Description, e.g. Apply your technical skills.
+     * Description, for example, Apply your technical skills.
      * 
* * string description = 5; @@ -1815,7 +1815,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. Apply your technical skills.
+     * Description, for example, Apply your technical skills.
      * 
* * string description = 5; @@ -1836,7 +1836,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. Apply your technical skills.
+     * Description, for example, Apply your technical skills.
      * 
* * string description = 5; @@ -1855,7 +1855,7 @@ public Builder setDescription( } /** *
-     * Description, e.g. Apply your technical skills.
+     * Description, for example, Apply your technical skills.
      * 
* * string description = 5; @@ -1869,7 +1869,7 @@ public Builder clearDescription() { } /** *
-     * Description, e.g. Apply your technical skills.
+     * Description, for example, Apply your technical skills.
      * 
* * string description = 5; @@ -1891,8 +1891,8 @@ public Builder setDescriptionBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 6; @@ -1912,8 +1912,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 6; @@ -1934,8 +1934,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 6; @@ -1954,8 +1954,8 @@ public Builder setImageUrl( } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 6; @@ -1969,8 +1969,8 @@ public Builder clearImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 6; @@ -1992,7 +1992,7 @@ public Builder setImageUrlBytes( private java.lang.Object jobCategory_ = ""; /** *
-     * Job category, e.g. Technical.
+     * Job category, for example, Technical.
      * 
* * string job_category = 7; @@ -2012,7 +2012,7 @@ public java.lang.String getJobCategory() { } /** *
-     * Job category, e.g. Technical.
+     * Job category, for example, Technical.
      * 
* * string job_category = 7; @@ -2033,7 +2033,7 @@ public java.lang.String getJobCategory() { } /** *
-     * Job category, e.g. Technical.
+     * Job category, for example, Technical.
      * 
* * string job_category = 7; @@ -2052,7 +2052,7 @@ public Builder setJobCategory( } /** *
-     * Job category, e.g. Technical.
+     * Job category, for example, Technical.
      * 
* * string job_category = 7; @@ -2066,7 +2066,7 @@ public Builder clearJobCategory() { } /** *
-     * Job category, e.g. Technical.
+     * Job category, for example, Technical.
      * 
* * string job_category = 7; @@ -2094,7 +2094,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2106,7 +2106,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2117,7 +2117,7 @@ public int getContextualKeywordsCount() { } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2129,7 +2129,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2142,7 +2142,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2162,7 +2162,7 @@ public Builder setContextualKeywords( } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2181,7 +2181,7 @@ public Builder addContextualKeywords( } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2198,7 +2198,7 @@ public Builder addAllContextualKeywords( } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2212,7 +2212,7 @@ public Builder clearContextualKeywords() { } /** *
-     * Contextual keywords, e.g. Software engineering job.
+     * Contextual keywords, for example, Software engineering job.
      * 
* * repeated string contextual_keywords = 8; @@ -2235,9 +2235,9 @@ public Builder addContextualKeywordsBytes( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 9; @@ -2258,9 +2258,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 9; @@ -2282,9 +2282,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 9; @@ -2304,9 +2304,9 @@ public Builder setAddress( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 9; @@ -2321,9 +2321,9 @@ public Builder clearAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 9; @@ -2345,7 +2345,7 @@ public Builder setAddressBytes( private java.lang.Object salary_ = ""; /** *
-     * Salary, e.g. $100,000.
+     * Salary, for example, $100,000.
      * 
* * string salary = 10; @@ -2365,7 +2365,7 @@ public java.lang.String getSalary() { } /** *
-     * Salary, e.g. $100,000.
+     * Salary, for example, $100,000.
      * 
* * string salary = 10; @@ -2386,7 +2386,7 @@ public java.lang.String getSalary() { } /** *
-     * Salary, e.g. $100,000.
+     * Salary, for example, $100,000.
      * 
* * string salary = 10; @@ -2405,7 +2405,7 @@ public Builder setSalary( } /** *
-     * Salary, e.g. $100,000.
+     * Salary, for example, $100,000.
      * 
* * string salary = 10; @@ -2419,7 +2419,7 @@ public Builder clearSalary() { } /** *
-     * Salary, e.g. $100,000.
+     * Salary, for example, $100,000.
      * 
* * string salary = 10; @@ -2441,7 +2441,7 @@ public Builder setSalaryBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2462,7 +2462,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2484,7 +2484,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2504,7 +2504,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2519,7 +2519,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2548,7 +2548,7 @@ private void ensureSimilarJobIdsIsMutable() { } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2560,7 +2560,7 @@ private void ensureSimilarJobIdsIsMutable() { } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2571,7 +2571,7 @@ public int getSimilarJobIdsCount() { } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2583,7 +2583,7 @@ public java.lang.String getSimilarJobIds(int index) { } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2596,7 +2596,7 @@ public java.lang.String getSimilarJobIds(int index) { } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2616,7 +2616,7 @@ public Builder setSimilarJobIds( } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2635,7 +2635,7 @@ public Builder addSimilarJobIds( } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2652,7 +2652,7 @@ public Builder addAllSimilarJobIds( } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2666,7 +2666,7 @@ public Builder clearSimilarJobIds() { } /** *
-     * Similar job IDs, e.g. 1275.
+     * Similar job IDs, for example, 1275.
      * 
* * repeated string similar_job_ids = 12; @@ -2688,7 +2688,7 @@ public Builder addSimilarJobIdsBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2708,7 +2708,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2729,7 +2729,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2748,7 +2748,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2762,7 +2762,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAssetOrBuilder.java index 4e1981b904..de8722d526 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicJobsAssetOrBuilder.java @@ -53,7 +53,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Required. Job title, e.g. Software engineer. Required.
+   * Required. Job title, for example, Software engineer. Required.
    * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -62,7 +62,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getJobTitle(); /** *
-   * Required. Job title, e.g. Software engineer. Required.
+   * Required. Job title, for example, Software engineer. Required.
    * 
* * string job_title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -73,7 +73,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Job subtitle, e.g. Level II.
+   * Job subtitle, for example, Level II.
    * 
* * string job_subtitle = 4; @@ -82,7 +82,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getJobSubtitle(); /** *
-   * Job subtitle, e.g. Level II.
+   * Job subtitle, for example, Level II.
    * 
* * string job_subtitle = 4; @@ -93,7 +93,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Description, e.g. Apply your technical skills.
+   * Description, for example, Apply your technical skills.
    * 
* * string description = 5; @@ -102,7 +102,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getDescription(); /** *
-   * Description, e.g. Apply your technical skills.
+   * Description, for example, Apply your technical skills.
    * 
* * string description = 5; @@ -113,8 +113,8 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 6; @@ -123,8 +123,8 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 6; @@ -135,7 +135,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Job category, e.g. Technical.
+   * Job category, for example, Technical.
    * 
* * string job_category = 7; @@ -144,7 +144,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getJobCategory(); /** *
-   * Job category, e.g. Technical.
+   * Job category, for example, Technical.
    * 
* * string job_category = 7; @@ -155,7 +155,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -165,7 +165,7 @@ public interface DynamicJobsAssetOrBuilder extends getContextualKeywordsList(); /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -174,7 +174,7 @@ public interface DynamicJobsAssetOrBuilder extends int getContextualKeywordsCount(); /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -184,7 +184,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getContextualKeywords(int index); /** *
-   * Contextual keywords, e.g. Software engineering job.
+   * Contextual keywords, for example, Software engineering job.
    * 
* * repeated string contextual_keywords = 8; @@ -197,9 +197,9 @@ public interface DynamicJobsAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 9; @@ -209,9 +209,9 @@ public interface DynamicJobsAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 9; @@ -222,7 +222,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Salary, e.g. $100,000.
+   * Salary, for example, $100,000.
    * 
* * string salary = 10; @@ -231,7 +231,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getSalary(); /** *
-   * Salary, e.g. $100,000.
+   * Salary, for example, $100,000.
    * 
* * string salary = 10; @@ -242,7 +242,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -252,7 +252,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -264,7 +264,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -274,7 +274,7 @@ public interface DynamicJobsAssetOrBuilder extends getSimilarJobIdsList(); /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -283,7 +283,7 @@ public interface DynamicJobsAssetOrBuilder extends int getSimilarJobIdsCount(); /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -293,7 +293,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getSimilarJobIds(int index); /** *
-   * Similar job IDs, e.g. 1275.
+   * Similar job IDs, for example, 1275.
    * 
* * repeated string similar_job_ids = 12; @@ -305,7 +305,7 @@ public interface DynamicJobsAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -314,7 +314,7 @@ public interface DynamicJobsAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAsset.java index c4a3d61402..7d071aaaca 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAsset.java @@ -261,7 +261,7 @@ public java.lang.String getDealId() { private volatile java.lang.Object dealName_; /** *
-   * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+   * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
    * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -282,7 +282,7 @@ public java.lang.String getDealName() { } /** *
-   * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+   * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
    * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -307,7 +307,7 @@ public java.lang.String getDealName() { private volatile java.lang.Object subtitle_; /** *
-   * Subtitle, e.g. Groceries.
+   * Subtitle, for example, Groceries.
    * 
* * string subtitle = 3; @@ -328,7 +328,7 @@ public java.lang.String getSubtitle() { } /** *
-   * Subtitle, e.g. Groceries.
+   * Subtitle, for example, Groceries.
    * 
* * string subtitle = 3; @@ -353,7 +353,7 @@ public java.lang.String getSubtitle() { private volatile java.lang.Object description_; /** *
-   * Description, e.g. Save on your weekly bill.
+   * Description, for example, Save on your weekly bill.
    * 
* * string description = 4; @@ -374,7 +374,7 @@ public java.lang.String getDescription() { } /** *
-   * Description, e.g. Save on your weekly bill.
+   * Description, for example, Save on your weekly bill.
    * 
* * string description = 4; @@ -400,7 +400,7 @@ public java.lang.String getDescription() { /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 5; @@ -422,7 +422,7 @@ public java.lang.String getPrice() { /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 5; @@ -448,7 +448,7 @@ public java.lang.String getPrice() { /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -471,7 +471,7 @@ public java.lang.String getSalePrice() { /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -497,8 +497,8 @@ public java.lang.String getSalePrice() { private volatile java.lang.Object imageUrl_; /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -519,8 +519,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -546,9 +546,9 @@ public java.lang.String getImageUrl() { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 8; @@ -570,9 +570,9 @@ public java.lang.String getAddress() { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 8; @@ -597,7 +597,7 @@ public java.lang.String getAddress() { private volatile java.lang.Object category_; /** *
-   * Category, e.g. Food.
+   * Category, for example, Food.
    * 
* * string category = 9; @@ -618,7 +618,7 @@ public java.lang.String getCategory() { } /** *
-   * Category, e.g. Food.
+   * Category, for example, Food.
    * 
* * string category = 9; @@ -643,7 +643,7 @@ public java.lang.String getCategory() { private com.google.protobuf.LazyStringList contextualKeywords_; /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -655,7 +655,7 @@ public java.lang.String getCategory() { } /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -666,7 +666,7 @@ public int getContextualKeywordsCount() { } /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -678,7 +678,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -695,7 +695,7 @@ public java.lang.String getContextualKeywords(int index) { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 11; @@ -717,7 +717,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 11; @@ -743,7 +743,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 12; @@ -765,7 +765,7 @@ public java.lang.String getFormattedSalePrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 12; @@ -790,7 +790,7 @@ public java.lang.String getFormattedSalePrice() { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -812,7 +812,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -838,7 +838,7 @@ public java.lang.String getAndroidAppLink() { private com.google.protobuf.LazyStringList similarDealIds_; /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -850,7 +850,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -861,7 +861,7 @@ public int getSimilarDealIdsCount() { } /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -873,7 +873,7 @@ public java.lang.String getSimilarDealIds(int index) { } /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -889,7 +889,7 @@ public java.lang.String getSimilarDealIds(int index) { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 15; @@ -910,7 +910,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 15; @@ -1650,7 +1650,7 @@ public Builder setDealIdBytes( private java.lang.Object dealName_ = ""; /** *
-     * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+     * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
      * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1670,7 +1670,7 @@ public java.lang.String getDealName() { } /** *
-     * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+     * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
      * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1691,7 +1691,7 @@ public java.lang.String getDealName() { } /** *
-     * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+     * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
      * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1710,7 +1710,7 @@ public Builder setDealName( } /** *
-     * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+     * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
      * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1724,7 +1724,7 @@ public Builder clearDealName() { } /** *
-     * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+     * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
      * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1746,7 +1746,7 @@ public Builder setDealNameBytes( private java.lang.Object subtitle_ = ""; /** *
-     * Subtitle, e.g. Groceries.
+     * Subtitle, for example, Groceries.
      * 
* * string subtitle = 3; @@ -1766,7 +1766,7 @@ public java.lang.String getSubtitle() { } /** *
-     * Subtitle, e.g. Groceries.
+     * Subtitle, for example, Groceries.
      * 
* * string subtitle = 3; @@ -1787,7 +1787,7 @@ public java.lang.String getSubtitle() { } /** *
-     * Subtitle, e.g. Groceries.
+     * Subtitle, for example, Groceries.
      * 
* * string subtitle = 3; @@ -1806,7 +1806,7 @@ public Builder setSubtitle( } /** *
-     * Subtitle, e.g. Groceries.
+     * Subtitle, for example, Groceries.
      * 
* * string subtitle = 3; @@ -1820,7 +1820,7 @@ public Builder clearSubtitle() { } /** *
-     * Subtitle, e.g. Groceries.
+     * Subtitle, for example, Groceries.
      * 
* * string subtitle = 3; @@ -1842,7 +1842,7 @@ public Builder setSubtitleBytes( private java.lang.Object description_ = ""; /** *
-     * Description, e.g. Save on your weekly bill.
+     * Description, for example, Save on your weekly bill.
      * 
* * string description = 4; @@ -1862,7 +1862,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. Save on your weekly bill.
+     * Description, for example, Save on your weekly bill.
      * 
* * string description = 4; @@ -1883,7 +1883,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. Save on your weekly bill.
+     * Description, for example, Save on your weekly bill.
      * 
* * string description = 4; @@ -1902,7 +1902,7 @@ public Builder setDescription( } /** *
-     * Description, e.g. Save on your weekly bill.
+     * Description, for example, Save on your weekly bill.
      * 
* * string description = 4; @@ -1916,7 +1916,7 @@ public Builder clearDescription() { } /** *
-     * Description, e.g. Save on your weekly bill.
+     * Description, for example, Save on your weekly bill.
      * 
* * string description = 4; @@ -1939,7 +1939,7 @@ public Builder setDescriptionBytes( /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 5; @@ -1960,7 +1960,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 5; @@ -1982,7 +1982,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 5; @@ -2002,7 +2002,7 @@ public Builder setPrice( /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 5; @@ -2017,7 +2017,7 @@ public Builder clearPrice() { /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 5; @@ -2040,7 +2040,7 @@ public Builder setPriceBytes( /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2062,7 +2062,7 @@ public java.lang.String getSalePrice() { /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2085,7 +2085,7 @@ public java.lang.String getSalePrice() { /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2106,7 +2106,7 @@ public Builder setSalePrice( /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2122,7 +2122,7 @@ public Builder clearSalePrice() { /** *
      * Sale price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
      * Must be less than the 'price' field.
      * 
* @@ -2145,8 +2145,8 @@ public Builder setSalePriceBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2166,8 +2166,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2188,8 +2188,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2208,8 +2208,8 @@ public Builder setImageUrl( } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2223,8 +2223,8 @@ public Builder clearImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2247,9 +2247,9 @@ public Builder setImageUrlBytes( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 8; @@ -2270,9 +2270,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 8; @@ -2294,9 +2294,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 8; @@ -2316,9 +2316,9 @@ public Builder setAddress( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 8; @@ -2333,9 +2333,9 @@ public Builder clearAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string address = 8; @@ -2357,7 +2357,7 @@ public Builder setAddressBytes( private java.lang.Object category_ = ""; /** *
-     * Category, e.g. Food.
+     * Category, for example, Food.
      * 
* * string category = 9; @@ -2377,7 +2377,7 @@ public java.lang.String getCategory() { } /** *
-     * Category, e.g. Food.
+     * Category, for example, Food.
      * 
* * string category = 9; @@ -2398,7 +2398,7 @@ public java.lang.String getCategory() { } /** *
-     * Category, e.g. Food.
+     * Category, for example, Food.
      * 
* * string category = 9; @@ -2417,7 +2417,7 @@ public Builder setCategory( } /** *
-     * Category, e.g. Food.
+     * Category, for example, Food.
      * 
* * string category = 9; @@ -2431,7 +2431,7 @@ public Builder clearCategory() { } /** *
-     * Category, e.g. Food.
+     * Category, for example, Food.
      * 
* * string category = 9; @@ -2459,7 +2459,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2471,7 +2471,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2482,7 +2482,7 @@ public int getContextualKeywordsCount() { } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2494,7 +2494,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2507,7 +2507,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2527,7 +2527,7 @@ public Builder setContextualKeywords( } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2546,7 +2546,7 @@ public Builder addContextualKeywords( } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2563,7 +2563,7 @@ public Builder addAllContextualKeywords( } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2577,7 +2577,7 @@ public Builder clearContextualKeywords() { } /** *
-     * Contextual keywords, e.g. Save groceries coupons.
+     * Contextual keywords, for example, Save groceries coupons.
      * 
* * repeated string contextual_keywords = 10; @@ -2600,7 +2600,7 @@ public Builder addContextualKeywordsBytes( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 11; @@ -2621,7 +2621,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 11; @@ -2643,7 +2643,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 11; @@ -2663,7 +2663,7 @@ public Builder setFormattedPrice( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 11; @@ -2678,7 +2678,7 @@ public Builder clearFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 11; @@ -2701,7 +2701,7 @@ public Builder setFormattedPriceBytes( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 12; @@ -2722,7 +2722,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 12; @@ -2744,7 +2744,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 12; @@ -2764,7 +2764,7 @@ public Builder setFormattedSalePrice( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 12; @@ -2779,7 +2779,7 @@ public Builder clearFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 12; @@ -2801,7 +2801,7 @@ public Builder setFormattedSalePriceBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2822,7 +2822,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2844,7 +2844,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2864,7 +2864,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2879,7 +2879,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2908,7 +2908,7 @@ private void ensureSimilarDealIdsIsMutable() { } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -2920,7 +2920,7 @@ private void ensureSimilarDealIdsIsMutable() { } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -2931,7 +2931,7 @@ public int getSimilarDealIdsCount() { } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -2943,7 +2943,7 @@ public java.lang.String getSimilarDealIds(int index) { } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -2956,7 +2956,7 @@ public java.lang.String getSimilarDealIds(int index) { } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -2976,7 +2976,7 @@ public Builder setSimilarDealIds( } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -2995,7 +2995,7 @@ public Builder addSimilarDealIds( } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -3012,7 +3012,7 @@ public Builder addAllSimilarDealIds( } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -3026,7 +3026,7 @@ public Builder clearSimilarDealIds() { } /** *
-     * Similar deal IDs, e.g. 1275.
+     * Similar deal IDs, for example, 1275.
      * 
* * repeated string similar_deal_ids = 14; @@ -3048,7 +3048,7 @@ public Builder addSimilarDealIdsBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 15; @@ -3068,7 +3068,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 15; @@ -3089,7 +3089,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 15; @@ -3108,7 +3108,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 15; @@ -3122,7 +3122,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 15; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAssetOrBuilder.java index f500c7ffe0..e5f535dd93 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicLocalAssetOrBuilder.java @@ -31,7 +31,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+   * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
    * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -40,7 +40,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getDealName(); /** *
-   * Required. Deal name, e.g. 50% off at Mountain View Grocers. Required.
+   * Required. Deal name, for example, 50% off at Mountain View Grocers. Required.
    * 
* * string deal_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -51,7 +51,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Subtitle, e.g. Groceries.
+   * Subtitle, for example, Groceries.
    * 
* * string subtitle = 3; @@ -60,7 +60,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getSubtitle(); /** *
-   * Subtitle, e.g. Groceries.
+   * Subtitle, for example, Groceries.
    * 
* * string subtitle = 3; @@ -71,7 +71,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Description, e.g. Save on your weekly bill.
+   * Description, for example, Save on your weekly bill.
    * 
* * string description = 4; @@ -80,7 +80,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getDescription(); /** *
-   * Description, e.g. Save on your weekly bill.
+   * Description, for example, Save on your weekly bill.
    * 
* * string description = 4; @@ -92,7 +92,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 5; @@ -102,7 +102,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 5; @@ -114,7 +114,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -125,7 +125,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Sale price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00 USD.
    * Must be less than the 'price' field.
    * 
* @@ -137,8 +137,8 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -147,8 +147,8 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -160,9 +160,9 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 8; @@ -172,9 +172,9 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string address = 8; @@ -185,7 +185,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Category, e.g. Food.
+   * Category, for example, Food.
    * 
* * string category = 9; @@ -194,7 +194,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getCategory(); /** *
-   * Category, e.g. Food.
+   * Category, for example, Food.
    * 
* * string category = 9; @@ -205,7 +205,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -215,7 +215,7 @@ public interface DynamicLocalAssetOrBuilder extends getContextualKeywordsList(); /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -224,7 +224,7 @@ public interface DynamicLocalAssetOrBuilder extends int getContextualKeywordsCount(); /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -234,7 +234,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getContextualKeywords(int index); /** *
-   * Contextual keywords, e.g. Save groceries coupons.
+   * Contextual keywords, for example, Save groceries coupons.
    * 
* * repeated string contextual_keywords = 10; @@ -247,7 +247,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 11; @@ -257,7 +257,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 11; @@ -269,7 +269,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 12; @@ -279,7 +279,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 12; @@ -290,7 +290,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -300,7 +300,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -312,7 +312,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -322,7 +322,7 @@ public interface DynamicLocalAssetOrBuilder extends getSimilarDealIdsList(); /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -331,7 +331,7 @@ public interface DynamicLocalAssetOrBuilder extends int getSimilarDealIdsCount(); /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -341,7 +341,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getSimilarDealIds(int index); /** *
-   * Similar deal IDs, e.g. 1275.
+   * Similar deal IDs, for example, 1275.
    * 
* * repeated string similar_deal_ids = 14; @@ -353,7 +353,7 @@ public interface DynamicLocalAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 15; @@ -362,7 +362,7 @@ public interface DynamicLocalAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 15; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAsset.java index d0ed119b2e..696b810fd0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAsset.java @@ -254,7 +254,7 @@ public java.lang.String getListingId() { private volatile java.lang.Object listingName_; /** *
-   * Required. Listing name, e.g. Boulevard Bungalow. Required.
+   * Required. Listing name, for example, Boulevard Bungalow. Required.
    * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -275,7 +275,7 @@ public java.lang.String getListingName() { } /** *
-   * Required. Listing name, e.g. Boulevard Bungalow. Required.
+   * Required. Listing name, for example, Boulevard Bungalow. Required.
    * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -300,7 +300,7 @@ public java.lang.String getListingName() { private volatile java.lang.Object cityName_; /** *
-   * City name, e.g. Mountain View, California.
+   * City name, for example, Mountain View, California.
    * 
* * string city_name = 3; @@ -321,7 +321,7 @@ public java.lang.String getCityName() { } /** *
-   * City name, e.g. Mountain View, California.
+   * City name, for example, Mountain View, California.
    * 
* * string city_name = 3; @@ -346,7 +346,7 @@ public java.lang.String getCityName() { private volatile java.lang.Object description_; /** *
-   * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+   * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
    * 
* * string description = 4; @@ -367,7 +367,7 @@ public java.lang.String getDescription() { } /** *
-   * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+   * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
    * 
* * string description = 4; @@ -393,9 +393,9 @@ public java.lang.String getDescription() { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 5; @@ -417,9 +417,9 @@ public java.lang.String getAddress() { /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 5; @@ -445,7 +445,8 @@ public java.lang.String getAddress() { /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+   * USD.
    * 
* * string price = 6; @@ -467,7 +468,8 @@ public java.lang.String getPrice() { /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+   * USD.
    * 
* * string price = 6; @@ -492,8 +494,8 @@ public java.lang.String getPrice() { private volatile java.lang.Object imageUrl_; /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -514,8 +516,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -540,7 +542,7 @@ public java.lang.String getImageUrl() { private volatile java.lang.Object propertyType_; /** *
-   * Property type, e.g. House.
+   * Property type, for example, House.
    * 
* * string property_type = 8; @@ -561,7 +563,7 @@ public java.lang.String getPropertyType() { } /** *
-   * Property type, e.g. House.
+   * Property type, for example, House.
    * 
* * string property_type = 8; @@ -586,7 +588,7 @@ public java.lang.String getPropertyType() { private volatile java.lang.Object listingType_; /** *
-   * Listing type, e.g. For sale.
+   * Listing type, for example, For sale.
    * 
* * string listing_type = 9; @@ -607,7 +609,7 @@ public java.lang.String getListingType() { } /** *
-   * Listing type, e.g. For sale.
+   * Listing type, for example, For sale.
    * 
* * string listing_type = 9; @@ -632,7 +634,7 @@ public java.lang.String getListingType() { private com.google.protobuf.LazyStringList contextualKeywords_; /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -644,7 +646,7 @@ public java.lang.String getListingType() { } /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -655,7 +657,7 @@ public int getContextualKeywordsCount() { } /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -667,7 +669,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -684,7 +686,7 @@ public java.lang.String getContextualKeywords(int index) { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $200,000.00.
+   * used instead of 'price', for example, Starting at $200,000.00.
    * 
* * string formatted_price = 11; @@ -706,7 +708,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $200,000.00.
+   * used instead of 'price', for example, Starting at $200,000.00.
    * 
* * string formatted_price = 11; @@ -731,7 +733,7 @@ public java.lang.String getFormattedPrice() { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -753,7 +755,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -779,7 +781,7 @@ public java.lang.String getAndroidAppLink() { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -800,7 +802,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -1574,7 +1576,7 @@ public Builder setListingIdBytes( private java.lang.Object listingName_ = ""; /** *
-     * Required. Listing name, e.g. Boulevard Bungalow. Required.
+     * Required. Listing name, for example, Boulevard Bungalow. Required.
      * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1594,7 +1596,7 @@ public java.lang.String getListingName() { } /** *
-     * Required. Listing name, e.g. Boulevard Bungalow. Required.
+     * Required. Listing name, for example, Boulevard Bungalow. Required.
      * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1615,7 +1617,7 @@ public java.lang.String getListingName() { } /** *
-     * Required. Listing name, e.g. Boulevard Bungalow. Required.
+     * Required. Listing name, for example, Boulevard Bungalow. Required.
      * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1634,7 +1636,7 @@ public Builder setListingName( } /** *
-     * Required. Listing name, e.g. Boulevard Bungalow. Required.
+     * Required. Listing name, for example, Boulevard Bungalow. Required.
      * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1648,7 +1650,7 @@ public Builder clearListingName() { } /** *
-     * Required. Listing name, e.g. Boulevard Bungalow. Required.
+     * Required. Listing name, for example, Boulevard Bungalow. Required.
      * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -1670,7 +1672,7 @@ public Builder setListingNameBytes( private java.lang.Object cityName_ = ""; /** *
-     * City name, e.g. Mountain View, California.
+     * City name, for example, Mountain View, California.
      * 
* * string city_name = 3; @@ -1690,7 +1692,7 @@ public java.lang.String getCityName() { } /** *
-     * City name, e.g. Mountain View, California.
+     * City name, for example, Mountain View, California.
      * 
* * string city_name = 3; @@ -1711,7 +1713,7 @@ public java.lang.String getCityName() { } /** *
-     * City name, e.g. Mountain View, California.
+     * City name, for example, Mountain View, California.
      * 
* * string city_name = 3; @@ -1730,7 +1732,7 @@ public Builder setCityName( } /** *
-     * City name, e.g. Mountain View, California.
+     * City name, for example, Mountain View, California.
      * 
* * string city_name = 3; @@ -1744,7 +1746,7 @@ public Builder clearCityName() { } /** *
-     * City name, e.g. Mountain View, California.
+     * City name, for example, Mountain View, California.
      * 
* * string city_name = 3; @@ -1766,7 +1768,7 @@ public Builder setCityNameBytes( private java.lang.Object description_ = ""; /** *
-     * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+     * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
      * 
* * string description = 4; @@ -1786,7 +1788,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+     * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
      * 
* * string description = 4; @@ -1807,7 +1809,7 @@ public java.lang.String getDescription() { } /** *
-     * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+     * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
      * 
* * string description = 4; @@ -1826,7 +1828,7 @@ public Builder setDescription( } /** *
-     * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+     * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
      * 
* * string description = 4; @@ -1840,7 +1842,7 @@ public Builder clearDescription() { } /** *
-     * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+     * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
      * 
* * string description = 4; @@ -1863,9 +1865,9 @@ public Builder setDescriptionBytes( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 5; @@ -1886,9 +1888,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 5; @@ -1910,9 +1912,9 @@ public java.lang.String getAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 5; @@ -1932,9 +1934,9 @@ public Builder setAddress( /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 5; @@ -1949,9 +1951,9 @@ public Builder clearAddress() { /** *
      * Address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
      * 
* * string address = 5; @@ -1974,7 +1976,8 @@ public Builder setAddressBytes( /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+     * USD.
      * 
* * string price = 6; @@ -1995,7 +1998,8 @@ public java.lang.String getPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+     * USD.
      * 
* * string price = 6; @@ -2017,7 +2021,8 @@ public java.lang.String getPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+     * USD.
      * 
* * string price = 6; @@ -2037,7 +2042,8 @@ public Builder setPrice( /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+     * USD.
      * 
* * string price = 6; @@ -2052,7 +2058,8 @@ public Builder clearPrice() { /** *
      * Price which can be number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+     * USD.
      * 
* * string price = 6; @@ -2074,8 +2081,8 @@ public Builder setPriceBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2095,8 +2102,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2117,8 +2124,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2137,8 +2144,8 @@ public Builder setImageUrl( } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2152,8 +2159,8 @@ public Builder clearImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 7; @@ -2175,7 +2182,7 @@ public Builder setImageUrlBytes( private java.lang.Object propertyType_ = ""; /** *
-     * Property type, e.g. House.
+     * Property type, for example, House.
      * 
* * string property_type = 8; @@ -2195,7 +2202,7 @@ public java.lang.String getPropertyType() { } /** *
-     * Property type, e.g. House.
+     * Property type, for example, House.
      * 
* * string property_type = 8; @@ -2216,7 +2223,7 @@ public java.lang.String getPropertyType() { } /** *
-     * Property type, e.g. House.
+     * Property type, for example, House.
      * 
* * string property_type = 8; @@ -2235,7 +2242,7 @@ public Builder setPropertyType( } /** *
-     * Property type, e.g. House.
+     * Property type, for example, House.
      * 
* * string property_type = 8; @@ -2249,7 +2256,7 @@ public Builder clearPropertyType() { } /** *
-     * Property type, e.g. House.
+     * Property type, for example, House.
      * 
* * string property_type = 8; @@ -2271,7 +2278,7 @@ public Builder setPropertyTypeBytes( private java.lang.Object listingType_ = ""; /** *
-     * Listing type, e.g. For sale.
+     * Listing type, for example, For sale.
      * 
* * string listing_type = 9; @@ -2291,7 +2298,7 @@ public java.lang.String getListingType() { } /** *
-     * Listing type, e.g. For sale.
+     * Listing type, for example, For sale.
      * 
* * string listing_type = 9; @@ -2312,7 +2319,7 @@ public java.lang.String getListingType() { } /** *
-     * Listing type, e.g. For sale.
+     * Listing type, for example, For sale.
      * 
* * string listing_type = 9; @@ -2331,7 +2338,7 @@ public Builder setListingType( } /** *
-     * Listing type, e.g. For sale.
+     * Listing type, for example, For sale.
      * 
* * string listing_type = 9; @@ -2345,7 +2352,7 @@ public Builder clearListingType() { } /** *
-     * Listing type, e.g. For sale.
+     * Listing type, for example, For sale.
      * 
* * string listing_type = 9; @@ -2373,7 +2380,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2385,7 +2392,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2396,7 +2403,7 @@ public int getContextualKeywordsCount() { } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2408,7 +2415,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2421,7 +2428,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2441,7 +2448,7 @@ public Builder setContextualKeywords( } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2460,7 +2467,7 @@ public Builder addContextualKeywords( } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2477,7 +2484,7 @@ public Builder addAllContextualKeywords( } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2491,7 +2498,7 @@ public Builder clearContextualKeywords() { } /** *
-     * Contextual keywords, e.g. For sale; Houses for sale.
+     * Contextual keywords, for example, For sale; Houses for sale.
      * 
* * repeated string contextual_keywords = 10; @@ -2514,7 +2521,7 @@ public Builder addContextualKeywordsBytes( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $200,000.00.
+     * used instead of 'price', for example, Starting at $200,000.00.
      * 
* * string formatted_price = 11; @@ -2535,7 +2542,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $200,000.00.
+     * used instead of 'price', for example, Starting at $200,000.00.
      * 
* * string formatted_price = 11; @@ -2557,7 +2564,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $200,000.00.
+     * used instead of 'price', for example, Starting at $200,000.00.
      * 
* * string formatted_price = 11; @@ -2577,7 +2584,7 @@ public Builder setFormattedPrice( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $200,000.00.
+     * used instead of 'price', for example, Starting at $200,000.00.
      * 
* * string formatted_price = 11; @@ -2592,7 +2599,7 @@ public Builder clearFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $200,000.00.
+     * used instead of 'price', for example, Starting at $200,000.00.
      * 
* * string formatted_price = 11; @@ -2614,7 +2621,7 @@ public Builder setFormattedPriceBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2635,7 +2642,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2657,7 +2664,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2677,7 +2684,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2692,7 +2699,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -2715,7 +2722,7 @@ public Builder setAndroidAppLinkBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2735,7 +2742,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2756,7 +2763,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2775,7 +2782,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; @@ -2789,7 +2796,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 13; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAssetOrBuilder.java index c31ca6fa42..d4e04f4a36 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicRealEstateAssetOrBuilder.java @@ -31,7 +31,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * Required. Listing name, e.g. Boulevard Bungalow. Required.
+   * Required. Listing name, for example, Boulevard Bungalow. Required.
    * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -40,7 +40,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getListingName(); /** *
-   * Required. Listing name, e.g. Boulevard Bungalow. Required.
+   * Required. Listing name, for example, Boulevard Bungalow. Required.
    * 
* * string listing_name = 2 [(.google.api.field_behavior) = REQUIRED]; @@ -51,7 +51,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * City name, e.g. Mountain View, California.
+   * City name, for example, Mountain View, California.
    * 
* * string city_name = 3; @@ -60,7 +60,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getCityName(); /** *
-   * City name, e.g. Mountain View, California.
+   * City name, for example, Mountain View, California.
    * 
* * string city_name = 3; @@ -71,7 +71,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+   * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
    * 
* * string description = 4; @@ -80,7 +80,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getDescription(); /** *
-   * Description, e.g. 3 beds, 2 baths, 1568 sq. ft.
+   * Description, for example, 3 beds, 2 baths, 1568 sq. ft.
    * 
* * string description = 4; @@ -92,9 +92,9 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 5; @@ -104,9 +104,9 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
    * Address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403
    * 
* * string address = 5; @@ -118,7 +118,8 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+   * USD.
    * 
* * string price = 6; @@ -128,7 +129,8 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
    * Price which can be number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 200,000.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 200,000.00
+   * USD.
    * 
* * string price = 6; @@ -139,8 +141,8 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -149,8 +151,8 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 7; @@ -161,7 +163,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * Property type, e.g. House.
+   * Property type, for example, House.
    * 
* * string property_type = 8; @@ -170,7 +172,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getPropertyType(); /** *
-   * Property type, e.g. House.
+   * Property type, for example, House.
    * 
* * string property_type = 8; @@ -181,7 +183,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * Listing type, e.g. For sale.
+   * Listing type, for example, For sale.
    * 
* * string listing_type = 9; @@ -190,7 +192,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getListingType(); /** *
-   * Listing type, e.g. For sale.
+   * Listing type, for example, For sale.
    * 
* * string listing_type = 9; @@ -201,7 +203,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -211,7 +213,7 @@ public interface DynamicRealEstateAssetOrBuilder extends getContextualKeywordsList(); /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -220,7 +222,7 @@ public interface DynamicRealEstateAssetOrBuilder extends int getContextualKeywordsCount(); /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -230,7 +232,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getContextualKeywords(int index); /** *
-   * Contextual keywords, e.g. For sale; Houses for sale.
+   * Contextual keywords, for example, For sale; Houses for sale.
    * 
* * repeated string contextual_keywords = 10; @@ -243,7 +245,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $200,000.00.
+   * used instead of 'price', for example, Starting at $200,000.00.
    * 
* * string formatted_price = 11; @@ -253,7 +255,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $200,000.00.
+   * used instead of 'price', for example, Starting at $200,000.00.
    * 
* * string formatted_price = 11; @@ -264,7 +266,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -274,7 +276,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -286,7 +288,7 @@ public interface DynamicRealEstateAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; @@ -295,7 +297,7 @@ public interface DynamicRealEstateAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 13; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAsset.java index 562aac8119..8aab46d1f3 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAsset.java @@ -316,7 +316,7 @@ public java.lang.String getOriginId() { private volatile java.lang.Object title_; /** *
-   * Required. Title, e.g. Book your train ticket. Required.
+   * Required. Title, for example, Book your train ticket. Required.
    * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -337,7 +337,7 @@ public java.lang.String getTitle() { } /** *
-   * Required. Title, e.g. Book your train ticket. Required.
+   * Required. Title, for example, Book your train ticket. Required.
    * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -362,7 +362,7 @@ public java.lang.String getTitle() { private volatile java.lang.Object destinationName_; /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 4; @@ -383,7 +383,7 @@ public java.lang.String getDestinationName() { } /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 4; @@ -409,9 +409,9 @@ public java.lang.String getDestinationName() { /** *
    * Destination address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string destination_address = 5; @@ -433,9 +433,9 @@ public java.lang.String getDestinationAddress() { /** *
    * Destination address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string destination_address = 5; @@ -460,7 +460,7 @@ public java.lang.String getDestinationAddress() { private volatile java.lang.Object originName_; /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -481,7 +481,7 @@ public java.lang.String getOriginName() { } /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -507,7 +507,7 @@ public java.lang.String getOriginName() { /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 7; @@ -529,7 +529,7 @@ public java.lang.String getPrice() { /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 7; @@ -555,8 +555,8 @@ public java.lang.String getPrice() { /** *
    * Sale price which can be a number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'price' field.
    * 
* * string sale_price = 8; @@ -578,8 +578,8 @@ public java.lang.String getSalePrice() { /** *
    * Sale price which can be a number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'price' field.
    * 
* * string sale_price = 8; @@ -605,7 +605,7 @@ public java.lang.String getSalePrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -627,7 +627,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -653,7 +653,7 @@ public java.lang.String getFormattedPrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -675,7 +675,7 @@ public java.lang.String getFormattedSalePrice() { /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -700,7 +700,7 @@ public java.lang.String getFormattedSalePrice() { private volatile java.lang.Object category_; /** *
-   * Category, e.g. Express.
+   * Category, for example, Express.
    * 
* * string category = 11; @@ -721,7 +721,7 @@ public java.lang.String getCategory() { } /** *
-   * Category, e.g. Express.
+   * Category, for example, Express.
    * 
* * string category = 11; @@ -746,7 +746,7 @@ public java.lang.String getCategory() { private com.google.protobuf.LazyStringList contextualKeywords_; /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -758,7 +758,7 @@ public java.lang.String getCategory() { } /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -769,7 +769,7 @@ public int getContextualKeywordsCount() { } /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -781,7 +781,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -797,7 +797,7 @@ public java.lang.String getContextualKeywords(int index) { private com.google.protobuf.LazyStringList similarDestinationIds_; /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -809,7 +809,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -820,7 +820,7 @@ public int getSimilarDestinationIdsCount() { } /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -832,7 +832,7 @@ public java.lang.String getSimilarDestinationIds(int index) { } /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -848,8 +848,8 @@ public java.lang.String getSimilarDestinationIds(int index) { private volatile java.lang.Object imageUrl_; /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; @@ -870,8 +870,8 @@ public java.lang.String getImageUrl() { } /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; @@ -896,7 +896,7 @@ public java.lang.String getImageUrl() { private volatile java.lang.Object androidAppLink_; /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -918,7 +918,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -944,7 +944,7 @@ public java.lang.String getAndroidAppLink() { private volatile java.lang.Object iosAppLink_; /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; @@ -965,7 +965,7 @@ public java.lang.String getIosAppLink() { } /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; @@ -1823,7 +1823,7 @@ public Builder setOriginIdBytes( private java.lang.Object title_ = ""; /** *
-     * Required. Title, e.g. Book your train ticket. Required.
+     * Required. Title, for example, Book your train ticket. Required.
      * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1843,7 +1843,7 @@ public java.lang.String getTitle() { } /** *
-     * Required. Title, e.g. Book your train ticket. Required.
+     * Required. Title, for example, Book your train ticket. Required.
      * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1864,7 +1864,7 @@ public java.lang.String getTitle() { } /** *
-     * Required. Title, e.g. Book your train ticket. Required.
+     * Required. Title, for example, Book your train ticket. Required.
      * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1883,7 +1883,7 @@ public Builder setTitle( } /** *
-     * Required. Title, e.g. Book your train ticket. Required.
+     * Required. Title, for example, Book your train ticket. Required.
      * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1897,7 +1897,7 @@ public Builder clearTitle() { } /** *
-     * Required. Title, e.g. Book your train ticket. Required.
+     * Required. Title, for example, Book your train ticket. Required.
      * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -1919,7 +1919,7 @@ public Builder setTitleBytes( private java.lang.Object destinationName_ = ""; /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 4; @@ -1939,7 +1939,7 @@ public java.lang.String getDestinationName() { } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 4; @@ -1960,7 +1960,7 @@ public java.lang.String getDestinationName() { } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 4; @@ -1979,7 +1979,7 @@ public Builder setDestinationName( } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 4; @@ -1993,7 +1993,7 @@ public Builder clearDestinationName() { } /** *
-     * Destination name, e.g. Paris.
+     * Destination name, for example, Paris.
      * 
* * string destination_name = 4; @@ -2016,9 +2016,9 @@ public Builder setDestinationNameBytes( /** *
      * Destination address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string destination_address = 5; @@ -2039,9 +2039,9 @@ public java.lang.String getDestinationAddress() { /** *
      * Destination address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string destination_address = 5; @@ -2063,9 +2063,9 @@ public java.lang.String getDestinationAddress() { /** *
      * Destination address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string destination_address = 5; @@ -2085,9 +2085,9 @@ public Builder setDestinationAddress( /** *
      * Destination address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string destination_address = 5; @@ -2102,9 +2102,9 @@ public Builder clearDestinationAddress() { /** *
      * Destination address which can be specified in one of the following formats.
-     * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-     * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-     * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+     * (1) City, state, code, country, for example, Mountain View, CA, USA.
+     * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+     * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
      * 
* * string destination_address = 5; @@ -2126,7 +2126,7 @@ public Builder setDestinationAddressBytes( private java.lang.Object originName_ = ""; /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2146,7 +2146,7 @@ public java.lang.String getOriginName() { } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2167,7 +2167,7 @@ public java.lang.String getOriginName() { } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2186,7 +2186,7 @@ public Builder setOriginName( } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2200,7 +2200,7 @@ public Builder clearOriginName() { } /** *
-     * Origin name, e.g. London.
+     * Origin name, for example, London.
      * 
* * string origin_name = 6; @@ -2223,7 +2223,7 @@ public Builder setOriginNameBytes( /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 7; @@ -2244,7 +2244,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 7; @@ -2266,7 +2266,7 @@ public java.lang.String getPrice() { /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 7; @@ -2286,7 +2286,7 @@ public Builder setPrice( /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 7; @@ -2301,7 +2301,7 @@ public Builder clearPrice() { /** *
      * Price which can be a number followed by the alphabetic currency code,
-     * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+     * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
      * 
* * string price = 7; @@ -2324,8 +2324,8 @@ public Builder setPriceBytes( /** *
      * Sale price which can be a number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'price' field.
      * 
* * string sale_price = 8; @@ -2346,8 +2346,8 @@ public java.lang.String getSalePrice() { /** *
      * Sale price which can be a number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'price' field.
      * 
* * string sale_price = 8; @@ -2369,8 +2369,8 @@ public java.lang.String getSalePrice() { /** *
      * Sale price which can be a number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'price' field.
      * 
* * string sale_price = 8; @@ -2390,8 +2390,8 @@ public Builder setSalePrice( /** *
      * Sale price which can be a number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'price' field.
      * 
* * string sale_price = 8; @@ -2406,8 +2406,8 @@ public Builder clearSalePrice() { /** *
      * Sale price which can be a number followed by the alphabetic currency
-     * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-     * Must be less than the 'price' field.
+     * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+     * USD. Must be less than the 'price' field.
      * 
* * string sale_price = 8; @@ -2430,7 +2430,7 @@ public Builder setSalePriceBytes( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2451,7 +2451,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2473,7 +2473,7 @@ public java.lang.String getFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2493,7 +2493,7 @@ public Builder setFormattedPrice( /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2508,7 +2508,7 @@ public Builder clearFormattedPrice() { /** *
      * Formatted price which can be any characters. If set, this attribute will be
-     * used instead of 'price', e.g. Starting at $100.00.
+     * used instead of 'price', for example, Starting at $100.00.
      * 
* * string formatted_price = 9; @@ -2531,7 +2531,7 @@ public Builder setFormattedPriceBytes( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2552,7 +2552,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2574,7 +2574,7 @@ public java.lang.String getFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2594,7 +2594,7 @@ public Builder setFormattedSalePrice( /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2609,7 +2609,7 @@ public Builder clearFormattedSalePrice() { /** *
      * Formatted sale price which can be any characters. If set, this attribute
-     * will be used instead of 'sale price', e.g. On sale for $80.00.
+     * will be used instead of 'sale price', for example, On sale for $80.00.
      * 
* * string formatted_sale_price = 10; @@ -2631,7 +2631,7 @@ public Builder setFormattedSalePriceBytes( private java.lang.Object category_ = ""; /** *
-     * Category, e.g. Express.
+     * Category, for example, Express.
      * 
* * string category = 11; @@ -2651,7 +2651,7 @@ public java.lang.String getCategory() { } /** *
-     * Category, e.g. Express.
+     * Category, for example, Express.
      * 
* * string category = 11; @@ -2672,7 +2672,7 @@ public java.lang.String getCategory() { } /** *
-     * Category, e.g. Express.
+     * Category, for example, Express.
      * 
* * string category = 11; @@ -2691,7 +2691,7 @@ public Builder setCategory( } /** *
-     * Category, e.g. Express.
+     * Category, for example, Express.
      * 
* * string category = 11; @@ -2705,7 +2705,7 @@ public Builder clearCategory() { } /** *
-     * Category, e.g. Express.
+     * Category, for example, Express.
      * 
* * string category = 11; @@ -2733,7 +2733,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2745,7 +2745,7 @@ private void ensureContextualKeywordsIsMutable() { } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2756,7 +2756,7 @@ public int getContextualKeywordsCount() { } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2768,7 +2768,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2781,7 +2781,7 @@ public java.lang.String getContextualKeywords(int index) { } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2801,7 +2801,7 @@ public Builder setContextualKeywords( } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2820,7 +2820,7 @@ public Builder addContextualKeywords( } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2837,7 +2837,7 @@ public Builder addAllContextualKeywords( } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2851,7 +2851,7 @@ public Builder clearContextualKeywords() { } /** *
-     * Contextual keywords, e.g. Paris trains.
+     * Contextual keywords, for example, Paris trains.
      * 
* * repeated string contextual_keywords = 12; @@ -2879,7 +2879,7 @@ private void ensureSimilarDestinationIdsIsMutable() { } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2891,7 +2891,7 @@ private void ensureSimilarDestinationIdsIsMutable() { } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2902,7 +2902,7 @@ public int getSimilarDestinationIdsCount() { } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2914,7 +2914,7 @@ public java.lang.String getSimilarDestinationIds(int index) { } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2927,7 +2927,7 @@ public java.lang.String getSimilarDestinationIds(int index) { } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2947,7 +2947,7 @@ public Builder setSimilarDestinationIds( } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2966,7 +2966,7 @@ public Builder addSimilarDestinationIds( } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2983,7 +2983,7 @@ public Builder addAllSimilarDestinationIds( } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -2997,7 +2997,7 @@ public Builder clearSimilarDestinationIds() { } /** *
-     * Similar destination IDs, e.g. NYC.
+     * Similar destination IDs, for example, NYC.
      * 
* * repeated string similar_destination_ids = 13; @@ -3019,8 +3019,8 @@ public Builder addSimilarDestinationIdsBytes( private java.lang.Object imageUrl_ = ""; /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -3040,8 +3040,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -3062,8 +3062,8 @@ public java.lang.String getImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -3082,8 +3082,8 @@ public Builder setImageUrl( } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -3097,8 +3097,8 @@ public Builder clearImageUrl() { } /** *
-     * Image URL, e.g. http://www.example.com/image.png. The image will not be
-     * uploaded as image asset.
+     * Image URL, for example, http://www.example.com/image.png. The image will
+     * not be uploaded as image asset.
      * 
* * string image_url = 14; @@ -3120,7 +3120,7 @@ public Builder setImageUrlBytes( private java.lang.Object androidAppLink_ = ""; /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3141,7 +3141,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3163,7 +3163,7 @@ public java.lang.String getAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3183,7 +3183,7 @@ public Builder setAndroidAppLink( } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3198,7 +3198,7 @@ public Builder clearAndroidAppLink() { } /** *
-     * Android deep link, e.g.
+     * Android deep link, for example,
      * android-app://com.example.android/http/example.com/gizmos?1234.
      * 
* @@ -3221,7 +3221,7 @@ public Builder setAndroidAppLinkBytes( private java.lang.Object iosAppLink_ = ""; /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3241,7 +3241,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3262,7 +3262,7 @@ public java.lang.String getIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3281,7 +3281,7 @@ public Builder setIosAppLink( } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; @@ -3295,7 +3295,7 @@ public Builder clearIosAppLink() { } /** *
-     * iOS deep link, e.g. exampleApp://content/page.
+     * iOS deep link, for example, exampleApp://content/page.
      * 
* * string ios_app_link = 16; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAssetOrBuilder.java index 3fd84e8077..05fb306f85 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/DynamicTravelAssetOrBuilder.java @@ -53,7 +53,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Required. Title, e.g. Book your train ticket. Required.
+   * Required. Title, for example, Book your train ticket. Required.
    * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -62,7 +62,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getTitle(); /** *
-   * Required. Title, e.g. Book your train ticket. Required.
+   * Required. Title, for example, Book your train ticket. Required.
    * 
* * string title = 3 [(.google.api.field_behavior) = REQUIRED]; @@ -73,7 +73,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 4; @@ -82,7 +82,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getDestinationName(); /** *
-   * Destination name, e.g. Paris.
+   * Destination name, for example, Paris.
    * 
* * string destination_name = 4; @@ -94,9 +94,9 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Destination address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string destination_address = 5; @@ -106,9 +106,9 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Destination address which can be specified in one of the following formats.
-   * (1) City, state, code, country, e.g. Mountain View, CA, USA.
-   * (2) Full address, e.g. 123 Boulevard St, Mountain View, CA 94043.
-   * (3) Latitude-longitude in the DDD format, e.g. 41.40338, 2.17403.
+   * (1) City, state, code, country, for example, Mountain View, CA, USA.
+   * (2) Full address, for example, 123 Boulevard St, Mountain View, CA 94043.
+   * (3) Latitude-longitude in the DDD format, for example, 41.40338, 2.17403.
    * 
* * string destination_address = 5; @@ -119,7 +119,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -128,7 +128,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getOriginName(); /** *
-   * Origin name, e.g. London.
+   * Origin name, for example, London.
    * 
* * string origin_name = 6; @@ -140,7 +140,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 7; @@ -150,7 +150,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Price which can be a number followed by the alphabetic currency code,
-   * ISO 4217 standard. Use '.' as the decimal mark. e.g. 100.00 USD.
+   * ISO 4217 standard. Use '.' as the decimal mark, for example, 100.00 USD.
    * 
* * string price = 7; @@ -162,8 +162,8 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Sale price which can be a number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'price' field.
    * 
* * string sale_price = 8; @@ -173,8 +173,8 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Sale price which can be a number followed by the alphabetic currency
-   * code, ISO 4217 standard. Use '.' as the decimal mark, e.g. 80.00 USD.
-   * Must be less than the 'price' field.
+   * code, ISO 4217 standard. Use '.' as the decimal mark, for example, 80.00
+   * USD. Must be less than the 'price' field.
    * 
* * string sale_price = 8; @@ -186,7 +186,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -196,7 +196,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Formatted price which can be any characters. If set, this attribute will be
-   * used instead of 'price', e.g. Starting at $100.00.
+   * used instead of 'price', for example, Starting at $100.00.
    * 
* * string formatted_price = 9; @@ -208,7 +208,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -218,7 +218,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
    * Formatted sale price which can be any characters. If set, this attribute
-   * will be used instead of 'sale price', e.g. On sale for $80.00.
+   * will be used instead of 'sale price', for example, On sale for $80.00.
    * 
* * string formatted_sale_price = 10; @@ -229,7 +229,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Category, e.g. Express.
+   * Category, for example, Express.
    * 
* * string category = 11; @@ -238,7 +238,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getCategory(); /** *
-   * Category, e.g. Express.
+   * Category, for example, Express.
    * 
* * string category = 11; @@ -249,7 +249,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -259,7 +259,7 @@ public interface DynamicTravelAssetOrBuilder extends getContextualKeywordsList(); /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -268,7 +268,7 @@ public interface DynamicTravelAssetOrBuilder extends int getContextualKeywordsCount(); /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -278,7 +278,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getContextualKeywords(int index); /** *
-   * Contextual keywords, e.g. Paris trains.
+   * Contextual keywords, for example, Paris trains.
    * 
* * repeated string contextual_keywords = 12; @@ -290,7 +290,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -300,7 +300,7 @@ public interface DynamicTravelAssetOrBuilder extends getSimilarDestinationIdsList(); /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -309,7 +309,7 @@ public interface DynamicTravelAssetOrBuilder extends int getSimilarDestinationIdsCount(); /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -319,7 +319,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getSimilarDestinationIds(int index); /** *
-   * Similar destination IDs, e.g. NYC.
+   * Similar destination IDs, for example, NYC.
    * 
* * repeated string similar_destination_ids = 13; @@ -331,8 +331,8 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; @@ -341,8 +341,8 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getImageUrl(); /** *
-   * Image URL, e.g. http://www.example.com/image.png. The image will not be
-   * uploaded as image asset.
+   * Image URL, for example, http://www.example.com/image.png. The image will
+   * not be uploaded as image asset.
    * 
* * string image_url = 14; @@ -353,7 +353,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -363,7 +363,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getAndroidAppLink(); /** *
-   * Android deep link, e.g.
+   * Android deep link, for example,
    * android-app://com.example.android/http/example.com/gizmos?1234.
    * 
* @@ -375,7 +375,7 @@ public interface DynamicTravelAssetOrBuilder extends /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; @@ -384,7 +384,7 @@ public interface DynamicTravelAssetOrBuilder extends java.lang.String getIosAppLink(); /** *
-   * iOS deep link, e.g. exampleApp://content/page.
+   * iOS deep link, for example, exampleApp://content/page.
    * 
* * string ios_app_link = 16; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventAttribute.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventAttribute.java new file mode 100644 index 0000000000..b4ae8a8ad5 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventAttribute.java @@ -0,0 +1,1234 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/offline_user_data.proto + +package com.google.ads.googleads.v11.common; + +/** + *
+ * Advertiser defined events and their attributes. All the values in the
+ * nested fields are required.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.EventAttribute} + */ +public final class EventAttribute extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.common.EventAttribute) + EventAttributeOrBuilder { +private static final long serialVersionUID = 0L; + // Use EventAttribute.newBuilder() to construct. + private EventAttribute(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private EventAttribute() { + event_ = ""; + eventDateTime_ = ""; + itemAttribute_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new EventAttribute(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private EventAttribute( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + event_ = s; + break; + } + case 18: { + java.lang.String s = input.readStringRequireUtf8(); + + eventDateTime_ = s; + break; + } + case 26: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + itemAttribute_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + itemAttribute_.add( + input.readMessage(com.google.ads.googleads.v11.common.EventItemAttribute.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + itemAttribute_ = java.util.Collections.unmodifiableList(itemAttribute_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventAttribute_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventAttribute_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.EventAttribute.class, com.google.ads.googleads.v11.common.EventAttribute.Builder.class); + } + + public static final int EVENT_FIELD_NUMBER = 1; + private volatile java.lang.Object event_; + /** + *
+   * Required. Advertiser defined event to be used for remarketing. The accepted values
+   * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+   * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The event. + */ + @java.lang.Override + public java.lang.String getEvent() { + java.lang.Object ref = event_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + event_ = s; + return s; + } + } + /** + *
+   * Required. Advertiser defined event to be used for remarketing. The accepted values
+   * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+   * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for event. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getEventBytes() { + java.lang.Object ref = event_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + event_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int EVENT_DATE_TIME_FIELD_NUMBER = 2; + private volatile java.lang.Object eventDateTime_; + /** + *
+   * Required. Timestamp at which the event happened.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The eventDateTime. + */ + @java.lang.Override + public java.lang.String getEventDateTime() { + java.lang.Object ref = eventDateTime_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + eventDateTime_ = s; + return s; + } + } + /** + *
+   * Required. Timestamp at which the event happened.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for eventDateTime. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getEventDateTimeBytes() { + java.lang.Object ref = eventDateTime_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + eventDateTime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int ITEM_ATTRIBUTE_FIELD_NUMBER = 3; + private java.util.List itemAttribute_; + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public java.util.List getItemAttributeList() { + return itemAttribute_; + } + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public java.util.List + getItemAttributeOrBuilderList() { + return itemAttribute_; + } + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public int getItemAttributeCount() { + return itemAttribute_.size(); + } + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.EventItemAttribute getItemAttribute(int index) { + return itemAttribute_.get(index); + } + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.EventItemAttributeOrBuilder getItemAttributeOrBuilder( + int index) { + return itemAttribute_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(event_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, event_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(eventDateTime_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, eventDateTime_); + } + for (int i = 0; i < itemAttribute_.size(); i++) { + output.writeMessage(3, itemAttribute_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(event_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, event_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(eventDateTime_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, eventDateTime_); + } + for (int i = 0; i < itemAttribute_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, itemAttribute_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.common.EventAttribute)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.common.EventAttribute other = (com.google.ads.googleads.v11.common.EventAttribute) obj; + + if (!getEvent() + .equals(other.getEvent())) return false; + if (!getEventDateTime() + .equals(other.getEventDateTime())) return false; + if (!getItemAttributeList() + .equals(other.getItemAttributeList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + EVENT_FIELD_NUMBER; + hash = (53 * hash) + getEvent().hashCode(); + hash = (37 * hash) + EVENT_DATE_TIME_FIELD_NUMBER; + hash = (53 * hash) + getEventDateTime().hashCode(); + if (getItemAttributeCount() > 0) { + hash = (37 * hash) + ITEM_ATTRIBUTE_FIELD_NUMBER; + hash = (53 * hash) + getItemAttributeList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.EventAttribute parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.common.EventAttribute prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Advertiser defined events and their attributes. All the values in the
+   * nested fields are required.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.EventAttribute} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.common.EventAttribute) + com.google.ads.googleads.v11.common.EventAttributeOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventAttribute_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventAttribute_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.EventAttribute.class, com.google.ads.googleads.v11.common.EventAttribute.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.common.EventAttribute.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getItemAttributeFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + event_ = ""; + + eventDateTime_ = ""; + + if (itemAttributeBuilder_ == null) { + itemAttribute_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + itemAttributeBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventAttribute_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventAttribute getDefaultInstanceForType() { + return com.google.ads.googleads.v11.common.EventAttribute.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventAttribute build() { + com.google.ads.googleads.v11.common.EventAttribute result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventAttribute buildPartial() { + com.google.ads.googleads.v11.common.EventAttribute result = new com.google.ads.googleads.v11.common.EventAttribute(this); + int from_bitField0_ = bitField0_; + result.event_ = event_; + result.eventDateTime_ = eventDateTime_; + if (itemAttributeBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + itemAttribute_ = java.util.Collections.unmodifiableList(itemAttribute_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.itemAttribute_ = itemAttribute_; + } else { + result.itemAttribute_ = itemAttributeBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.common.EventAttribute) { + return mergeFrom((com.google.ads.googleads.v11.common.EventAttribute)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.common.EventAttribute other) { + if (other == com.google.ads.googleads.v11.common.EventAttribute.getDefaultInstance()) return this; + if (!other.getEvent().isEmpty()) { + event_ = other.event_; + onChanged(); + } + if (!other.getEventDateTime().isEmpty()) { + eventDateTime_ = other.eventDateTime_; + onChanged(); + } + if (itemAttributeBuilder_ == null) { + if (!other.itemAttribute_.isEmpty()) { + if (itemAttribute_.isEmpty()) { + itemAttribute_ = other.itemAttribute_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureItemAttributeIsMutable(); + itemAttribute_.addAll(other.itemAttribute_); + } + onChanged(); + } + } else { + if (!other.itemAttribute_.isEmpty()) { + if (itemAttributeBuilder_.isEmpty()) { + itemAttributeBuilder_.dispose(); + itemAttributeBuilder_ = null; + itemAttribute_ = other.itemAttribute_; + bitField0_ = (bitField0_ & ~0x00000001); + itemAttributeBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getItemAttributeFieldBuilder() : null; + } else { + itemAttributeBuilder_.addAllMessages(other.itemAttribute_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.common.EventAttribute parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.common.EventAttribute) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.lang.Object event_ = ""; + /** + *
+     * Required. Advertiser defined event to be used for remarketing. The accepted values
+     * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+     * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The event. + */ + public java.lang.String getEvent() { + java.lang.Object ref = event_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + event_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * Required. Advertiser defined event to be used for remarketing. The accepted values
+     * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+     * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for event. + */ + public com.google.protobuf.ByteString + getEventBytes() { + java.lang.Object ref = event_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + event_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * Required. Advertiser defined event to be used for remarketing. The accepted values
+     * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+     * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The event to set. + * @return This builder for chaining. + */ + public Builder setEvent( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + event_ = value; + onChanged(); + return this; + } + /** + *
+     * Required. Advertiser defined event to be used for remarketing. The accepted values
+     * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+     * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearEvent() { + + event_ = getDefaultInstance().getEvent(); + onChanged(); + return this; + } + /** + *
+     * Required. Advertiser defined event to be used for remarketing. The accepted values
+     * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+     * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The bytes for event to set. + * @return This builder for chaining. + */ + public Builder setEventBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + event_ = value; + onChanged(); + return this; + } + + private java.lang.Object eventDateTime_ = ""; + /** + *
+     * Required. Timestamp at which the event happened.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The eventDateTime. + */ + public java.lang.String getEventDateTime() { + java.lang.Object ref = eventDateTime_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + eventDateTime_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * Required. Timestamp at which the event happened.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for eventDateTime. + */ + public com.google.protobuf.ByteString + getEventDateTimeBytes() { + java.lang.Object ref = eventDateTime_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + eventDateTime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * Required. Timestamp at which the event happened.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @param value The eventDateTime to set. + * @return This builder for chaining. + */ + public Builder setEventDateTime( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + eventDateTime_ = value; + onChanged(); + return this; + } + /** + *
+     * Required. Timestamp at which the event happened.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearEventDateTime() { + + eventDateTime_ = getDefaultInstance().getEventDateTime(); + onChanged(); + return this; + } + /** + *
+     * Required. Timestamp at which the event happened.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @param value The bytes for eventDateTime to set. + * @return This builder for chaining. + */ + public Builder setEventDateTimeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + eventDateTime_ = value; + onChanged(); + return this; + } + + private java.util.List itemAttribute_ = + java.util.Collections.emptyList(); + private void ensureItemAttributeIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + itemAttribute_ = new java.util.ArrayList(itemAttribute_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.EventItemAttribute, com.google.ads.googleads.v11.common.EventItemAttribute.Builder, com.google.ads.googleads.v11.common.EventItemAttributeOrBuilder> itemAttributeBuilder_; + + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List getItemAttributeList() { + if (itemAttributeBuilder_ == null) { + return java.util.Collections.unmodifiableList(itemAttribute_); + } else { + return itemAttributeBuilder_.getMessageList(); + } + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public int getItemAttributeCount() { + if (itemAttributeBuilder_ == null) { + return itemAttribute_.size(); + } else { + return itemAttributeBuilder_.getCount(); + } + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.EventItemAttribute getItemAttribute(int index) { + if (itemAttributeBuilder_ == null) { + return itemAttribute_.get(index); + } else { + return itemAttributeBuilder_.getMessage(index); + } + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setItemAttribute( + int index, com.google.ads.googleads.v11.common.EventItemAttribute value) { + if (itemAttributeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureItemAttributeIsMutable(); + itemAttribute_.set(index, value); + onChanged(); + } else { + itemAttributeBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setItemAttribute( + int index, com.google.ads.googleads.v11.common.EventItemAttribute.Builder builderForValue) { + if (itemAttributeBuilder_ == null) { + ensureItemAttributeIsMutable(); + itemAttribute_.set(index, builderForValue.build()); + onChanged(); + } else { + itemAttributeBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addItemAttribute(com.google.ads.googleads.v11.common.EventItemAttribute value) { + if (itemAttributeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureItemAttributeIsMutable(); + itemAttribute_.add(value); + onChanged(); + } else { + itemAttributeBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addItemAttribute( + int index, com.google.ads.googleads.v11.common.EventItemAttribute value) { + if (itemAttributeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureItemAttributeIsMutable(); + itemAttribute_.add(index, value); + onChanged(); + } else { + itemAttributeBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addItemAttribute( + com.google.ads.googleads.v11.common.EventItemAttribute.Builder builderForValue) { + if (itemAttributeBuilder_ == null) { + ensureItemAttributeIsMutable(); + itemAttribute_.add(builderForValue.build()); + onChanged(); + } else { + itemAttributeBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addItemAttribute( + int index, com.google.ads.googleads.v11.common.EventItemAttribute.Builder builderForValue) { + if (itemAttributeBuilder_ == null) { + ensureItemAttributeIsMutable(); + itemAttribute_.add(index, builderForValue.build()); + onChanged(); + } else { + itemAttributeBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addAllItemAttribute( + java.lang.Iterable values) { + if (itemAttributeBuilder_ == null) { + ensureItemAttributeIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, itemAttribute_); + onChanged(); + } else { + itemAttributeBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearItemAttribute() { + if (itemAttributeBuilder_ == null) { + itemAttribute_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + itemAttributeBuilder_.clear(); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder removeItemAttribute(int index) { + if (itemAttributeBuilder_ == null) { + ensureItemAttributeIsMutable(); + itemAttribute_.remove(index); + onChanged(); + } else { + itemAttributeBuilder_.remove(index); + } + return this; + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.EventItemAttribute.Builder getItemAttributeBuilder( + int index) { + return getItemAttributeFieldBuilder().getBuilder(index); + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.EventItemAttributeOrBuilder getItemAttributeOrBuilder( + int index) { + if (itemAttributeBuilder_ == null) { + return itemAttribute_.get(index); } else { + return itemAttributeBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List + getItemAttributeOrBuilderList() { + if (itemAttributeBuilder_ != null) { + return itemAttributeBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(itemAttribute_); + } + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.EventItemAttribute.Builder addItemAttributeBuilder() { + return getItemAttributeFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.EventItemAttribute.getDefaultInstance()); + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.EventItemAttribute.Builder addItemAttributeBuilder( + int index) { + return getItemAttributeFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.EventItemAttribute.getDefaultInstance()); + } + /** + *
+     * Required. Item attributes of the event.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List + getItemAttributeBuilderList() { + return getItemAttributeFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.EventItemAttribute, com.google.ads.googleads.v11.common.EventItemAttribute.Builder, com.google.ads.googleads.v11.common.EventItemAttributeOrBuilder> + getItemAttributeFieldBuilder() { + if (itemAttributeBuilder_ == null) { + itemAttributeBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.EventItemAttribute, com.google.ads.googleads.v11.common.EventItemAttribute.Builder, com.google.ads.googleads.v11.common.EventItemAttributeOrBuilder>( + itemAttribute_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + itemAttribute_ = null; + } + return itemAttributeBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.common.EventAttribute) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.common.EventAttribute) + private static final com.google.ads.googleads.v11.common.EventAttribute DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.common.EventAttribute(); + } + + public static com.google.ads.googleads.v11.common.EventAttribute getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public EventAttribute parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new EventAttribute(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventAttribute getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventAttributeOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventAttributeOrBuilder.java new file mode 100644 index 0000000000..74bf489617 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventAttributeOrBuilder.java @@ -0,0 +1,101 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/offline_user_data.proto + +package com.google.ads.googleads.v11.common; + +public interface EventAttributeOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.common.EventAttribute) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Required. Advertiser defined event to be used for remarketing. The accepted values
+   * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+   * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The event. + */ + java.lang.String getEvent(); + /** + *
+   * Required. Advertiser defined event to be used for remarketing. The accepted values
+   * are “Viewed”, “Cart”, “Purchased” and “Recommended”.
+   * 
+ * + * string event = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for event. + */ + com.google.protobuf.ByteString + getEventBytes(); + + /** + *
+   * Required. Timestamp at which the event happened.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The eventDateTime. + */ + java.lang.String getEventDateTime(); + /** + *
+   * Required. Timestamp at which the event happened.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string event_date_time = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for eventDateTime. + */ + com.google.protobuf.ByteString + getEventDateTimeBytes(); + + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + java.util.List + getItemAttributeList(); + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v11.common.EventItemAttribute getItemAttribute(int index); + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + int getItemAttributeCount(); + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + java.util.List + getItemAttributeOrBuilderList(); + /** + *
+   * Required. Item attributes of the event.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventItemAttribute item_attribute = 3 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v11.common.EventItemAttributeOrBuilder getItemAttributeOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventItemAttribute.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventItemAttribute.java new file mode 100644 index 0000000000..e458891d5e --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventItemAttribute.java @@ -0,0 +1,602 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/offline_user_data.proto + +package com.google.ads.googleads.v11.common; + +/** + *
+ * Event Item attributes of the Customer Match.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.EventItemAttribute} + */ +public final class EventItemAttribute extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.common.EventItemAttribute) + EventItemAttributeOrBuilder { +private static final long serialVersionUID = 0L; + // Use EventItemAttribute.newBuilder() to construct. + private EventItemAttribute(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private EventItemAttribute() { + itemId_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new EventItemAttribute(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private EventItemAttribute( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + itemId_ = s; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventItemAttribute_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventItemAttribute_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.EventItemAttribute.class, com.google.ads.googleads.v11.common.EventItemAttribute.Builder.class); + } + + public static final int ITEM_ID_FIELD_NUMBER = 1; + private volatile java.lang.Object itemId_; + /** + *
+   * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+   * ID or GTIN (Global Trade Item Number).
+   * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @return The itemId. + */ + @java.lang.Override + public java.lang.String getItemId() { + java.lang.Object ref = itemId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + itemId_ = s; + return s; + } + } + /** + *
+   * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+   * ID or GTIN (Global Trade Item Number).
+   * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for itemId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getItemIdBytes() { + java.lang.Object ref = itemId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + itemId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(itemId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, itemId_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(itemId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, itemId_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.common.EventItemAttribute)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.common.EventItemAttribute other = (com.google.ads.googleads.v11.common.EventItemAttribute) obj; + + if (!getItemId() + .equals(other.getItemId())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + ITEM_ID_FIELD_NUMBER; + hash = (53 * hash) + getItemId().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.EventItemAttribute parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.common.EventItemAttribute prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Event Item attributes of the Customer Match.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.EventItemAttribute} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.common.EventItemAttribute) + com.google.ads.googleads.v11.common.EventItemAttributeOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventItemAttribute_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventItemAttribute_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.EventItemAttribute.class, com.google.ads.googleads.v11.common.EventItemAttribute.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.common.EventItemAttribute.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + itemId_ = ""; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.common.OfflineUserDataProto.internal_static_google_ads_googleads_v11_common_EventItemAttribute_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventItemAttribute getDefaultInstanceForType() { + return com.google.ads.googleads.v11.common.EventItemAttribute.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventItemAttribute build() { + com.google.ads.googleads.v11.common.EventItemAttribute result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventItemAttribute buildPartial() { + com.google.ads.googleads.v11.common.EventItemAttribute result = new com.google.ads.googleads.v11.common.EventItemAttribute(this); + result.itemId_ = itemId_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.common.EventItemAttribute) { + return mergeFrom((com.google.ads.googleads.v11.common.EventItemAttribute)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.common.EventItemAttribute other) { + if (other == com.google.ads.googleads.v11.common.EventItemAttribute.getDefaultInstance()) return this; + if (!other.getItemId().isEmpty()) { + itemId_ = other.itemId_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.common.EventItemAttribute parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.common.EventItemAttribute) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private java.lang.Object itemId_ = ""; + /** + *
+     * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+     * ID or GTIN (Global Trade Item Number).
+     * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @return The itemId. + */ + public java.lang.String getItemId() { + java.lang.Object ref = itemId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + itemId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+     * ID or GTIN (Global Trade Item Number).
+     * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for itemId. + */ + public com.google.protobuf.ByteString + getItemIdBytes() { + java.lang.Object ref = itemId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + itemId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+     * ID or GTIN (Global Trade Item Number).
+     * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @param value The itemId to set. + * @return This builder for chaining. + */ + public Builder setItemId( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + itemId_ = value; + onChanged(); + return this; + } + /** + *
+     * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+     * ID or GTIN (Global Trade Item Number).
+     * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @return This builder for chaining. + */ + public Builder clearItemId() { + + itemId_ = getDefaultInstance().getItemId(); + onChanged(); + return this; + } + /** + *
+     * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+     * ID or GTIN (Global Trade Item Number).
+     * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @param value The bytes for itemId to set. + * @return This builder for chaining. + */ + public Builder setItemIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + itemId_ = value; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.common.EventItemAttribute) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.common.EventItemAttribute) + private static final com.google.ads.googleads.v11.common.EventItemAttribute DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.common.EventItemAttribute(); + } + + public static com.google.ads.googleads.v11.common.EventItemAttribute getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public EventItemAttribute parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new EventItemAttribute(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.EventItemAttribute getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventItemAttributeOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventItemAttributeOrBuilder.java new file mode 100644 index 0000000000..3ae0fbc2f8 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/EventItemAttributeOrBuilder.java @@ -0,0 +1,31 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/offline_user_data.proto + +package com.google.ads.googleads.v11.common; + +public interface EventItemAttributeOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.common.EventItemAttribute) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+   * ID or GTIN (Global Trade Item Number).
+   * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @return The itemId. + */ + java.lang.String getItemId(); + /** + *
+   * Optional. A unique identifier of a product. It can be either the Merchant Center Item
+   * ID or GTIN (Global Trade Item Number).
+   * 
+ * + * string item_id = 1 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for itemId. + */ + com.google.protobuf.ByteString + getItemIdBytes(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleOperandInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleOperandInfo.java new file mode 100644 index 0000000000..aab31b1a85 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleOperandInfo.java @@ -0,0 +1,796 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/user_lists.proto + +package com.google.ads.googleads.v11.common; + +/** + *
+ * Flexible rule that wraps the common rule and a lookback window.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.FlexibleRuleOperandInfo} + */ +public final class FlexibleRuleOperandInfo extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.common.FlexibleRuleOperandInfo) + FlexibleRuleOperandInfoOrBuilder { +private static final long serialVersionUID = 0L; + // Use FlexibleRuleOperandInfo.newBuilder() to construct. + private FlexibleRuleOperandInfo(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private FlexibleRuleOperandInfo() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new FlexibleRuleOperandInfo(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FlexibleRuleOperandInfo( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + com.google.ads.googleads.v11.common.UserListRuleInfo.Builder subBuilder = null; + if (rule_ != null) { + subBuilder = rule_.toBuilder(); + } + rule_ = input.readMessage(com.google.ads.googleads.v11.common.UserListRuleInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(rule_); + rule_ = subBuilder.buildPartial(); + } + + break; + } + case 16: { + bitField0_ |= 0x00000001; + lookbackWindowDays_ = input.readInt64(); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.class, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder.class); + } + + private int bitField0_; + public static final int RULE_FIELD_NUMBER = 1; + private com.google.ads.googleads.v11.common.UserListRuleInfo rule_; + /** + *
+   * List of rule item groups that defines this rule.
+   * Rule item groups are grouped together.
+   * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + * @return Whether the rule field is set. + */ + @java.lang.Override + public boolean hasRule() { + return rule_ != null; + } + /** + *
+   * List of rule item groups that defines this rule.
+   * Rule item groups are grouped together.
+   * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + * @return The rule. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.UserListRuleInfo getRule() { + return rule_ == null ? com.google.ads.googleads.v11.common.UserListRuleInfo.getDefaultInstance() : rule_; + } + /** + *
+   * List of rule item groups that defines this rule.
+   * Rule item groups are grouped together.
+   * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.UserListRuleInfoOrBuilder getRuleOrBuilder() { + return getRule(); + } + + public static final int LOOKBACK_WINDOW_DAYS_FIELD_NUMBER = 2; + private long lookbackWindowDays_; + /** + *
+   * Lookback window for this rule in days. From now until X days ago.
+   * 
+ * + * optional int64 lookback_window_days = 2; + * @return Whether the lookbackWindowDays field is set. + */ + @java.lang.Override + public boolean hasLookbackWindowDays() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
+   * Lookback window for this rule in days. From now until X days ago.
+   * 
+ * + * optional int64 lookback_window_days = 2; + * @return The lookbackWindowDays. + */ + @java.lang.Override + public long getLookbackWindowDays() { + return lookbackWindowDays_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (rule_ != null) { + output.writeMessage(1, getRule()); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeInt64(2, lookbackWindowDays_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (rule_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getRule()); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(2, lookbackWindowDays_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo other = (com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo) obj; + + if (hasRule() != other.hasRule()) return false; + if (hasRule()) { + if (!getRule() + .equals(other.getRule())) return false; + } + if (hasLookbackWindowDays() != other.hasLookbackWindowDays()) return false; + if (hasLookbackWindowDays()) { + if (getLookbackWindowDays() + != other.getLookbackWindowDays()) return false; + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasRule()) { + hash = (37 * hash) + RULE_FIELD_NUMBER; + hash = (53 * hash) + getRule().hashCode(); + } + if (hasLookbackWindowDays()) { + hash = (37 * hash) + LOOKBACK_WINDOW_DAYS_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getLookbackWindowDays()); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Flexible rule that wraps the common rule and a lookback window.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.FlexibleRuleOperandInfo} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.common.FlexibleRuleOperandInfo) + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.class, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (ruleBuilder_ == null) { + rule_ = null; + } else { + rule_ = null; + ruleBuilder_ = null; + } + lookbackWindowDays_ = 0L; + bitField0_ = (bitField0_ & ~0x00000001); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getDefaultInstanceForType() { + return com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo build() { + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo buildPartial() { + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo result = new com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (ruleBuilder_ == null) { + result.rule_ = rule_; + } else { + result.rule_ = ruleBuilder_.build(); + } + if (((from_bitField0_ & 0x00000001) != 0)) { + result.lookbackWindowDays_ = lookbackWindowDays_; + to_bitField0_ |= 0x00000001; + } + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo) { + return mergeFrom((com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo other) { + if (other == com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.getDefaultInstance()) return this; + if (other.hasRule()) { + mergeRule(other.getRule()); + } + if (other.hasLookbackWindowDays()) { + setLookbackWindowDays(other.getLookbackWindowDays()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private com.google.ads.googleads.v11.common.UserListRuleInfo rule_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.UserListRuleInfo, com.google.ads.googleads.v11.common.UserListRuleInfo.Builder, com.google.ads.googleads.v11.common.UserListRuleInfoOrBuilder> ruleBuilder_; + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + * @return Whether the rule field is set. + */ + public boolean hasRule() { + return ruleBuilder_ != null || rule_ != null; + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + * @return The rule. + */ + public com.google.ads.googleads.v11.common.UserListRuleInfo getRule() { + if (ruleBuilder_ == null) { + return rule_ == null ? com.google.ads.googleads.v11.common.UserListRuleInfo.getDefaultInstance() : rule_; + } else { + return ruleBuilder_.getMessage(); + } + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + public Builder setRule(com.google.ads.googleads.v11.common.UserListRuleInfo value) { + if (ruleBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + rule_ = value; + onChanged(); + } else { + ruleBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + public Builder setRule( + com.google.ads.googleads.v11.common.UserListRuleInfo.Builder builderForValue) { + if (ruleBuilder_ == null) { + rule_ = builderForValue.build(); + onChanged(); + } else { + ruleBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + public Builder mergeRule(com.google.ads.googleads.v11.common.UserListRuleInfo value) { + if (ruleBuilder_ == null) { + if (rule_ != null) { + rule_ = + com.google.ads.googleads.v11.common.UserListRuleInfo.newBuilder(rule_).mergeFrom(value).buildPartial(); + } else { + rule_ = value; + } + onChanged(); + } else { + ruleBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + public Builder clearRule() { + if (ruleBuilder_ == null) { + rule_ = null; + onChanged(); + } else { + rule_ = null; + ruleBuilder_ = null; + } + + return this; + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + public com.google.ads.googleads.v11.common.UserListRuleInfo.Builder getRuleBuilder() { + + onChanged(); + return getRuleFieldBuilder().getBuilder(); + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + public com.google.ads.googleads.v11.common.UserListRuleInfoOrBuilder getRuleOrBuilder() { + if (ruleBuilder_ != null) { + return ruleBuilder_.getMessageOrBuilder(); + } else { + return rule_ == null ? + com.google.ads.googleads.v11.common.UserListRuleInfo.getDefaultInstance() : rule_; + } + } + /** + *
+     * List of rule item groups that defines this rule.
+     * Rule item groups are grouped together.
+     * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.UserListRuleInfo, com.google.ads.googleads.v11.common.UserListRuleInfo.Builder, com.google.ads.googleads.v11.common.UserListRuleInfoOrBuilder> + getRuleFieldBuilder() { + if (ruleBuilder_ == null) { + ruleBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.UserListRuleInfo, com.google.ads.googleads.v11.common.UserListRuleInfo.Builder, com.google.ads.googleads.v11.common.UserListRuleInfoOrBuilder>( + getRule(), + getParentForChildren(), + isClean()); + rule_ = null; + } + return ruleBuilder_; + } + + private long lookbackWindowDays_ ; + /** + *
+     * Lookback window for this rule in days. From now until X days ago.
+     * 
+ * + * optional int64 lookback_window_days = 2; + * @return Whether the lookbackWindowDays field is set. + */ + @java.lang.Override + public boolean hasLookbackWindowDays() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
+     * Lookback window for this rule in days. From now until X days ago.
+     * 
+ * + * optional int64 lookback_window_days = 2; + * @return The lookbackWindowDays. + */ + @java.lang.Override + public long getLookbackWindowDays() { + return lookbackWindowDays_; + } + /** + *
+     * Lookback window for this rule in days. From now until X days ago.
+     * 
+ * + * optional int64 lookback_window_days = 2; + * @param value The lookbackWindowDays to set. + * @return This builder for chaining. + */ + public Builder setLookbackWindowDays(long value) { + bitField0_ |= 0x00000001; + lookbackWindowDays_ = value; + onChanged(); + return this; + } + /** + *
+     * Lookback window for this rule in days. From now until X days ago.
+     * 
+ * + * optional int64 lookback_window_days = 2; + * @return This builder for chaining. + */ + public Builder clearLookbackWindowDays() { + bitField0_ = (bitField0_ & ~0x00000001); + lookbackWindowDays_ = 0L; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.common.FlexibleRuleOperandInfo) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.common.FlexibleRuleOperandInfo) + private static final com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo(); + } + + public static com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public FlexibleRuleOperandInfo parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FlexibleRuleOperandInfo(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleOperandInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleOperandInfoOrBuilder.java new file mode 100644 index 0000000000..78291af7be --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleOperandInfoOrBuilder.java @@ -0,0 +1,58 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/user_lists.proto + +package com.google.ads.googleads.v11.common; + +public interface FlexibleRuleOperandInfoOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.common.FlexibleRuleOperandInfo) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * List of rule item groups that defines this rule.
+   * Rule item groups are grouped together.
+   * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + * @return Whether the rule field is set. + */ + boolean hasRule(); + /** + *
+   * List of rule item groups that defines this rule.
+   * Rule item groups are grouped together.
+   * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + * @return The rule. + */ + com.google.ads.googleads.v11.common.UserListRuleInfo getRule(); + /** + *
+   * List of rule item groups that defines this rule.
+   * Rule item groups are grouped together.
+   * 
+ * + * .google.ads.googleads.v11.common.UserListRuleInfo rule = 1; + */ + com.google.ads.googleads.v11.common.UserListRuleInfoOrBuilder getRuleOrBuilder(); + + /** + *
+   * Lookback window for this rule in days. From now until X days ago.
+   * 
+ * + * optional int64 lookback_window_days = 2; + * @return Whether the lookbackWindowDays field is set. + */ + boolean hasLookbackWindowDays(); + /** + *
+   * Lookback window for this rule in days. From now until X days ago.
+   * 
+ * + * optional int64 lookback_window_days = 2; + * @return The lookbackWindowDays. + */ + long getLookbackWindowDays(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleUserListInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleUserListInfo.java new file mode 100644 index 0000000000..2924451447 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleUserListInfo.java @@ -0,0 +1,1505 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/user_lists.proto + +package com.google.ads.googleads.v11.common; + +/** + *
+ * Flexible rule representation of visitors with one or multiple actions.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.FlexibleRuleUserListInfo} + */ +public final class FlexibleRuleUserListInfo extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.common.FlexibleRuleUserListInfo) + FlexibleRuleUserListInfoOrBuilder { +private static final long serialVersionUID = 0L; + // Use FlexibleRuleUserListInfo.newBuilder() to construct. + private FlexibleRuleUserListInfo(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private FlexibleRuleUserListInfo() { + inclusiveRuleOperator_ = 0; + inclusiveOperands_ = java.util.Collections.emptyList(); + exclusiveOperands_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new FlexibleRuleUserListInfo(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private FlexibleRuleUserListInfo( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + int rawValue = input.readEnum(); + + inclusiveRuleOperator_ = rawValue; + break; + } + case 18: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + inclusiveOperands_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + inclusiveOperands_.add( + input.readMessage(com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.parser(), extensionRegistry)); + break; + } + case 26: { + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + exclusiveOperands_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000002; + } + exclusiveOperands_.add( + input.readMessage(com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + inclusiveOperands_ = java.util.Collections.unmodifiableList(inclusiveOperands_); + } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + exclusiveOperands_ = java.util.Collections.unmodifiableList(exclusiveOperands_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.class, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder.class); + } + + public static final int INCLUSIVE_RULE_OPERATOR_FIELD_NUMBER = 1; + private int inclusiveRuleOperator_; + /** + *
+   * Operator that defines how the inclusive operands are combined.
+   * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @return The enum numeric value on the wire for inclusiveRuleOperator. + */ + @java.lang.Override public int getInclusiveRuleOperatorValue() { + return inclusiveRuleOperator_; + } + /** + *
+   * Operator that defines how the inclusive operands are combined.
+   * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @return The inclusiveRuleOperator. + */ + @java.lang.Override public com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator getInclusiveRuleOperator() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator result = com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator.valueOf(inclusiveRuleOperator_); + return result == null ? com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator.UNRECOGNIZED : result; + } + + public static final int INCLUSIVE_OPERANDS_FIELD_NUMBER = 2; + private java.util.List inclusiveOperands_; + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + @java.lang.Override + public java.util.List getInclusiveOperandsList() { + return inclusiveOperands_; + } + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + @java.lang.Override + public java.util.List + getInclusiveOperandsOrBuilderList() { + return inclusiveOperands_; + } + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + @java.lang.Override + public int getInclusiveOperandsCount() { + return inclusiveOperands_.size(); + } + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getInclusiveOperands(int index) { + return inclusiveOperands_.get(index); + } + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder getInclusiveOperandsOrBuilder( + int index) { + return inclusiveOperands_.get(index); + } + + public static final int EXCLUSIVE_OPERANDS_FIELD_NUMBER = 3; + private java.util.List exclusiveOperands_; + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + @java.lang.Override + public java.util.List getExclusiveOperandsList() { + return exclusiveOperands_; + } + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + @java.lang.Override + public java.util.List + getExclusiveOperandsOrBuilderList() { + return exclusiveOperands_; + } + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + @java.lang.Override + public int getExclusiveOperandsCount() { + return exclusiveOperands_.size(); + } + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getExclusiveOperands(int index) { + return exclusiveOperands_.get(index); + } + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder getExclusiveOperandsOrBuilder( + int index) { + return exclusiveOperands_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (inclusiveRuleOperator_ != com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator.UNSPECIFIED.getNumber()) { + output.writeEnum(1, inclusiveRuleOperator_); + } + for (int i = 0; i < inclusiveOperands_.size(); i++) { + output.writeMessage(2, inclusiveOperands_.get(i)); + } + for (int i = 0; i < exclusiveOperands_.size(); i++) { + output.writeMessage(3, exclusiveOperands_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (inclusiveRuleOperator_ != com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(1, inclusiveRuleOperator_); + } + for (int i = 0; i < inclusiveOperands_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, inclusiveOperands_.get(i)); + } + for (int i = 0; i < exclusiveOperands_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, exclusiveOperands_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo other = (com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo) obj; + + if (inclusiveRuleOperator_ != other.inclusiveRuleOperator_) return false; + if (!getInclusiveOperandsList() + .equals(other.getInclusiveOperandsList())) return false; + if (!getExclusiveOperandsList() + .equals(other.getExclusiveOperandsList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + INCLUSIVE_RULE_OPERATOR_FIELD_NUMBER; + hash = (53 * hash) + inclusiveRuleOperator_; + if (getInclusiveOperandsCount() > 0) { + hash = (37 * hash) + INCLUSIVE_OPERANDS_FIELD_NUMBER; + hash = (53 * hash) + getInclusiveOperandsList().hashCode(); + } + if (getExclusiveOperandsCount() > 0) { + hash = (37 * hash) + EXCLUSIVE_OPERANDS_FIELD_NUMBER; + hash = (53 * hash) + getExclusiveOperandsList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Flexible rule representation of visitors with one or multiple actions.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.common.FlexibleRuleUserListInfo} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.common.FlexibleRuleUserListInfo) + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfoOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.class, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getInclusiveOperandsFieldBuilder(); + getExclusiveOperandsFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + inclusiveRuleOperator_ = 0; + + if (inclusiveOperandsBuilder_ == null) { + inclusiveOperands_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + inclusiveOperandsBuilder_.clear(); + } + if (exclusiveOperandsBuilder_ == null) { + exclusiveOperands_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + } else { + exclusiveOperandsBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.common.UserListsProto.internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo getDefaultInstanceForType() { + return com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo build() { + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo buildPartial() { + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo result = new com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo(this); + int from_bitField0_ = bitField0_; + result.inclusiveRuleOperator_ = inclusiveRuleOperator_; + if (inclusiveOperandsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + inclusiveOperands_ = java.util.Collections.unmodifiableList(inclusiveOperands_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.inclusiveOperands_ = inclusiveOperands_; + } else { + result.inclusiveOperands_ = inclusiveOperandsBuilder_.build(); + } + if (exclusiveOperandsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + exclusiveOperands_ = java.util.Collections.unmodifiableList(exclusiveOperands_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.exclusiveOperands_ = exclusiveOperands_; + } else { + result.exclusiveOperands_ = exclusiveOperandsBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo) { + return mergeFrom((com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo other) { + if (other == com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.getDefaultInstance()) return this; + if (other.inclusiveRuleOperator_ != 0) { + setInclusiveRuleOperatorValue(other.getInclusiveRuleOperatorValue()); + } + if (inclusiveOperandsBuilder_ == null) { + if (!other.inclusiveOperands_.isEmpty()) { + if (inclusiveOperands_.isEmpty()) { + inclusiveOperands_ = other.inclusiveOperands_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.addAll(other.inclusiveOperands_); + } + onChanged(); + } + } else { + if (!other.inclusiveOperands_.isEmpty()) { + if (inclusiveOperandsBuilder_.isEmpty()) { + inclusiveOperandsBuilder_.dispose(); + inclusiveOperandsBuilder_ = null; + inclusiveOperands_ = other.inclusiveOperands_; + bitField0_ = (bitField0_ & ~0x00000001); + inclusiveOperandsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getInclusiveOperandsFieldBuilder() : null; + } else { + inclusiveOperandsBuilder_.addAllMessages(other.inclusiveOperands_); + } + } + } + if (exclusiveOperandsBuilder_ == null) { + if (!other.exclusiveOperands_.isEmpty()) { + if (exclusiveOperands_.isEmpty()) { + exclusiveOperands_ = other.exclusiveOperands_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.addAll(other.exclusiveOperands_); + } + onChanged(); + } + } else { + if (!other.exclusiveOperands_.isEmpty()) { + if (exclusiveOperandsBuilder_.isEmpty()) { + exclusiveOperandsBuilder_.dispose(); + exclusiveOperandsBuilder_ = null; + exclusiveOperands_ = other.exclusiveOperands_; + bitField0_ = (bitField0_ & ~0x00000002); + exclusiveOperandsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getExclusiveOperandsFieldBuilder() : null; + } else { + exclusiveOperandsBuilder_.addAllMessages(other.exclusiveOperands_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private int inclusiveRuleOperator_ = 0; + /** + *
+     * Operator that defines how the inclusive operands are combined.
+     * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @return The enum numeric value on the wire for inclusiveRuleOperator. + */ + @java.lang.Override public int getInclusiveRuleOperatorValue() { + return inclusiveRuleOperator_; + } + /** + *
+     * Operator that defines how the inclusive operands are combined.
+     * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @param value The enum numeric value on the wire for inclusiveRuleOperator to set. + * @return This builder for chaining. + */ + public Builder setInclusiveRuleOperatorValue(int value) { + + inclusiveRuleOperator_ = value; + onChanged(); + return this; + } + /** + *
+     * Operator that defines how the inclusive operands are combined.
+     * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @return The inclusiveRuleOperator. + */ + @java.lang.Override + public com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator getInclusiveRuleOperator() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator result = com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator.valueOf(inclusiveRuleOperator_); + return result == null ? com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator.UNRECOGNIZED : result; + } + /** + *
+     * Operator that defines how the inclusive operands are combined.
+     * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @param value The inclusiveRuleOperator to set. + * @return This builder for chaining. + */ + public Builder setInclusiveRuleOperator(com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator value) { + if (value == null) { + throw new NullPointerException(); + } + + inclusiveRuleOperator_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
+     * Operator that defines how the inclusive operands are combined.
+     * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @return This builder for chaining. + */ + public Builder clearInclusiveRuleOperator() { + + inclusiveRuleOperator_ = 0; + onChanged(); + return this; + } + + private java.util.List inclusiveOperands_ = + java.util.Collections.emptyList(); + private void ensureInclusiveOperandsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + inclusiveOperands_ = new java.util.ArrayList(inclusiveOperands_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder> inclusiveOperandsBuilder_; + + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public java.util.List getInclusiveOperandsList() { + if (inclusiveOperandsBuilder_ == null) { + return java.util.Collections.unmodifiableList(inclusiveOperands_); + } else { + return inclusiveOperandsBuilder_.getMessageList(); + } + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public int getInclusiveOperandsCount() { + if (inclusiveOperandsBuilder_ == null) { + return inclusiveOperands_.size(); + } else { + return inclusiveOperandsBuilder_.getCount(); + } + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getInclusiveOperands(int index) { + if (inclusiveOperandsBuilder_ == null) { + return inclusiveOperands_.get(index); + } else { + return inclusiveOperandsBuilder_.getMessage(index); + } + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder setInclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo value) { + if (inclusiveOperandsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.set(index, value); + onChanged(); + } else { + inclusiveOperandsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder setInclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder builderForValue) { + if (inclusiveOperandsBuilder_ == null) { + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.set(index, builderForValue.build()); + onChanged(); + } else { + inclusiveOperandsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder addInclusiveOperands(com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo value) { + if (inclusiveOperandsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.add(value); + onChanged(); + } else { + inclusiveOperandsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder addInclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo value) { + if (inclusiveOperandsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.add(index, value); + onChanged(); + } else { + inclusiveOperandsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder addInclusiveOperands( + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder builderForValue) { + if (inclusiveOperandsBuilder_ == null) { + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.add(builderForValue.build()); + onChanged(); + } else { + inclusiveOperandsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder addInclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder builderForValue) { + if (inclusiveOperandsBuilder_ == null) { + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.add(index, builderForValue.build()); + onChanged(); + } else { + inclusiveOperandsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder addAllInclusiveOperands( + java.lang.Iterable values) { + if (inclusiveOperandsBuilder_ == null) { + ensureInclusiveOperandsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, inclusiveOperands_); + onChanged(); + } else { + inclusiveOperandsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder clearInclusiveOperands() { + if (inclusiveOperandsBuilder_ == null) { + inclusiveOperands_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + inclusiveOperandsBuilder_.clear(); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public Builder removeInclusiveOperands(int index) { + if (inclusiveOperandsBuilder_ == null) { + ensureInclusiveOperandsIsMutable(); + inclusiveOperands_.remove(index); + onChanged(); + } else { + inclusiveOperandsBuilder_.remove(index); + } + return this; + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder getInclusiveOperandsBuilder( + int index) { + return getInclusiveOperandsFieldBuilder().getBuilder(index); + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder getInclusiveOperandsOrBuilder( + int index) { + if (inclusiveOperandsBuilder_ == null) { + return inclusiveOperands_.get(index); } else { + return inclusiveOperandsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public java.util.List + getInclusiveOperandsOrBuilderList() { + if (inclusiveOperandsBuilder_ != null) { + return inclusiveOperandsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(inclusiveOperands_); + } + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder addInclusiveOperandsBuilder() { + return getInclusiveOperandsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.getDefaultInstance()); + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder addInclusiveOperandsBuilder( + int index) { + return getInclusiveOperandsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.getDefaultInstance()); + } + /** + *
+     * Actions that are located on the inclusive side.
+     * These are joined together by either AND/OR as specified by the
+     * inclusive_rule_operator.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + public java.util.List + getInclusiveOperandsBuilderList() { + return getInclusiveOperandsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder> + getInclusiveOperandsFieldBuilder() { + if (inclusiveOperandsBuilder_ == null) { + inclusiveOperandsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder>( + inclusiveOperands_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + inclusiveOperands_ = null; + } + return inclusiveOperandsBuilder_; + } + + private java.util.List exclusiveOperands_ = + java.util.Collections.emptyList(); + private void ensureExclusiveOperandsIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + exclusiveOperands_ = new java.util.ArrayList(exclusiveOperands_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder> exclusiveOperandsBuilder_; + + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public java.util.List getExclusiveOperandsList() { + if (exclusiveOperandsBuilder_ == null) { + return java.util.Collections.unmodifiableList(exclusiveOperands_); + } else { + return exclusiveOperandsBuilder_.getMessageList(); + } + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public int getExclusiveOperandsCount() { + if (exclusiveOperandsBuilder_ == null) { + return exclusiveOperands_.size(); + } else { + return exclusiveOperandsBuilder_.getCount(); + } + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getExclusiveOperands(int index) { + if (exclusiveOperandsBuilder_ == null) { + return exclusiveOperands_.get(index); + } else { + return exclusiveOperandsBuilder_.getMessage(index); + } + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder setExclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo value) { + if (exclusiveOperandsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.set(index, value); + onChanged(); + } else { + exclusiveOperandsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder setExclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder builderForValue) { + if (exclusiveOperandsBuilder_ == null) { + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.set(index, builderForValue.build()); + onChanged(); + } else { + exclusiveOperandsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder addExclusiveOperands(com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo value) { + if (exclusiveOperandsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.add(value); + onChanged(); + } else { + exclusiveOperandsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder addExclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo value) { + if (exclusiveOperandsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.add(index, value); + onChanged(); + } else { + exclusiveOperandsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder addExclusiveOperands( + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder builderForValue) { + if (exclusiveOperandsBuilder_ == null) { + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.add(builderForValue.build()); + onChanged(); + } else { + exclusiveOperandsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder addExclusiveOperands( + int index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder builderForValue) { + if (exclusiveOperandsBuilder_ == null) { + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.add(index, builderForValue.build()); + onChanged(); + } else { + exclusiveOperandsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder addAllExclusiveOperands( + java.lang.Iterable values) { + if (exclusiveOperandsBuilder_ == null) { + ensureExclusiveOperandsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, exclusiveOperands_); + onChanged(); + } else { + exclusiveOperandsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder clearExclusiveOperands() { + if (exclusiveOperandsBuilder_ == null) { + exclusiveOperands_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + exclusiveOperandsBuilder_.clear(); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public Builder removeExclusiveOperands(int index) { + if (exclusiveOperandsBuilder_ == null) { + ensureExclusiveOperandsIsMutable(); + exclusiveOperands_.remove(index); + onChanged(); + } else { + exclusiveOperandsBuilder_.remove(index); + } + return this; + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder getExclusiveOperandsBuilder( + int index) { + return getExclusiveOperandsFieldBuilder().getBuilder(index); + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder getExclusiveOperandsOrBuilder( + int index) { + if (exclusiveOperandsBuilder_ == null) { + return exclusiveOperands_.get(index); } else { + return exclusiveOperandsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public java.util.List + getExclusiveOperandsOrBuilderList() { + if (exclusiveOperandsBuilder_ != null) { + return exclusiveOperandsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(exclusiveOperands_); + } + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder addExclusiveOperandsBuilder() { + return getExclusiveOperandsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.getDefaultInstance()); + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder addExclusiveOperandsBuilder( + int index) { + return getExclusiveOperandsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.getDefaultInstance()); + } + /** + *
+     * Actions that are located on the exclusive side.
+     * These are joined together with OR.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + public java.util.List + getExclusiveOperandsBuilderList() { + return getExclusiveOperandsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder> + getExclusiveOperandsFieldBuilder() { + if (exclusiveOperandsBuilder_ == null) { + exclusiveOperandsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder>( + exclusiveOperands_, + ((bitField0_ & 0x00000002) != 0), + getParentForChildren(), + isClean()); + exclusiveOperands_ = null; + } + return exclusiveOperandsBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.common.FlexibleRuleUserListInfo) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.common.FlexibleRuleUserListInfo) + private static final com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo(); + } + + public static com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public FlexibleRuleUserListInfo parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new FlexibleRuleUserListInfo(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleUserListInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleUserListInfoOrBuilder.java new file mode 100644 index 0000000000..a9672a2544 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FlexibleRuleUserListInfoOrBuilder.java @@ -0,0 +1,131 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/common/user_lists.proto + +package com.google.ads.googleads.v11.common; + +public interface FlexibleRuleUserListInfoOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.common.FlexibleRuleUserListInfo) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Operator that defines how the inclusive operands are combined.
+   * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @return The enum numeric value on the wire for inclusiveRuleOperator. + */ + int getInclusiveRuleOperatorValue(); + /** + *
+   * Operator that defines how the inclusive operands are combined.
+   * 
+ * + * .google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator inclusive_rule_operator = 1; + * @return The inclusiveRuleOperator. + */ + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator getInclusiveRuleOperator(); + + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + java.util.List + getInclusiveOperandsList(); + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getInclusiveOperands(int index); + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + int getInclusiveOperandsCount(); + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + java.util.List + getInclusiveOperandsOrBuilderList(); + /** + *
+   * Actions that are located on the inclusive side.
+   * These are joined together by either AND/OR as specified by the
+   * inclusive_rule_operator.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo inclusive_operands = 2; + */ + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder getInclusiveOperandsOrBuilder( + int index); + + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + java.util.List + getExclusiveOperandsList(); + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfo getExclusiveOperands(int index); + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + int getExclusiveOperandsCount(); + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + java.util.List + getExclusiveOperandsOrBuilderList(); + /** + *
+   * Actions that are located on the exclusive side.
+   * These are joined together with OR.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.FlexibleRuleOperandInfo exclusive_operands = 3; + */ + com.google.ads.googleads.v11.common.FlexibleRuleOperandInfoOrBuilder getExclusiveOperandsOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKey.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKey.java index 41b798f667..3cbfba8bff 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKey.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKey.java @@ -119,8 +119,8 @@ private FrequencyCapKey( private int level_; /** *
-   * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-   * The cap is applied to all the entities of this level.
+   * The level on which the cap is to be applied (for example, ad group ad, ad
+   * group). The cap is applied to all the entities of this level.
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -131,8 +131,8 @@ private FrequencyCapKey( } /** *
-   * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-   * The cap is applied to all the entities of this level.
+   * The level on which the cap is to be applied (for example, ad group ad, ad
+   * group). The cap is applied to all the entities of this level.
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -148,7 +148,7 @@ private FrequencyCapKey( private int eventType_; /** *
-   * The type of event that the cap applies to (e.g. impression).
+   * The type of event that the cap applies to (for example, impression).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -159,7 +159,7 @@ private FrequencyCapKey( } /** *
-   * The type of event that the cap applies to (e.g. impression).
+   * The type of event that the cap applies to (for example, impression).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -175,7 +175,7 @@ private FrequencyCapKey( private int timeUnit_; /** *
-   * Unit of time the cap is defined at (e.g. day, week).
+   * Unit of time the cap is defined at (for example, day, week).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; @@ -186,7 +186,7 @@ private FrequencyCapKey( } /** *
-   * Unit of time the cap is defined at (e.g. day, week).
+   * Unit of time the cap is defined at (for example, day, week).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; @@ -595,8 +595,8 @@ public Builder mergeFrom( private int level_ = 0; /** *
-     * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-     * The cap is applied to all the entities of this level.
+     * The level on which the cap is to be applied (for example, ad group ad, ad
+     * group). The cap is applied to all the entities of this level.
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -607,8 +607,8 @@ public Builder mergeFrom( } /** *
-     * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-     * The cap is applied to all the entities of this level.
+     * The level on which the cap is to be applied (for example, ad group ad, ad
+     * group). The cap is applied to all the entities of this level.
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -623,8 +623,8 @@ public Builder setLevelValue(int value) { } /** *
-     * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-     * The cap is applied to all the entities of this level.
+     * The level on which the cap is to be applied (for example, ad group ad, ad
+     * group). The cap is applied to all the entities of this level.
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -638,8 +638,8 @@ public com.google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLeve } /** *
-     * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-     * The cap is applied to all the entities of this level.
+     * The level on which the cap is to be applied (for example, ad group ad, ad
+     * group). The cap is applied to all the entities of this level.
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -657,8 +657,8 @@ public Builder setLevel(com.google.ads.googleads.v11.enums.FrequencyCapLevelEnum } /** *
-     * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-     * The cap is applied to all the entities of this level.
+     * The level on which the cap is to be applied (for example, ad group ad, ad
+     * group). The cap is applied to all the entities of this level.
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -674,7 +674,7 @@ public Builder clearLevel() { private int eventType_ = 0; /** *
-     * The type of event that the cap applies to (e.g. impression).
+     * The type of event that the cap applies to (for example, impression).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -685,7 +685,7 @@ public Builder clearLevel() { } /** *
-     * The type of event that the cap applies to (e.g. impression).
+     * The type of event that the cap applies to (for example, impression).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -700,7 +700,7 @@ public Builder setEventTypeValue(int value) { } /** *
-     * The type of event that the cap applies to (e.g. impression).
+     * The type of event that the cap applies to (for example, impression).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -714,7 +714,7 @@ public com.google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCap } /** *
-     * The type of event that the cap applies to (e.g. impression).
+     * The type of event that the cap applies to (for example, impression).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -732,7 +732,7 @@ public Builder setEventType(com.google.ads.googleads.v11.enums.FrequencyCapEvent } /** *
-     * The type of event that the cap applies to (e.g. impression).
+     * The type of event that the cap applies to (for example, impression).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -748,7 +748,7 @@ public Builder clearEventType() { private int timeUnit_ = 0; /** *
-     * Unit of time the cap is defined at (e.g. day, week).
+     * Unit of time the cap is defined at (for example, day, week).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; @@ -759,7 +759,7 @@ public Builder clearEventType() { } /** *
-     * Unit of time the cap is defined at (e.g. day, week).
+     * Unit of time the cap is defined at (for example, day, week).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; @@ -774,7 +774,7 @@ public Builder setTimeUnitValue(int value) { } /** *
-     * Unit of time the cap is defined at (e.g. day, week).
+     * Unit of time the cap is defined at (for example, day, week).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; @@ -788,7 +788,7 @@ public com.google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapT } /** *
-     * Unit of time the cap is defined at (e.g. day, week).
+     * Unit of time the cap is defined at (for example, day, week).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; @@ -806,7 +806,7 @@ public Builder setTimeUnit(com.google.ads.googleads.v11.enums.FrequencyCapTimeUn } /** *
-     * Unit of time the cap is defined at (e.g. day, week).
+     * Unit of time the cap is defined at (for example, day, week).
      * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKeyOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKeyOrBuilder.java index 67bbcdf1d5..e28c0fde4d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKeyOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/FrequencyCapKeyOrBuilder.java @@ -9,8 +9,8 @@ public interface FrequencyCapKeyOrBuilder extends /** *
-   * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-   * The cap is applied to all the entities of this level.
+   * The level on which the cap is to be applied (for example, ad group ad, ad
+   * group). The cap is applied to all the entities of this level.
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -19,8 +19,8 @@ public interface FrequencyCapKeyOrBuilder extends int getLevelValue(); /** *
-   * The level on which the cap is to be applied (e.g. ad group ad, ad group).
-   * The cap is applied to all the entities of this level.
+   * The level on which the cap is to be applied (for example, ad group ad, ad
+   * group). The cap is applied to all the entities of this level.
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapLevelEnum.FrequencyCapLevel level = 1; @@ -30,7 +30,7 @@ public interface FrequencyCapKeyOrBuilder extends /** *
-   * The type of event that the cap applies to (e.g. impression).
+   * The type of event that the cap applies to (for example, impression).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -39,7 +39,7 @@ public interface FrequencyCapKeyOrBuilder extends int getEventTypeValue(); /** *
-   * The type of event that the cap applies to (e.g. impression).
+   * The type of event that the cap applies to (for example, impression).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType event_type = 3; @@ -49,7 +49,7 @@ public interface FrequencyCapKeyOrBuilder extends /** *
-   * Unit of time the cap is defined at (e.g. day, week).
+   * Unit of time the cap is defined at (for example, day, week).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; @@ -58,7 +58,7 @@ public interface FrequencyCapKeyOrBuilder extends int getTimeUnitValue(); /** *
-   * Unit of time the cap is defined at (e.g. day, week).
+   * Unit of time the cap is defined at (for example, day, week).
    * 
* * .google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit time_unit = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/GenderDimension.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/GenderDimension.java index fde25c795c..0fdeee6948 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/GenderDimension.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/GenderDimension.java @@ -729,8 +729,8 @@ public int getGendersValue(int index) { * * * repeated .google.ads.googleads.v11.enums.GenderTypeEnum.GenderType genders = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of genders at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for genders to set. * @return This builder for chaining. */ public Builder setGendersValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HotelDateSelectionTypeInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HotelDateSelectionTypeInfo.java index a7f30dccb7..9642a7f772 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HotelDateSelectionTypeInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HotelDateSelectionTypeInfo.java @@ -5,7 +5,7 @@ /** *
- * Criterion for hotel date selection (default dates vs. user selected).
+ * Criterion for hotel date selection (default dates versus user selected).
  * 
* * Protobuf type {@code google.ads.googleads.v11.common.HotelDateSelectionTypeInfo} @@ -276,7 +276,7 @@ protected Builder newBuilderForType( } /** *
-   * Criterion for hotel date selection (default dates vs. user selected).
+   * Criterion for hotel date selection (default dates versus user selected).
    * 
* * Protobuf type {@code google.ads.googleads.v11.common.HotelDateSelectionTypeInfo} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HouseholdIncomeDimension.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HouseholdIncomeDimension.java index 67143310e7..b1b7233f79 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HouseholdIncomeDimension.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/HouseholdIncomeDimension.java @@ -729,8 +729,8 @@ public int getIncomeRangesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.IncomeRangeTypeEnum.IncomeRangeType income_ranges = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of incomeRanges at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for incomeRanges to set. * @return This builder for chaining. */ public Builder setIncomeRangesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/KeywordPlanAggregateMetrics.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/KeywordPlanAggregateMetrics.java index c279c04479..de742cb58f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/KeywordPlanAggregateMetrics.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/KeywordPlanAggregateMetrics.java @@ -668,8 +668,8 @@ public int getAggregateMetricTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType aggregate_metric_types = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of aggregateMetricTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for aggregateMetricTypes to set. * @return This builder for chaining. */ public Builder setAggregateMetricTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAsset.java index e73a1c188d..e67150245a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAsset.java @@ -877,7 +877,8 @@ public java.lang.String getBackgroundImageAsset() { private int desiredIntent_; /** *
-   * Desired intent for the lead form, e.g. more volume or more qualified.
+   * Chosen intent for the lead form, for example, more volume or more
+   * qualified.
    * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; @@ -888,7 +889,8 @@ public java.lang.String getBackgroundImageAsset() { } /** *
-   * Desired intent for the lead form, e.g. more volume or more qualified.
+   * Chosen intent for the lead form, for example, more volume or more
+   * qualified.
    * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; @@ -3605,7 +3607,8 @@ public Builder setBackgroundImageAssetBytes( private int desiredIntent_ = 0; /** *
-     * Desired intent for the lead form, e.g. more volume or more qualified.
+     * Chosen intent for the lead form, for example, more volume or more
+     * qualified.
      * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; @@ -3616,7 +3619,8 @@ public Builder setBackgroundImageAssetBytes( } /** *
-     * Desired intent for the lead form, e.g. more volume or more qualified.
+     * Chosen intent for the lead form, for example, more volume or more
+     * qualified.
      * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; @@ -3631,7 +3635,8 @@ public Builder setDesiredIntentValue(int value) { } /** *
-     * Desired intent for the lead form, e.g. more volume or more qualified.
+     * Chosen intent for the lead form, for example, more volume or more
+     * qualified.
      * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; @@ -3645,7 +3650,8 @@ public com.google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesi } /** *
-     * Desired intent for the lead form, e.g. more volume or more qualified.
+     * Chosen intent for the lead form, for example, more volume or more
+     * qualified.
      * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; @@ -3663,7 +3669,8 @@ public Builder setDesiredIntent(com.google.ads.googleads.v11.enums.LeadFormDesir } /** *
-     * Desired intent for the lead form, e.g. more volume or more qualified.
+     * Chosen intent for the lead form, for example, more volume or more
+     * qualified.
      * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAssetOrBuilder.java index 687c0d97e8..c43018e27a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormAssetOrBuilder.java @@ -390,7 +390,8 @@ com.google.ads.googleads.v11.common.LeadFormDeliveryMethodOrBuilder getDeliveryM /** *
-   * Desired intent for the lead form, e.g. more volume or more qualified.
+   * Chosen intent for the lead form, for example, more volume or more
+   * qualified.
    * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; @@ -399,7 +400,8 @@ com.google.ads.googleads.v11.common.LeadFormDeliveryMethodOrBuilder getDeliveryM int getDesiredIntentValue(); /** *
-   * Desired intent for the lead form, e.g. more volume or more qualified.
+   * Chosen intent for the lead form, for example, more volume or more
+   * qualified.
    * 
* * .google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent desired_intent = 21; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionField.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionField.java index 69b0ce4bc1..221b376a46 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionField.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionField.java @@ -150,7 +150,7 @@ public int getNumber() { private volatile java.lang.Object customQuestionText_; /** *
-   * The exact custom question field text (e.g. "Do you own a car?").
+   * The exact custom question field text (for example, "Do you own a car?").
    * 
* * string custom_question_text = 1; @@ -171,7 +171,7 @@ public java.lang.String getCustomQuestionText() { } /** *
-   * The exact custom question field text (e.g. "Do you own a car?").
+   * The exact custom question field text (for example, "Do you own a car?").
    * 
* * string custom_question_text = 1; @@ -605,7 +605,7 @@ public Builder clearAnswers() { private java.lang.Object customQuestionText_ = ""; /** *
-     * The exact custom question field text (e.g. "Do you own a car?").
+     * The exact custom question field text (for example, "Do you own a car?").
      * 
* * string custom_question_text = 1; @@ -625,7 +625,7 @@ public java.lang.String getCustomQuestionText() { } /** *
-     * The exact custom question field text (e.g. "Do you own a car?").
+     * The exact custom question field text (for example, "Do you own a car?").
      * 
* * string custom_question_text = 1; @@ -646,7 +646,7 @@ public java.lang.String getCustomQuestionText() { } /** *
-     * The exact custom question field text (e.g. "Do you own a car?").
+     * The exact custom question field text (for example, "Do you own a car?").
      * 
* * string custom_question_text = 1; @@ -665,7 +665,7 @@ public Builder setCustomQuestionText( } /** *
-     * The exact custom question field text (e.g. "Do you own a car?").
+     * The exact custom question field text (for example, "Do you own a car?").
      * 
* * string custom_question_text = 1; @@ -679,7 +679,7 @@ public Builder clearCustomQuestionText() { } /** *
-     * The exact custom question field text (e.g. "Do you own a car?").
+     * The exact custom question field text (for example, "Do you own a car?").
      * 
* * string custom_question_text = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionFieldOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionFieldOrBuilder.java index 4b5ed5bf10..3cab881ede 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionFieldOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LeadFormCustomQuestionFieldOrBuilder.java @@ -9,7 +9,7 @@ public interface LeadFormCustomQuestionFieldOrBuilder extends /** *
-   * The exact custom question field text (e.g. "Do you own a car?").
+   * The exact custom question field text (for example, "Do you own a car?").
    * 
* * string custom_question_text = 1; @@ -18,7 +18,7 @@ public interface LeadFormCustomQuestionFieldOrBuilder extends java.lang.String getCustomQuestionText(); /** *
-   * The exact custom question field text (e.g. "Do you own a car?").
+   * The exact custom question field text (for example, "Do you own a car?").
    * 
* * string custom_question_text = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfo.java index 486106dd47..ab0c7985b6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfo.java @@ -463,7 +463,7 @@ public boolean getAllowFlexibleColor() { private volatile java.lang.Object accentColor_; /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -477,7 +477,7 @@ public boolean hasAccentColor() { } /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -500,7 +500,7 @@ public java.lang.String getAccentColor() { } /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -527,7 +527,7 @@ public java.lang.String getAccentColor() { private volatile java.lang.Object mainColor_; /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -541,7 +541,7 @@ public boolean hasMainColor() { } /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -564,7 +564,7 @@ public java.lang.String getMainColor() { } /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -908,7 +908,7 @@ public java.lang.String getSquareMarketingImage() { private volatile java.lang.Object pricePrefix_; /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 28; @@ -920,7 +920,7 @@ public boolean hasPricePrefix() { } /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 28; @@ -941,7 +941,7 @@ public java.lang.String getPricePrefix() { } /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 28; @@ -2199,7 +2199,7 @@ public Builder clearAllowFlexibleColor() { private java.lang.Object accentColor_ = ""; /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2212,7 +2212,7 @@ public boolean hasAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2234,7 +2234,7 @@ public java.lang.String getAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2257,7 +2257,7 @@ public java.lang.String getAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2278,7 +2278,7 @@ public Builder setAccentColor( } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2294,7 +2294,7 @@ public Builder clearAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2318,7 +2318,7 @@ public Builder setAccentColorBytes( private java.lang.Object mainColor_ = ""; /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2331,7 +2331,7 @@ public boolean hasMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2353,7 +2353,7 @@ public java.lang.String getMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2376,7 +2376,7 @@ public java.lang.String getMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2397,7 +2397,7 @@ public Builder setMainColor( } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -2413,7 +2413,7 @@ public Builder clearMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -3046,7 +3046,7 @@ public Builder clearFormatSetting() { private java.lang.Object pricePrefix_ = ""; /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 28; @@ -3057,7 +3057,7 @@ public boolean hasPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 28; @@ -3077,7 +3077,7 @@ public java.lang.String getPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 28; @@ -3098,7 +3098,7 @@ public java.lang.String getPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 28; @@ -3117,7 +3117,7 @@ public Builder setPricePrefix( } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 28; @@ -3131,7 +3131,7 @@ public Builder clearPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 28; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfoOrBuilder.java index cc69f251f5..e0f9eedbde 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LegacyResponsiveDisplayAdInfoOrBuilder.java @@ -152,7 +152,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -163,7 +163,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends boolean hasAccentColor(); /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -174,7 +174,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends java.lang.String getAccentColor(); /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -187,7 +187,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -198,7 +198,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends boolean hasMainColor(); /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -209,7 +209,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends java.lang.String getMainColor(); /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -386,7 +386,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 28; @@ -395,7 +395,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends boolean hasPricePrefix(); /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 28; @@ -404,7 +404,7 @@ public interface LegacyResponsiveDisplayAdInfoOrBuilder extends java.lang.String getPricePrefix(); /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 28; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LocationGroupInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LocationGroupInfo.java index e7756fe011..fe509e64c8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LocationGroupInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/LocationGroupInfo.java @@ -5,7 +5,7 @@ /** *
- * A radius around a list of locations specified via a feed.
+ * A radius around a list of locations specified through a feed.
  * 
* * Protobuf type {@code google.ads.googleads.v11.common.LocationGroupInfo} @@ -594,7 +594,7 @@ protected Builder newBuilderForType( } /** *
-   * A radius around a list of locations specified via a feed.
+   * A radius around a list of locations specified through a feed.
    * 
* * Protobuf type {@code google.ads.googleads.v11.common.LocationGroupInfo} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Metrics.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Metrics.java index 9c004b86dd..c454d92dd7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Metrics.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Metrics.java @@ -2154,9 +2154,9 @@ public double getContentImpressionShare() { *
    * The last date/time a conversion tag for this conversion action successfully
    * fired and was seen by Google Ads. This firing event may not have been the
-   * result of an attributable conversion (e.g. because the tag was fired from a
-   * browser that did not previously click an ad from an appropriate
-   * advertiser). The date/time is in the customer's time zone.
+   * result of an attributable conversion (for example, because the tag was
+   * fired from a browser that did not previously click an ad from an
+   * appropriate advertiser). The date/time is in the customer's time zone.
    * 
* * optional string conversion_last_received_request_date_time = 161; @@ -2170,9 +2170,9 @@ public boolean hasConversionLastReceivedRequestDateTime() { *
    * The last date/time a conversion tag for this conversion action successfully
    * fired and was seen by Google Ads. This firing event may not have been the
-   * result of an attributable conversion (e.g. because the tag was fired from a
-   * browser that did not previously click an ad from an appropriate
-   * advertiser). The date/time is in the customer's time zone.
+   * result of an attributable conversion (for example, because the tag was
+   * fired from a browser that did not previously click an ad from an
+   * appropriate advertiser). The date/time is in the customer's time zone.
    * 
* * optional string conversion_last_received_request_date_time = 161; @@ -2195,9 +2195,9 @@ public java.lang.String getConversionLastReceivedRequestDateTime() { *
    * The last date/time a conversion tag for this conversion action successfully
    * fired and was seen by Google Ads. This firing event may not have been the
-   * result of an attributable conversion (e.g. because the tag was fired from a
-   * browser that did not previously click an ad from an appropriate
-   * advertiser). The date/time is in the customer's time zone.
+   * result of an attributable conversion (for example, because the tag was
+   * fired from a browser that did not previously click an ad from an
+   * appropriate advertiser). The date/time is in the customer's time zone.
    * 
* * optional string conversion_last_received_request_date_time = 161; @@ -4847,7 +4847,7 @@ public long getVideoViews() { *
    * The total number of view-through conversions.
    * These happen when a customer sees an image or rich media ad, then later
-   * completes a conversion on your site without interacting with (e.g.,
+   * completes a conversion on your site without interacting with (for example,
    * clicking on) another ad.
    * 
* @@ -4862,7 +4862,7 @@ public boolean hasViewThroughConversions() { *
    * The total number of view-through conversions.
    * These happen when a customer sees an image or rich media ad, then later
-   * completes a conversion on your site without interacting with (e.g.,
+   * completes a conversion on your site without interacting with (for example,
    * clicking on) another ad.
    * 
* @@ -11453,9 +11453,9 @@ public Builder clearContentImpressionShare() { *
      * The last date/time a conversion tag for this conversion action successfully
      * fired and was seen by Google Ads. This firing event may not have been the
-     * result of an attributable conversion (e.g. because the tag was fired from a
-     * browser that did not previously click an ad from an appropriate
-     * advertiser). The date/time is in the customer's time zone.
+     * result of an attributable conversion (for example, because the tag was
+     * fired from a browser that did not previously click an ad from an
+     * appropriate advertiser). The date/time is in the customer's time zone.
      * 
* * optional string conversion_last_received_request_date_time = 161; @@ -11468,9 +11468,9 @@ public boolean hasConversionLastReceivedRequestDateTime() { *
      * The last date/time a conversion tag for this conversion action successfully
      * fired and was seen by Google Ads. This firing event may not have been the
-     * result of an attributable conversion (e.g. because the tag was fired from a
-     * browser that did not previously click an ad from an appropriate
-     * advertiser). The date/time is in the customer's time zone.
+     * result of an attributable conversion (for example, because the tag was
+     * fired from a browser that did not previously click an ad from an
+     * appropriate advertiser). The date/time is in the customer's time zone.
      * 
* * optional string conversion_last_received_request_date_time = 161; @@ -11492,9 +11492,9 @@ public java.lang.String getConversionLastReceivedRequestDateTime() { *
      * The last date/time a conversion tag for this conversion action successfully
      * fired and was seen by Google Ads. This firing event may not have been the
-     * result of an attributable conversion (e.g. because the tag was fired from a
-     * browser that did not previously click an ad from an appropriate
-     * advertiser). The date/time is in the customer's time zone.
+     * result of an attributable conversion (for example, because the tag was
+     * fired from a browser that did not previously click an ad from an
+     * appropriate advertiser). The date/time is in the customer's time zone.
      * 
* * optional string conversion_last_received_request_date_time = 161; @@ -11517,9 +11517,9 @@ public java.lang.String getConversionLastReceivedRequestDateTime() { *
      * The last date/time a conversion tag for this conversion action successfully
      * fired and was seen by Google Ads. This firing event may not have been the
-     * result of an attributable conversion (e.g. because the tag was fired from a
-     * browser that did not previously click an ad from an appropriate
-     * advertiser). The date/time is in the customer's time zone.
+     * result of an attributable conversion (for example, because the tag was
+     * fired from a browser that did not previously click an ad from an
+     * appropriate advertiser). The date/time is in the customer's time zone.
      * 
* * optional string conversion_last_received_request_date_time = 161; @@ -11540,9 +11540,9 @@ public Builder setConversionLastReceivedRequestDateTime( *
      * The last date/time a conversion tag for this conversion action successfully
      * fired and was seen by Google Ads. This firing event may not have been the
-     * result of an attributable conversion (e.g. because the tag was fired from a
-     * browser that did not previously click an ad from an appropriate
-     * advertiser). The date/time is in the customer's time zone.
+     * result of an attributable conversion (for example, because the tag was
+     * fired from a browser that did not previously click an ad from an
+     * appropriate advertiser). The date/time is in the customer's time zone.
      * 
* * optional string conversion_last_received_request_date_time = 161; @@ -11558,9 +11558,9 @@ public Builder clearConversionLastReceivedRequestDateTime() { *
      * The last date/time a conversion tag for this conversion action successfully
      * fired and was seen by Google Ads. This firing event may not have been the
-     * result of an attributable conversion (e.g. because the tag was fired from a
-     * browser that did not previously click an ad from an appropriate
-     * advertiser). The date/time is in the customer's time zone.
+     * result of an attributable conversion (for example, because the tag was
+     * fired from a browser that did not previously click an ad from an
+     * appropriate advertiser). The date/time is in the customer's time zone.
      * 
* * optional string conversion_last_received_request_date_time = 161; @@ -14203,8 +14203,8 @@ public int getInteractionEventTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.InteractionEventTypeEnum.InteractionEventType interaction_event_types = 100; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of interactionEventTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for interactionEventTypes to set. * @return This builder for chaining. */ public Builder setInteractionEventTypesValue( @@ -17016,7 +17016,7 @@ public Builder clearVideoViews() { *
      * The total number of view-through conversions.
      * These happen when a customer sees an image or rich media ad, then later
-     * completes a conversion on your site without interacting with (e.g.,
+     * completes a conversion on your site without interacting with (for example,
      * clicking on) another ad.
      * 
* @@ -17031,7 +17031,7 @@ public boolean hasViewThroughConversions() { *
      * The total number of view-through conversions.
      * These happen when a customer sees an image or rich media ad, then later
-     * completes a conversion on your site without interacting with (e.g.,
+     * completes a conversion on your site without interacting with (for example,
      * clicking on) another ad.
      * 
* @@ -17046,7 +17046,7 @@ public long getViewThroughConversions() { *
      * The total number of view-through conversions.
      * These happen when a customer sees an image or rich media ad, then later
-     * completes a conversion on your site without interacting with (e.g.,
+     * completes a conversion on your site without interacting with (for example,
      * clicking on) another ad.
      * 
* @@ -17064,7 +17064,7 @@ public Builder setViewThroughConversions(long value) { *
      * The total number of view-through conversions.
      * These happen when a customer sees an image or rich media ad, then later
-     * completes a conversion on your site without interacting with (e.g.,
+     * completes a conversion on your site without interacting with (for example,
      * clicking on) another ad.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MetricsOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MetricsOrBuilder.java index 9665b52dac..ac3c431fde 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MetricsOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MetricsOrBuilder.java @@ -1014,9 +1014,9 @@ public interface MetricsOrBuilder extends *
    * The last date/time a conversion tag for this conversion action successfully
    * fired and was seen by Google Ads. This firing event may not have been the
-   * result of an attributable conversion (e.g. because the tag was fired from a
-   * browser that did not previously click an ad from an appropriate
-   * advertiser). The date/time is in the customer's time zone.
+   * result of an attributable conversion (for example, because the tag was
+   * fired from a browser that did not previously click an ad from an
+   * appropriate advertiser). The date/time is in the customer's time zone.
    * 
* * optional string conversion_last_received_request_date_time = 161; @@ -1027,9 +1027,9 @@ public interface MetricsOrBuilder extends *
    * The last date/time a conversion tag for this conversion action successfully
    * fired and was seen by Google Ads. This firing event may not have been the
-   * result of an attributable conversion (e.g. because the tag was fired from a
-   * browser that did not previously click an ad from an appropriate
-   * advertiser). The date/time is in the customer's time zone.
+   * result of an attributable conversion (for example, because the tag was
+   * fired from a browser that did not previously click an ad from an
+   * appropriate advertiser). The date/time is in the customer's time zone.
    * 
* * optional string conversion_last_received_request_date_time = 161; @@ -1040,9 +1040,9 @@ public interface MetricsOrBuilder extends *
    * The last date/time a conversion tag for this conversion action successfully
    * fired and was seen by Google Ads. This firing event may not have been the
-   * result of an attributable conversion (e.g. because the tag was fired from a
-   * browser that did not previously click an ad from an appropriate
-   * advertiser). The date/time is in the customer's time zone.
+   * result of an attributable conversion (for example, because the tag was
+   * fired from a browser that did not previously click an ad from an
+   * appropriate advertiser). The date/time is in the customer's time zone.
    * 
* * optional string conversion_last_received_request_date_time = 161; @@ -2965,7 +2965,7 @@ public interface MetricsOrBuilder extends *
    * The total number of view-through conversions.
    * These happen when a customer sees an image or rich media ad, then later
-   * completes a conversion on your site without interacting with (e.g.,
+   * completes a conversion on your site without interacting with (for example,
    * clicking on) another ad.
    * 
* @@ -2977,7 +2977,7 @@ public interface MetricsOrBuilder extends *
    * The total number of view-through conversions.
    * These happen when a customer sees an image or rich media ad, then later
-   * completes a conversion on your site without interacting with (e.g.,
+   * completes a conversion on your site without interacting with (for example,
    * clicking on) another ad.
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfo.java index 20c53c9fa3..42ecbe5d52 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfo.java @@ -112,10 +112,11 @@ private MobileApplicationInfo( * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -137,10 +138,11 @@ public boolean hasAppId() { * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -171,10 +173,11 @@ public java.lang.String getAppId() { * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -611,10 +614,11 @@ public Builder mergeFrom( * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -635,10 +639,11 @@ public boolean hasAppId() { * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -668,10 +673,11 @@ public java.lang.String getAppId() { * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -702,10 +708,11 @@ public java.lang.String getAppId() { * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -734,10 +741,11 @@ public Builder setAppId( * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -761,10 +769,11 @@ public Builder clearAppId() { * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfoOrBuilder.java index 9c69be7489..d7f5f8f977 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MobileApplicationInfoOrBuilder.java @@ -15,10 +15,11 @@ public interface MobileApplicationInfoOrBuilder extends * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -37,10 +38,11 @@ public interface MobileApplicationInfoOrBuilder extends * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. @@ -59,10 +61,11 @@ public interface MobileApplicationInfoOrBuilder extends * platform_native_id is the mobile application identifier native to the * corresponding platform. * For iOS, this native identifier is the 9 digit string that appears at the - * end of an App Store URL (e.g., "476943146" for "Flood-It! 2" whose App - * Store link is "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). - * For Android, this native identifier is the application's package name - * (e.g., "com.labpixies.colordrips" for "Color Drips" given Google Play link + * end of an App Store URL (for example, "476943146" for "Flood-It! 2" whose + * App Store link is + * "http://itunes.apple.com/us/app/flood-it!-2/id476943146"). For Android, + * this native identifier is the application's package name (for example, + * "com.labpixies.colordrips" for "Color Drips" given Google Play link * "https://play.google.com/store/apps/details?id=com.labpixies.colordrips"). * A well formed app id for Google Ads API would thus be "1-476943146" for iOS * and "2-com.labpixies.colordrips" for Android. diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolume.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolume.java index c7eb3d68af..ae9f96e0b8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolume.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolume.java @@ -109,7 +109,7 @@ private MonthlySearchVolume( private long year_; /** *
-   * The year of the search volume (e.g. 2020).
+   * The year of the search volume (for example, 2020).
    * 
* * optional int64 year = 4; @@ -121,7 +121,7 @@ public boolean hasYear() { } /** *
-   * The year of the search volume (e.g. 2020).
+   * The year of the search volume (for example, 2020).
    * 
* * optional int64 year = 4; @@ -554,7 +554,7 @@ public Builder mergeFrom( private long year_ ; /** *
-     * The year of the search volume (e.g. 2020).
+     * The year of the search volume (for example, 2020).
      * 
* * optional int64 year = 4; @@ -566,7 +566,7 @@ public boolean hasYear() { } /** *
-     * The year of the search volume (e.g. 2020).
+     * The year of the search volume (for example, 2020).
      * 
* * optional int64 year = 4; @@ -578,7 +578,7 @@ public long getYear() { } /** *
-     * The year of the search volume (e.g. 2020).
+     * The year of the search volume (for example, 2020).
      * 
* * optional int64 year = 4; @@ -593,7 +593,7 @@ public Builder setYear(long value) { } /** *
-     * The year of the search volume (e.g. 2020).
+     * The year of the search volume (for example, 2020).
      * 
* * optional int64 year = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolumeOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolumeOrBuilder.java index 5ce30ca8e7..c29069f828 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolumeOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/MonthlySearchVolumeOrBuilder.java @@ -9,7 +9,7 @@ public interface MonthlySearchVolumeOrBuilder extends /** *
-   * The year of the search volume (e.g. 2020).
+   * The year of the search volume (for example, 2020).
    * 
* * optional int64 year = 4; @@ -18,7 +18,7 @@ public interface MonthlySearchVolumeOrBuilder extends boolean hasYear(); /** *
-   * The year of the search volume (e.g. 2020).
+   * The year of the search volume (for example, 2020).
    * 
* * optional int64 year = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/OfflineUserDataProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/OfflineUserDataProto.java index 6507b92c7f..ccd5a8052e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/OfflineUserDataProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/OfflineUserDataProto.java @@ -49,6 +49,16 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v11_common_UserAttribute_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_common_EventAttribute_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_common_EventAttribute_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_common_EventItemAttribute_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_common_EventItemAttribute_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_googleads_v11_common_ShoppingLoyalty_descriptor; static final @@ -81,89 +91,99 @@ public static void registerAllExtensions( "\n7google/ads/googleads/v11/common/offlin" + "e_user_data.proto\022\037google.ads.googleads." + "v11.common\032;google/ads/googleads/v11/enu" + - "ms/user_identifier_source.proto\"\320\002\n\026Offl" + - "ineUserAddressInfo\022\036\n\021hashed_first_name\030" + - "\007 \001(\tH\000\210\001\001\022\035\n\020hashed_last_name\030\010 \001(\tH\001\210\001" + - "\001\022\021\n\004city\030\t \001(\tH\002\210\001\001\022\022\n\005state\030\n \001(\tH\003\210\001\001" + - "\022\031\n\014country_code\030\013 \001(\tH\004\210\001\001\022\030\n\013postal_co" + - "de\030\014 \001(\tH\005\210\001\001\022\"\n\025hashed_street_address\030\r" + - " \001(\tH\006\210\001\001B\024\n\022_hashed_first_nameB\023\n\021_hash" + - "ed_last_nameB\007\n\005_cityB\010\n\006_stateB\017\n\r_coun" + - "try_codeB\016\n\014_postal_codeB\030\n\026_hashed_stre" + - "et_address\"\311\002\n\016UserIdentifier\022m\n\026user_id" + - "entifier_source\030\006 \001(\0162M.google.ads.googl" + - "eads.v11.enums.UserIdentifierSourceEnum." + - "UserIdentifierSource\022\026\n\014hashed_email\030\007 \001" + - "(\tH\000\022\035\n\023hashed_phone_number\030\010 \001(\tH\000\022\023\n\tm" + - "obile_id\030\t \001(\tH\000\022\035\n\023third_party_user_id\030" + - "\n \001(\tH\000\022O\n\014address_info\030\005 \001(\01327.google.a" + - "ds.googleads.v11.common.OfflineUserAddre" + - "ssInfoH\000B\014\n\nidentifier\"\340\003\n\024TransactionAt" + - "tribute\022\"\n\025transaction_date_time\030\010 \001(\tH\000" + - "\210\001\001\022&\n\031transaction_amount_micros\030\t \001(\001H\001" + - "\210\001\001\022\032\n\rcurrency_code\030\n \001(\tH\002\210\001\001\022\036\n\021conve" + - "rsion_action\030\013 \001(\tH\003\210\001\001\022\025\n\010order_id\030\014 \001(" + - "\tH\004\210\001\001\022H\n\017store_attribute\030\006 \001(\0132/.google" + - ".ads.googleads.v11.common.StoreAttribute" + - "\022\031\n\014custom_value\030\r \001(\tH\005\210\001\001\022F\n\016item_attr" + - "ibute\030\016 \001(\0132..google.ads.googleads.v11.c" + - "ommon.ItemAttributeB\030\n\026_transaction_date" + - "_timeB\034\n\032_transaction_amount_microsB\020\n\016_" + - "currency_codeB\024\n\022_conversion_actionB\013\n\t_" + - "order_idB\017\n\r_custom_value\"8\n\016StoreAttrib" + - "ute\022\027\n\nstore_code\030\002 \001(\tH\000\210\001\001B\r\n\013_store_c" + - "ode\"\211\001\n\rItemAttribute\022\017\n\007item_id\030\001 \001(\t\022\030" + - "\n\013merchant_id\030\002 \001(\003H\000\210\001\001\022\024\n\014country_code" + - "\030\003 \001(\t\022\025\n\rlanguage_code\030\004 \001(\t\022\020\n\010quantit" + - "y\030\005 \001(\003B\016\n\014_merchant_id\"\363\001\n\010UserData\022I\n\020" + - "user_identifiers\030\001 \003(\0132/.google.ads.goog" + - "leads.v11.common.UserIdentifier\022T\n\025trans" + - "action_attribute\030\002 \001(\01325.google.ads.goog" + - "leads.v11.common.TransactionAttribute\022F\n" + - "\016user_attribute\030\003 \001(\0132..google.ads.googl" + - "eads.v11.common.UserAttribute\"\370\002\n\rUserAt" + - "tribute\022\"\n\025lifetime_value_micros\030\001 \001(\003H\000" + - "\210\001\001\022\"\n\025lifetime_value_bucket\030\002 \001(\005H\001\210\001\001\022" + - "\037\n\027last_purchase_date_time\030\003 \001(\t\022\036\n\026aver" + - "age_purchase_count\030\004 \001(\005\022%\n\035average_purc" + - "hase_value_micros\030\005 \001(\003\022\035\n\025acquisition_d" + - "ate_time\030\006 \001(\t\022O\n\020shopping_loyalty\030\007 \001(\013" + - "20.google.ads.googleads.v11.common.Shopp" + - "ingLoyaltyH\002\210\001\001B\030\n\026_lifetime_value_micro" + - "sB\030\n\026_lifetime_value_bucketB\023\n\021_shopping" + - "_loyalty\"=\n\017ShoppingLoyalty\022\031\n\014loyalty_t" + - "ier\030\001 \001(\tH\000\210\001\001B\017\n\r_loyalty_tier\"E\n\035Custo" + - "merMatchUserListMetadata\022\026\n\tuser_list\030\002 " + - "\001(\tH\000\210\001\001B\014\n\n_user_list\"\227\002\n\022StoreSalesMet" + - "adata\022\035\n\020loyalty_fraction\030\005 \001(\001H\000\210\001\001\022(\n\033" + - "transaction_upload_fraction\030\006 \001(\001H\001\210\001\001\022\027" + - "\n\ncustom_key\030\007 \001(\tH\002\210\001\001\022[\n\024third_party_m" + - "etadata\030\003 \001(\0132=.google.ads.googleads.v11" + - ".common.StoreSalesThirdPartyMetadataB\023\n\021" + - "_loyalty_fractionB\036\n\034_transaction_upload" + - "_fractionB\r\n\013_custom_key\"\230\003\n\034StoreSalesT" + - "hirdPartyMetadata\022(\n\033advertiser_upload_d" + - "ate_time\030\007 \001(\tH\000\210\001\001\022\'\n\032valid_transaction" + - "_fraction\030\010 \001(\001H\001\210\001\001\022#\n\026partner_match_fr" + - "action\030\t \001(\001H\002\210\001\001\022$\n\027partner_upload_frac" + - "tion\030\n \001(\001H\003\210\001\001\022\"\n\025bridge_map_version_id" + - "\030\013 \001(\tH\004\210\001\001\022\027\n\npartner_id\030\014 \001(\003H\005\210\001\001B\036\n\034" + - "_advertiser_upload_date_timeB\035\n\033_valid_t" + - "ransaction_fractionB\031\n\027_partner_match_fr" + - "actionB\032\n\030_partner_upload_fractionB\030\n\026_b" + - "ridge_map_version_idB\r\n\013_partner_idB\364\001\n#" + - "com.google.ads.googleads.v11.commonB\024Off" + - "lineUserDataProtoP\001ZEgoogle.golang.org/g" + - "enproto/googleapis/ads/googleads/v11/com" + - "mon;common\242\002\003GAA\252\002\037Google.Ads.GoogleAds." + - "V11.Common\312\002\037Google\\Ads\\GoogleAds\\V11\\Co" + - "mmon\352\002#Google::Ads::GoogleAds::V11::Comm" + - "onb\006proto3" + "ms/user_identifier_source.proto\032\037google/" + + "api/field_behavior.proto\"\320\002\n\026OfflineUser" + + "AddressInfo\022\036\n\021hashed_first_name\030\007 \001(\tH\000" + + "\210\001\001\022\035\n\020hashed_last_name\030\010 \001(\tH\001\210\001\001\022\021\n\004ci" + + "ty\030\t \001(\tH\002\210\001\001\022\022\n\005state\030\n \001(\tH\003\210\001\001\022\031\n\014cou" + + "ntry_code\030\013 \001(\tH\004\210\001\001\022\030\n\013postal_code\030\014 \001(" + + "\tH\005\210\001\001\022\"\n\025hashed_street_address\030\r \001(\tH\006\210" + + "\001\001B\024\n\022_hashed_first_nameB\023\n\021_hashed_last" + + "_nameB\007\n\005_cityB\010\n\006_stateB\017\n\r_country_cod" + + "eB\016\n\014_postal_codeB\030\n\026_hashed_street_addr" + + "ess\"\311\002\n\016UserIdentifier\022m\n\026user_identifie" + + "r_source\030\006 \001(\0162M.google.ads.googleads.v1" + + "1.enums.UserIdentifierSourceEnum.UserIde" + + "ntifierSource\022\026\n\014hashed_email\030\007 \001(\tH\000\022\035\n" + + "\023hashed_phone_number\030\010 \001(\tH\000\022\023\n\tmobile_i" + + "d\030\t \001(\tH\000\022\035\n\023third_party_user_id\030\n \001(\tH\000" + + "\022O\n\014address_info\030\005 \001(\01327.google.ads.goog" + + "leads.v11.common.OfflineUserAddressInfoH" + + "\000B\014\n\nidentifier\"\340\003\n\024TransactionAttribute" + + "\022\"\n\025transaction_date_time\030\010 \001(\tH\000\210\001\001\022&\n\031" + + "transaction_amount_micros\030\t \001(\001H\001\210\001\001\022\032\n\r" + + "currency_code\030\n \001(\tH\002\210\001\001\022\036\n\021conversion_a" + + "ction\030\013 \001(\tH\003\210\001\001\022\025\n\010order_id\030\014 \001(\tH\004\210\001\001\022" + + "H\n\017store_attribute\030\006 \001(\0132/.google.ads.go" + + "ogleads.v11.common.StoreAttribute\022\031\n\014cus" + + "tom_value\030\r \001(\tH\005\210\001\001\022F\n\016item_attribute\030\016" + + " \001(\0132..google.ads.googleads.v11.common.I" + + "temAttributeB\030\n\026_transaction_date_timeB\034" + + "\n\032_transaction_amount_microsB\020\n\016_currenc" + + "y_codeB\024\n\022_conversion_actionB\013\n\t_order_i" + + "dB\017\n\r_custom_value\"8\n\016StoreAttribute\022\027\n\n" + + "store_code\030\002 \001(\tH\000\210\001\001B\r\n\013_store_code\"\211\001\n" + + "\rItemAttribute\022\017\n\007item_id\030\001 \001(\t\022\030\n\013merch" + + "ant_id\030\002 \001(\003H\000\210\001\001\022\024\n\014country_code\030\003 \001(\t\022" + + "\025\n\rlanguage_code\030\004 \001(\t\022\020\n\010quantity\030\005 \001(\003" + + "B\016\n\014_merchant_id\"\363\001\n\010UserData\022I\n\020user_id" + + "entifiers\030\001 \003(\0132/.google.ads.googleads.v" + + "11.common.UserIdentifier\022T\n\025transaction_" + + "attribute\030\002 \001(\01325.google.ads.googleads.v" + + "11.common.TransactionAttribute\022F\n\016user_a" + + "ttribute\030\003 \001(\0132..google.ads.googleads.v1" + + "1.common.UserAttribute\"\214\004\n\rUserAttribute" + + "\022\"\n\025lifetime_value_micros\030\001 \001(\003H\000\210\001\001\022\"\n\025" + + "lifetime_value_bucket\030\002 \001(\005H\001\210\001\001\022\037\n\027last" + + "_purchase_date_time\030\003 \001(\t\022\036\n\026average_pur" + + "chase_count\030\004 \001(\005\022%\n\035average_purchase_va" + + "lue_micros\030\005 \001(\003\022\035\n\025acquisition_date_tim" + + "e\030\006 \001(\t\022O\n\020shopping_loyalty\030\007 \001(\01320.goog" + + "le.ads.googleads.v11.common.ShoppingLoya" + + "ltyH\002\210\001\001\022\034\n\017lifecycle_stage\030\010 \001(\tB\003\340A\001\022%" + + "\n\030first_purchase_date_time\030\t \001(\tB\003\340A\001\022M\n" + + "\017event_attribute\030\n \003(\0132/.google.ads.goog" + + "leads.v11.common.EventAttributeB\003\340A\001B\030\n\026" + + "_lifetime_value_microsB\030\n\026_lifetime_valu" + + "e_bucketB\023\n\021_shopping_loyalty\"\224\001\n\016EventA" + + "ttribute\022\022\n\005event\030\001 \001(\tB\003\340A\002\022\034\n\017event_da" + + "te_time\030\002 \001(\tB\003\340A\002\022P\n\016item_attribute\030\003 \003" + + "(\01323.google.ads.googleads.v11.common.Eve" + + "ntItemAttributeB\003\340A\002\"*\n\022EventItemAttribu" + + "te\022\024\n\007item_id\030\001 \001(\tB\003\340A\001\"=\n\017ShoppingLoya" + + "lty\022\031\n\014loyalty_tier\030\001 \001(\tH\000\210\001\001B\017\n\r_loyal" + + "ty_tier\"E\n\035CustomerMatchUserListMetadata" + + "\022\026\n\tuser_list\030\002 \001(\tH\000\210\001\001B\014\n\n_user_list\"\227" + + "\002\n\022StoreSalesMetadata\022\035\n\020loyalty_fractio" + + "n\030\005 \001(\001H\000\210\001\001\022(\n\033transaction_upload_fract" + + "ion\030\006 \001(\001H\001\210\001\001\022\027\n\ncustom_key\030\007 \001(\tH\002\210\001\001\022" + + "[\n\024third_party_metadata\030\003 \001(\0132=.google.a" + + "ds.googleads.v11.common.StoreSalesThirdP" + + "artyMetadataB\023\n\021_loyalty_fractionB\036\n\034_tr" + + "ansaction_upload_fractionB\r\n\013_custom_key" + + "\"\230\003\n\034StoreSalesThirdPartyMetadata\022(\n\033adv" + + "ertiser_upload_date_time\030\007 \001(\tH\000\210\001\001\022\'\n\032v" + + "alid_transaction_fraction\030\010 \001(\001H\001\210\001\001\022#\n\026" + + "partner_match_fraction\030\t \001(\001H\002\210\001\001\022$\n\027par" + + "tner_upload_fraction\030\n \001(\001H\003\210\001\001\022\"\n\025bridg" + + "e_map_version_id\030\013 \001(\tH\004\210\001\001\022\027\n\npartner_i" + + "d\030\014 \001(\003H\005\210\001\001B\036\n\034_advertiser_upload_date_" + + "timeB\035\n\033_valid_transaction_fractionB\031\n\027_" + + "partner_match_fractionB\032\n\030_partner_uploa" + + "d_fractionB\030\n\026_bridge_map_version_idB\r\n\013" + + "_partner_idB\364\001\n#com.google.ads.googleads" + + ".v11.commonB\024OfflineUserDataProtoP\001ZEgoo" + + "gle.golang.org/genproto/googleapis/ads/g" + + "oogleads/v11/common;common\242\002\003GAA\252\002\037Googl" + + "e.Ads.GoogleAds.V11.Common\312\002\037Google\\Ads\\" + + "GoogleAds\\V11\\Common\352\002#Google::Ads::Goog" + + "leAds::V11::Commonb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { com.google.ads.googleads.v11.enums.UserIdentifierSourceProto.getDescriptor(), + com.google.api.FieldBehaviorProto.getDescriptor(), }); internal_static_google_ads_googleads_v11_common_OfflineUserAddressInfo_descriptor = getDescriptor().getMessageTypes().get(0); @@ -206,32 +226,50 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_common_UserAttribute_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_UserAttribute_descriptor, - new java.lang.String[] { "LifetimeValueMicros", "LifetimeValueBucket", "LastPurchaseDateTime", "AveragePurchaseCount", "AveragePurchaseValueMicros", "AcquisitionDateTime", "ShoppingLoyalty", "LifetimeValueMicros", "LifetimeValueBucket", "ShoppingLoyalty", }); - internal_static_google_ads_googleads_v11_common_ShoppingLoyalty_descriptor = + new java.lang.String[] { "LifetimeValueMicros", "LifetimeValueBucket", "LastPurchaseDateTime", "AveragePurchaseCount", "AveragePurchaseValueMicros", "AcquisitionDateTime", "ShoppingLoyalty", "LifecycleStage", "FirstPurchaseDateTime", "EventAttribute", "LifetimeValueMicros", "LifetimeValueBucket", "ShoppingLoyalty", }); + internal_static_google_ads_googleads_v11_common_EventAttribute_descriptor = getDescriptor().getMessageTypes().get(7); + internal_static_google_ads_googleads_v11_common_EventAttribute_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_common_EventAttribute_descriptor, + new java.lang.String[] { "Event", "EventDateTime", "ItemAttribute", }); + internal_static_google_ads_googleads_v11_common_EventItemAttribute_descriptor = + getDescriptor().getMessageTypes().get(8); + internal_static_google_ads_googleads_v11_common_EventItemAttribute_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_common_EventItemAttribute_descriptor, + new java.lang.String[] { "ItemId", }); + internal_static_google_ads_googleads_v11_common_ShoppingLoyalty_descriptor = + getDescriptor().getMessageTypes().get(9); internal_static_google_ads_googleads_v11_common_ShoppingLoyalty_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_ShoppingLoyalty_descriptor, new java.lang.String[] { "LoyaltyTier", "LoyaltyTier", }); internal_static_google_ads_googleads_v11_common_CustomerMatchUserListMetadata_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(10); internal_static_google_ads_googleads_v11_common_CustomerMatchUserListMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_CustomerMatchUserListMetadata_descriptor, new java.lang.String[] { "UserList", "UserList", }); internal_static_google_ads_googleads_v11_common_StoreSalesMetadata_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(11); internal_static_google_ads_googleads_v11_common_StoreSalesMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_StoreSalesMetadata_descriptor, new java.lang.String[] { "LoyaltyFraction", "TransactionUploadFraction", "CustomKey", "ThirdPartyMetadata", "LoyaltyFraction", "TransactionUploadFraction", "CustomKey", }); internal_static_google_ads_googleads_v11_common_StoreSalesThirdPartyMetadata_descriptor = - getDescriptor().getMessageTypes().get(10); + getDescriptor().getMessageTypes().get(12); internal_static_google_ads_googleads_v11_common_StoreSalesThirdPartyMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_StoreSalesThirdPartyMetadata_descriptor, new java.lang.String[] { "AdvertiserUploadDateTime", "ValidTransactionFraction", "PartnerMatchFraction", "PartnerUploadFraction", "BridgeMapVersionId", "PartnerId", "AdvertiserUploadDateTime", "ValidTransactionFraction", "PartnerMatchFraction", "PartnerUploadFraction", "BridgeMapVersionId", "PartnerId", }); + com.google.protobuf.ExtensionRegistry registry = + com.google.protobuf.ExtensionRegistry.newInstance(); + registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); + com.google.protobuf.Descriptors.FileDescriptor + .internalUpdateFileDescriptor(descriptor, registry); com.google.ads.googleads.v11.enums.UserIdentifierSourceProto.getDescriptor(); + com.google.api.FieldBehaviorProto.getDescriptor(); } // @@protoc_insertion_point(outer_class_scope) diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ParentalStatusDimension.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ParentalStatusDimension.java index 473dda7189..7fba7c3fb0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ParentalStatusDimension.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ParentalStatusDimension.java @@ -729,8 +729,8 @@ public int getParentalStatusesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.ParentalStatusTypeEnum.ParentalStatusType parental_statuses = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of parentalStatuses at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for parentalStatuses to set. * @return This builder for chaining. */ public Builder setParentalStatusesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntry.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntry.java index b74aa9370e..f07b9a3a32 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntry.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntry.java @@ -5,8 +5,8 @@ /** *
- * Policy finding attached to a resource (e.g. alcohol policy associated with
- * a site that sells alcohol).
+ * Policy finding attached to a resource (for example, alcohol policy associated
+ * with a site that sells alcohol).
  * Each PolicyTopicEntry has a topic that indicates the specific ads policy
  * the entry is about and a type to indicate the effect that the entry will have
  * on serving. It may optionally have one or more evidences that indicate the
@@ -233,7 +233,7 @@ public java.lang.String getTopic() {
   /**
    * 
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -245,7 +245,7 @@ public java.util.List g /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -258,7 +258,7 @@ public java.util.List g /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -270,7 +270,7 @@ public int getEvidencesCount() { /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -282,7 +282,7 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidence getEvidences(int /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -297,8 +297,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvide private java.util.List constraints_; /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -309,8 +309,8 @@ public java.util.List } /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -322,8 +322,8 @@ public java.util.List } /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -334,8 +334,8 @@ public int getConstraintsCount() { } /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -346,8 +346,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicConstraint getConstraints( } /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -555,8 +555,8 @@ protected Builder newBuilderForType( } /** *
-   * Policy finding attached to a resource (e.g. alcohol policy associated with
-   * a site that sells alcohol).
+   * Policy finding attached to a resource (for example, alcohol policy associated
+   * with a site that sells alcohol).
    * Each PolicyTopicEntry has a topic that indicates the specific ads policy
    * the entry is about and a type to indicate the effect that the entry will have
    * on serving. It may optionally have one or more evidences that indicate the
@@ -1023,7 +1023,7 @@ private void ensureEvidencesIsMutable() {
     /**
      * 
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1038,7 +1038,7 @@ public java.util.List g /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1053,7 +1053,7 @@ public int getEvidencesCount() { /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1068,7 +1068,7 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidence getEvidences(int /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1090,7 +1090,7 @@ public Builder setEvidences( /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1109,7 +1109,7 @@ public Builder setEvidences( /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1130,7 +1130,7 @@ public Builder addEvidences(com.google.ads.googleads.v11.common.PolicyTopicEvide /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1152,7 +1152,7 @@ public Builder addEvidences( /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1171,7 +1171,7 @@ public Builder addEvidences( /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1190,7 +1190,7 @@ public Builder addEvidences( /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1210,7 +1210,7 @@ public Builder addAllEvidences( /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1228,7 +1228,7 @@ public Builder clearEvidences() { /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1246,7 +1246,7 @@ public Builder removeEvidences(int index) { /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1258,7 +1258,7 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidence.Builder getEviden /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1273,7 +1273,7 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvide /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1289,7 +1289,7 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvide /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1301,7 +1301,7 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidence.Builder addEviden /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1314,7 +1314,7 @@ public com.google.ads.googleads.v11.common.PolicyTopicEvidence.Builder addEviden /** *
      * Additional information that explains policy finding
-     * (e.g. the brand name for a trademark finding).
+     * (for example, the brand name for a trademark finding).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -1352,8 +1352,8 @@ private void ensureConstraintsIsMutable() { /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1367,8 +1367,8 @@ public java.util.List } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1382,8 +1382,8 @@ public int getConstraintsCount() { } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1397,8 +1397,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicConstraint getConstraints( } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1419,8 +1419,8 @@ public Builder setConstraints( } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1438,8 +1438,8 @@ public Builder setConstraints( } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1459,8 +1459,8 @@ public Builder addConstraints(com.google.ads.googleads.v11.common.PolicyTopicCon } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1481,8 +1481,8 @@ public Builder addConstraints( } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1500,8 +1500,8 @@ public Builder addConstraints( } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1519,8 +1519,8 @@ public Builder addConstraints( } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1539,8 +1539,8 @@ public Builder addAllConstraints( } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1557,8 +1557,8 @@ public Builder clearConstraints() { } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1575,8 +1575,8 @@ public Builder removeConstraints(int index) { } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1587,8 +1587,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicConstraint.Builder getCons } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1602,8 +1602,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicConstraintOrBuilder getCon } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1618,8 +1618,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicConstraintOrBuilder getCon } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1630,8 +1630,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicConstraint.Builder addCons } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -1643,8 +1643,8 @@ public com.google.ads.googleads.v11.common.PolicyTopicConstraint.Builder addCons } /** *
-     * Indicates how serving of this resource may be affected (e.g. not serving
-     * in a country).
+     * Indicates how serving of this resource may be affected (for example, not
+     * serving in a country).
      * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntryOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntryOrBuilder.java index 1d9c5899dc..3f036e99e7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntryOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEntryOrBuilder.java @@ -67,7 +67,7 @@ public interface PolicyTopicEntryOrBuilder extends /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -77,7 +77,7 @@ public interface PolicyTopicEntryOrBuilder extends /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -86,7 +86,7 @@ public interface PolicyTopicEntryOrBuilder extends /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -95,7 +95,7 @@ public interface PolicyTopicEntryOrBuilder extends /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -105,7 +105,7 @@ public interface PolicyTopicEntryOrBuilder extends /** *
    * Additional information that explains policy finding
-   * (e.g. the brand name for a trademark finding).
+   * (for example, the brand name for a trademark finding).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicEvidence evidences = 3; @@ -115,8 +115,8 @@ com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvidencesOrB /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -125,8 +125,8 @@ com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvidencesOrB getConstraintsList(); /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -134,8 +134,8 @@ com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvidencesOrB com.google.ads.googleads.v11.common.PolicyTopicConstraint getConstraints(int index); /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -143,8 +143,8 @@ com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvidencesOrB int getConstraintsCount(); /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; @@ -153,8 +153,8 @@ com.google.ads.googleads.v11.common.PolicyTopicEvidenceOrBuilder getEvidencesOrB getConstraintsOrBuilderList(); /** *
-   * Indicates how serving of this resource may be affected (e.g. not serving
-   * in a country).
+   * Indicates how serving of this resource may be affected (for example, not
+   * serving in a country).
    * 
* * repeated .google.ads.googleads.v11.common.PolicyTopicConstraint constraints = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEvidence.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEvidence.java index 2992a148cb..2417854096 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEvidence.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyTopicEvidence.java @@ -3036,8 +3036,8 @@ public int getUrlTypesValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType url_types = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of urlTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for urlTypes to set. * @return This builder for chaining. */ public Builder setUrlTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameter.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameter.java index c8acf11afd..cab1457aa7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameter.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameter.java @@ -194,7 +194,7 @@ public java.lang.String getIgnorablePolicyTopics(int index) { *
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -212,7 +212,7 @@ public java.util.List ge
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -231,7 +231,7 @@ public java.util.List ge
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -249,7 +249,7 @@ public int getExemptPolicyViolationKeysCount() {
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -267,7 +267,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey getExemptPolicyVio
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -879,7 +879,7 @@ private void ensureExemptPolicyViolationKeysIsMutable() {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -900,7 +900,7 @@ public java.util.List ge
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -921,7 +921,7 @@ public int getExemptPolicyViolationKeysCount() {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -942,7 +942,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey getExemptPolicyVio
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -970,7 +970,7 @@ public Builder setExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -995,7 +995,7 @@ public Builder setExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1022,7 +1022,7 @@ public Builder addExemptPolicyViolationKeys(com.google.ads.googleads.v11.common.
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1050,7 +1050,7 @@ public Builder addExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1075,7 +1075,7 @@ public Builder addExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1100,7 +1100,7 @@ public Builder addExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1126,7 +1126,7 @@ public Builder addAllExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1150,7 +1150,7 @@ public Builder clearExemptPolicyViolationKeys() {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1174,7 +1174,7 @@ public Builder removeExemptPolicyViolationKeys(int index) {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1192,7 +1192,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey.Builder getExemptP
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1213,7 +1213,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKeyOrBuilder getExempt
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1235,7 +1235,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKeyOrBuilder getExempt
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1253,7 +1253,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey.Builder addExemptP
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1272,7 +1272,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey.Builder addExemptP
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameterOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameterOrBuilder.java
index 36c2f28b73..c2ed7a98f4 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameterOrBuilder.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyValidationParameterOrBuilder.java
@@ -76,7 +76,7 @@ public interface PolicyValidationParameterOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -92,7 +92,7 @@ public interface PolicyValidationParameterOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -107,7 +107,7 @@ public interface PolicyValidationParameterOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -122,7 +122,7 @@ public interface PolicyValidationParameterOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -138,7 +138,7 @@ public interface PolicyValidationParameterOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKey.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKey.java
index 427daab112..013755ce22 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKey.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKey.java
@@ -167,7 +167,7 @@ public java.lang.String getPolicyName() {
    * 
    * The text that violates the policy if specified.
    * Otherwise, refers to the policy in general
-   * (e.g., when requesting to be exempt from the whole policy).
+   * (for example, when requesting to be exempt from the whole policy).
    * If not specified for criterion exemptions, the whole policy is implied.
    * Must be specified for ad exemptions.
    * 
@@ -183,7 +183,7 @@ public boolean hasViolatingText() { *
    * The text that violates the policy if specified.
    * Otherwise, refers to the policy in general
-   * (e.g., when requesting to be exempt from the whole policy).
+   * (for example, when requesting to be exempt from the whole policy).
    * If not specified for criterion exemptions, the whole policy is implied.
    * Must be specified for ad exemptions.
    * 
@@ -208,7 +208,7 @@ public java.lang.String getViolatingText() { *
    * The text that violates the policy if specified.
    * Otherwise, refers to the policy in general
-   * (e.g., when requesting to be exempt from the whole policy).
+   * (for example, when requesting to be exempt from the whole policy).
    * If not specified for criterion exemptions, the whole policy is implied.
    * Must be specified for ad exemptions.
    * 
@@ -689,7 +689,7 @@ public Builder setPolicyNameBytes( *
      * The text that violates the policy if specified.
      * Otherwise, refers to the policy in general
-     * (e.g., when requesting to be exempt from the whole policy).
+     * (for example, when requesting to be exempt from the whole policy).
      * If not specified for criterion exemptions, the whole policy is implied.
      * Must be specified for ad exemptions.
      * 
@@ -704,7 +704,7 @@ public boolean hasViolatingText() { *
      * The text that violates the policy if specified.
      * Otherwise, refers to the policy in general
-     * (e.g., when requesting to be exempt from the whole policy).
+     * (for example, when requesting to be exempt from the whole policy).
      * If not specified for criterion exemptions, the whole policy is implied.
      * Must be specified for ad exemptions.
      * 
@@ -728,7 +728,7 @@ public java.lang.String getViolatingText() { *
      * The text that violates the policy if specified.
      * Otherwise, refers to the policy in general
-     * (e.g., when requesting to be exempt from the whole policy).
+     * (for example, when requesting to be exempt from the whole policy).
      * If not specified for criterion exemptions, the whole policy is implied.
      * Must be specified for ad exemptions.
      * 
@@ -753,7 +753,7 @@ public java.lang.String getViolatingText() { *
      * The text that violates the policy if specified.
      * Otherwise, refers to the policy in general
-     * (e.g., when requesting to be exempt from the whole policy).
+     * (for example, when requesting to be exempt from the whole policy).
      * If not specified for criterion exemptions, the whole policy is implied.
      * Must be specified for ad exemptions.
      * 
@@ -776,7 +776,7 @@ public Builder setViolatingText( *
      * The text that violates the policy if specified.
      * Otherwise, refers to the policy in general
-     * (e.g., when requesting to be exempt from the whole policy).
+     * (for example, when requesting to be exempt from the whole policy).
      * If not specified for criterion exemptions, the whole policy is implied.
      * Must be specified for ad exemptions.
      * 
@@ -794,7 +794,7 @@ public Builder clearViolatingText() { *
      * The text that violates the policy if specified.
      * Otherwise, refers to the policy in general
-     * (e.g., when requesting to be exempt from the whole policy).
+     * (for example, when requesting to be exempt from the whole policy).
      * If not specified for criterion exemptions, the whole policy is implied.
      * Must be specified for ad exemptions.
      * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKeyOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKeyOrBuilder.java index c24ba0629c..d8fe9daab5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKeyOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/PolicyViolationKeyOrBuilder.java @@ -40,7 +40,7 @@ public interface PolicyViolationKeyOrBuilder extends *
    * The text that violates the policy if specified.
    * Otherwise, refers to the policy in general
-   * (e.g., when requesting to be exempt from the whole policy).
+   * (for example, when requesting to be exempt from the whole policy).
    * If not specified for criterion exemptions, the whole policy is implied.
    * Must be specified for ad exemptions.
    * 
@@ -53,7 +53,7 @@ public interface PolicyViolationKeyOrBuilder extends *
    * The text that violates the policy if specified.
    * Otherwise, refers to the policy in general
-   * (e.g., when requesting to be exempt from the whole policy).
+   * (for example, when requesting to be exempt from the whole policy).
    * If not specified for criterion exemptions, the whole policy is implied.
    * Must be specified for ad exemptions.
    * 
@@ -66,7 +66,7 @@ public interface PolicyViolationKeyOrBuilder extends *
    * The text that violates the policy if specified.
    * Otherwise, refers to the policy in general
-   * (e.g., when requesting to be exempt from the whole policy).
+   * (for example, when requesting to be exempt from the whole policy).
    * If not specified for criterion exemptions, the whole policy is implied.
    * Must be specified for ad exemptions.
    * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfo.java index 8daa478361..0dc3ab7478 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfo.java @@ -839,7 +839,7 @@ public java.lang.String getBusinessName() { private volatile java.lang.Object mainColor_; /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -853,7 +853,7 @@ public boolean hasMainColor() { } /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -876,7 +876,7 @@ public java.lang.String getMainColor() { } /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -903,7 +903,7 @@ public java.lang.String getMainColor() { private volatile java.lang.Object accentColor_; /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -917,7 +917,7 @@ public boolean hasAccentColor() { } /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -940,7 +940,7 @@ public java.lang.String getAccentColor() { } /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -1060,7 +1060,7 @@ public java.lang.String getCallToActionText() { private volatile java.lang.Object pricePrefix_; /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 22; @@ -1072,7 +1072,7 @@ public boolean hasPricePrefix() { } /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 22; @@ -1093,7 +1093,7 @@ public java.lang.String getPricePrefix() { } /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 22; @@ -4841,7 +4841,7 @@ public Builder setBusinessNameBytes( private java.lang.Object mainColor_ = ""; /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4854,7 +4854,7 @@ public boolean hasMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4876,7 +4876,7 @@ public java.lang.String getMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4899,7 +4899,7 @@ public java.lang.String getMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4920,7 +4920,7 @@ public Builder setMainColor( } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4936,7 +4936,7 @@ public Builder clearMainColor() { } /** *
-     * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The main color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4960,7 +4960,7 @@ public Builder setMainColorBytes( private java.lang.Object accentColor_ = ""; /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4973,7 +4973,7 @@ public boolean hasAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -4995,7 +4995,7 @@ public java.lang.String getAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -5018,7 +5018,7 @@ public java.lang.String getAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -5039,7 +5039,7 @@ public Builder setAccentColor( } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -5055,7 +5055,7 @@ public Builder clearAccentColor() { } /** *
-     * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+     * The accent color of the ad in hexadecimal, for example, #ffffff for white.
      * If one of `main_color` and `accent_color` is set, the other is required as
      * well.
      * 
@@ -5257,7 +5257,7 @@ public Builder setCallToActionTextBytes( private java.lang.Object pricePrefix_ = ""; /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 22; @@ -5268,7 +5268,7 @@ public boolean hasPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 22; @@ -5288,7 +5288,7 @@ public java.lang.String getPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 22; @@ -5309,7 +5309,7 @@ public java.lang.String getPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 22; @@ -5328,7 +5328,7 @@ public Builder setPricePrefix( } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 22; @@ -5342,7 +5342,7 @@ public Builder clearPricePrefix() { } /** *
-     * Prefix before price. E.g. 'as low as'.
+     * Prefix before price. For example, 'as low as'.
      * 
* * optional string price_prefix = 22; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfoOrBuilder.java index ac4117b25d..2df83c51ef 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/ResponsiveDisplayAdInfoOrBuilder.java @@ -433,7 +433,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -444,7 +444,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil boolean hasMainColor(); /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -455,7 +455,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil java.lang.String getMainColor(); /** *
-   * The main color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The main color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -468,7 +468,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -479,7 +479,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil boolean hasAccentColor(); /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -490,7 +490,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil java.lang.String getAccentColor(); /** *
-   * The accent color of the ad in hexadecimal, e.g. #ffffff for white.
+   * The accent color of the ad in hexadecimal, for example, #ffffff for white.
    * If one of `main_color` and `accent_color` is set, the other is required as
    * well.
    * 
@@ -559,7 +559,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 22; @@ -568,7 +568,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil boolean hasPricePrefix(); /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 22; @@ -577,7 +577,7 @@ com.google.ads.googleads.v11.common.AdVideoAssetOrBuilder getYoutubeVideosOrBuil java.lang.String getPricePrefix(); /** *
-   * Prefix before price. E.g. 'as low as'.
+   * Prefix before price. For example, 'as low as'.
    * 
* * optional string price_prefix = 22; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfo.java index d85ba27cb5..b4bc1575ed 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfo.java @@ -87,6 +87,19 @@ private RuleBasedUserListInfo( ruleBasedUserListCase_ = 4; break; } + case 42: { + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder subBuilder = null; + if (flexibleRuleUserList_ != null) { + subBuilder = flexibleRuleUserList_.toBuilder(); + } + flexibleRuleUserList_ = input.readMessage(com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(flexibleRuleUserList_); + flexibleRuleUserList_ = subBuilder.buildPartial(); + } + + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -203,6 +216,44 @@ public int getNumber() { return result == null ? com.google.ads.googleads.v11.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus.UNRECOGNIZED : result; } + public static final int FLEXIBLE_RULE_USER_LIST_FIELD_NUMBER = 5; + private com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexibleRuleUserList_; + /** + *
+   * Flexible rule representation of visitors with one or multiple actions.
+   * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + * @return Whether the flexibleRuleUserList field is set. + */ + @java.lang.Override + public boolean hasFlexibleRuleUserList() { + return flexibleRuleUserList_ != null; + } + /** + *
+   * Flexible rule representation of visitors with one or multiple actions.
+   * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + * @return The flexibleRuleUserList. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo getFlexibleRuleUserList() { + return flexibleRuleUserList_ == null ? com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.getDefaultInstance() : flexibleRuleUserList_; + } + /** + *
+   * Flexible rule representation of visitors with one or multiple actions.
+   * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfoOrBuilder getFlexibleRuleUserListOrBuilder() { + return getFlexibleRuleUserList(); + } + public static final int COMBINED_RULE_USER_LIST_FIELD_NUMBER = 2; /** *
@@ -321,6 +372,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
     if (ruleBasedUserListCase_ == 4) {
       output.writeMessage(4, (com.google.ads.googleads.v11.common.ExpressionRuleUserListInfo) ruleBasedUserList_);
     }
+    if (flexibleRuleUserList_ != null) {
+      output.writeMessage(5, getFlexibleRuleUserList());
+    }
     unknownFields.writeTo(output);
   }
 
@@ -342,6 +396,10 @@ public int getSerializedSize() {
       size += com.google.protobuf.CodedOutputStream
         .computeMessageSize(4, (com.google.ads.googleads.v11.common.ExpressionRuleUserListInfo) ruleBasedUserList_);
     }
+    if (flexibleRuleUserList_ != null) {
+      size += com.google.protobuf.CodedOutputStream
+        .computeMessageSize(5, getFlexibleRuleUserList());
+    }
     size += unknownFields.getSerializedSize();
     memoizedSize = size;
     return size;
@@ -358,6 +416,11 @@ public boolean equals(final java.lang.Object obj) {
     com.google.ads.googleads.v11.common.RuleBasedUserListInfo other = (com.google.ads.googleads.v11.common.RuleBasedUserListInfo) obj;
 
     if (prepopulationStatus_ != other.prepopulationStatus_) return false;
+    if (hasFlexibleRuleUserList() != other.hasFlexibleRuleUserList()) return false;
+    if (hasFlexibleRuleUserList()) {
+      if (!getFlexibleRuleUserList()
+          .equals(other.getFlexibleRuleUserList())) return false;
+    }
     if (!getRuleBasedUserListCase().equals(other.getRuleBasedUserListCase())) return false;
     switch (ruleBasedUserListCase_) {
       case 2:
@@ -384,6 +447,10 @@ public int hashCode() {
     hash = (19 * hash) + getDescriptor().hashCode();
     hash = (37 * hash) + PREPOPULATION_STATUS_FIELD_NUMBER;
     hash = (53 * hash) + prepopulationStatus_;
+    if (hasFlexibleRuleUserList()) {
+      hash = (37 * hash) + FLEXIBLE_RULE_USER_LIST_FIELD_NUMBER;
+      hash = (53 * hash) + getFlexibleRuleUserList().hashCode();
+    }
     switch (ruleBasedUserListCase_) {
       case 2:
         hash = (37 * hash) + COMBINED_RULE_USER_LIST_FIELD_NUMBER;
@@ -535,6 +602,12 @@ public Builder clear() {
       super.clear();
       prepopulationStatus_ = 0;
 
+      if (flexibleRuleUserListBuilder_ == null) {
+        flexibleRuleUserList_ = null;
+      } else {
+        flexibleRuleUserList_ = null;
+        flexibleRuleUserListBuilder_ = null;
+      }
       ruleBasedUserListCase_ = 0;
       ruleBasedUserList_ = null;
       return this;
@@ -564,6 +637,11 @@ public com.google.ads.googleads.v11.common.RuleBasedUserListInfo build() {
     public com.google.ads.googleads.v11.common.RuleBasedUserListInfo buildPartial() {
       com.google.ads.googleads.v11.common.RuleBasedUserListInfo result = new com.google.ads.googleads.v11.common.RuleBasedUserListInfo(this);
       result.prepopulationStatus_ = prepopulationStatus_;
+      if (flexibleRuleUserListBuilder_ == null) {
+        result.flexibleRuleUserList_ = flexibleRuleUserList_;
+      } else {
+        result.flexibleRuleUserList_ = flexibleRuleUserListBuilder_.build();
+      }
       if (ruleBasedUserListCase_ == 2) {
         if (combinedRuleUserListBuilder_ == null) {
           result.ruleBasedUserList_ = ruleBasedUserList_;
@@ -630,6 +708,9 @@ public Builder mergeFrom(com.google.ads.googleads.v11.common.RuleBasedUserListIn
       if (other.prepopulationStatus_ != 0) {
         setPrepopulationStatusValue(other.getPrepopulationStatusValue());
       }
+      if (other.hasFlexibleRuleUserList()) {
+        mergeFlexibleRuleUserList(other.getFlexibleRuleUserList());
+      }
       switch (other.getRuleBasedUserListCase()) {
         case COMBINED_RULE_USER_LIST: {
           mergeCombinedRuleUserList(other.getCombinedRuleUserList());
@@ -796,6 +877,161 @@ public Builder clearPrepopulationStatus() {
       return this;
     }
 
+    private com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexibleRuleUserList_;
+    private com.google.protobuf.SingleFieldBuilderV3<
+        com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfoOrBuilder> flexibleRuleUserListBuilder_;
+    /**
+     * 
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + * @return Whether the flexibleRuleUserList field is set. + */ + public boolean hasFlexibleRuleUserList() { + return flexibleRuleUserListBuilder_ != null || flexibleRuleUserList_ != null; + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + * @return The flexibleRuleUserList. + */ + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo getFlexibleRuleUserList() { + if (flexibleRuleUserListBuilder_ == null) { + return flexibleRuleUserList_ == null ? com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.getDefaultInstance() : flexibleRuleUserList_; + } else { + return flexibleRuleUserListBuilder_.getMessage(); + } + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + public Builder setFlexibleRuleUserList(com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo value) { + if (flexibleRuleUserListBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + flexibleRuleUserList_ = value; + onChanged(); + } else { + flexibleRuleUserListBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + public Builder setFlexibleRuleUserList( + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder builderForValue) { + if (flexibleRuleUserListBuilder_ == null) { + flexibleRuleUserList_ = builderForValue.build(); + onChanged(); + } else { + flexibleRuleUserListBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + public Builder mergeFlexibleRuleUserList(com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo value) { + if (flexibleRuleUserListBuilder_ == null) { + if (flexibleRuleUserList_ != null) { + flexibleRuleUserList_ = + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.newBuilder(flexibleRuleUserList_).mergeFrom(value).buildPartial(); + } else { + flexibleRuleUserList_ = value; + } + onChanged(); + } else { + flexibleRuleUserListBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + public Builder clearFlexibleRuleUserList() { + if (flexibleRuleUserListBuilder_ == null) { + flexibleRuleUserList_ = null; + onChanged(); + } else { + flexibleRuleUserList_ = null; + flexibleRuleUserListBuilder_ = null; + } + + return this; + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder getFlexibleRuleUserListBuilder() { + + onChanged(); + return getFlexibleRuleUserListFieldBuilder().getBuilder(); + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + public com.google.ads.googleads.v11.common.FlexibleRuleUserListInfoOrBuilder getFlexibleRuleUserListOrBuilder() { + if (flexibleRuleUserListBuilder_ != null) { + return flexibleRuleUserListBuilder_.getMessageOrBuilder(); + } else { + return flexibleRuleUserList_ == null ? + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.getDefaultInstance() : flexibleRuleUserList_; + } + } + /** + *
+     * Flexible rule representation of visitors with one or multiple actions.
+     * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfoOrBuilder> + getFlexibleRuleUserListFieldBuilder() { + if (flexibleRuleUserListBuilder_ == null) { + flexibleRuleUserListBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo.Builder, com.google.ads.googleads.v11.common.FlexibleRuleUserListInfoOrBuilder>( + getFlexibleRuleUserList(), + getParentForChildren(), + isClean()); + flexibleRuleUserList_ = null; + } + return flexibleRuleUserListBuilder_; + } + private com.google.protobuf.SingleFieldBuilderV3< com.google.ads.googleads.v11.common.CombinedRuleUserListInfo, com.google.ads.googleads.v11.common.CombinedRuleUserListInfo.Builder, com.google.ads.googleads.v11.common.CombinedRuleUserListInfoOrBuilder> combinedRuleUserListBuilder_; /** diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfoOrBuilder.java index c71304a2dd..5668c3cabf 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/RuleBasedUserListInfoOrBuilder.java @@ -40,6 +40,33 @@ public interface RuleBasedUserListInfoOrBuilder extends */ com.google.ads.googleads.v11.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus getPrepopulationStatus(); + /** + *
+   * Flexible rule representation of visitors with one or multiple actions.
+   * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + * @return Whether the flexibleRuleUserList field is set. + */ + boolean hasFlexibleRuleUserList(); + /** + *
+   * Flexible rule representation of visitors with one or multiple actions.
+   * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + * @return The flexibleRuleUserList. + */ + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfo getFlexibleRuleUserList(); + /** + *
+   * Flexible rule representation of visitors with one or multiple actions.
+   * 
+ * + * .google.ads.googleads.v11.common.FlexibleRuleUserListInfo flexible_rule_user_list = 5; + */ + com.google.ads.googleads.v11.common.FlexibleRuleUserListInfoOrBuilder getFlexibleRuleUserListOrBuilder(); + /** *
    * User lists defined by combining two rules.
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Segments.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Segments.java
index 7afc3a5a7b..495cf0c37c 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Segments.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/Segments.java
@@ -899,7 +899,7 @@ public com.google.ads.googleads.v11.common.BudgetCampaignAssociationStatusOrBuil
    * Resource name of the conversion action.
    * 
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return Whether the conversionAction field is set. */ @java.lang.Override @@ -911,7 +911,7 @@ public boolean hasConversionAction() { * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return The conversionAction. */ @java.lang.Override @@ -932,7 +932,7 @@ public java.lang.String getConversionAction() { * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return The bytes for conversionAction. */ @java.lang.Override @@ -1040,10 +1040,10 @@ public java.lang.String getConversionActionName() { /** *
    * This segments your conversion columns by the original conversion and
-   * conversion value vs. the delta if conversions were adjusted. False row has
-   * the data as originally stated; While true row has the delta between data
-   * now and the data as originally stated. Summing the two together results
-   * post-adjustment data.
+   * conversion value versus the delta if conversions were adjusted. False row
+   * has the data as originally stated; While true row has the delta between
+   * data now and the data as originally stated. Summing the two together
+   * results post-adjustment data.
    * 
* * optional bool conversion_adjustment = 115; @@ -1056,10 +1056,10 @@ public boolean hasConversionAdjustment() { /** *
    * This segments your conversion columns by the original conversion and
-   * conversion value vs. the delta if conversions were adjusted. False row has
-   * the data as originally stated; While true row has the delta between data
-   * now and the data as originally stated. Summing the two together results
-   * post-adjustment data.
+   * conversion value versus the delta if conversions were adjusted. False row
+   * has the data as originally stated; While true row has the delta between
+   * data now and the data as originally stated. Summing the two together
+   * results post-adjustment data.
    * 
* * optional bool conversion_adjustment = 115; @@ -1160,7 +1160,7 @@ public boolean getConversionAdjustment() { /** *
    * Date to which metrics apply.
-   * yyyy-MM-dd format, e.g., 2018-04-17.
+   * yyyy-MM-dd format, for example, 2018-04-17.
    * 
* * optional string date = 79; @@ -1173,7 +1173,7 @@ public boolean hasDate() { /** *
    * Date to which metrics apply.
-   * yyyy-MM-dd format, e.g., 2018-04-17.
+   * yyyy-MM-dd format, for example, 2018-04-17.
    * 
* * optional string date = 79; @@ -1195,7 +1195,7 @@ public java.lang.String getDate() { /** *
    * Date to which metrics apply.
-   * yyyy-MM-dd format, e.g., 2018-04-17.
+   * yyyy-MM-dd format, for example, 2018-04-17.
    * 
* * optional string date = 79; @@ -1220,7 +1220,7 @@ public java.lang.String getDate() { private int dayOfWeek_; /** *
-   * Day of the week, e.g., MONDAY.
+   * Day of the week, for example, MONDAY.
    * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -1231,7 +1231,7 @@ public java.lang.String getDate() { } /** *
-   * Day of the week, e.g., MONDAY.
+   * Day of the week, for example, MONDAY.
    * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -2663,7 +2663,7 @@ public java.lang.String getMonth() { private int monthOfYear_; /** *
-   * Month of the year, e.g., January.
+   * Month of the year, for example, January.
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -2674,7 +2674,7 @@ public java.lang.String getMonth() { } /** *
-   * Month of the year, e.g., January.
+   * Month of the year, for example, January.
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -4132,8 +4132,8 @@ public java.lang.String getProductTypeL5() { /** *
    * Quarter as represented by the date of the first day of a quarter.
-   * Uses the calendar year for quarters, e.g., the second quarter of 2018
-   * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+   * Uses the calendar year for quarters, for example, the second quarter of
+   * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
    * 
* * optional string quarter = 128; @@ -4146,8 +4146,8 @@ public boolean hasQuarter() { /** *
    * Quarter as represented by the date of the first day of a quarter.
-   * Uses the calendar year for quarters, e.g., the second quarter of 2018
-   * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+   * Uses the calendar year for quarters, for example, the second quarter of
+   * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
    * 
* * optional string quarter = 128; @@ -4169,8 +4169,8 @@ public java.lang.String getQuarter() { /** *
    * Quarter as represented by the date of the first day of a quarter.
-   * Uses the calendar year for quarters, e.g., the second quarter of 2018
-   * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+   * Uses the calendar year for quarters, for example, the second quarter of
+   * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
    * 
* * optional string quarter = 128; @@ -4489,7 +4489,8 @@ public int getYear() { /** *
    * iOS Store Kit Ad Network conversion value.
-   * Null value means this segment is not applicable, e.g. non-iOS campaign.
+   * Null value means this segment is not applicable, for example, non-iOS
+   * campaign.
    * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -4502,7 +4503,8 @@ public boolean hasSkAdNetworkConversionValue() { /** *
    * iOS Store Kit Ad Network conversion value.
-   * Null value means this segment is not applicable, e.g. non-iOS campaign.
+   * Null value means this segment is not applicable, for example, non-iOS
+   * campaign.
    * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -4572,8 +4574,8 @@ public long getSkAdNetworkConversionValue() { /** *
    * App where the ad that drove the iOS Store Kit Ad Network install was
-   * shown. Null value means this segment is not applicable, e.g. non-iOS
-   * campaign, or was not present in any postbacks sent by Apple.
+   * shown. Null value means this segment is not applicable, for example,
+   * non-iOS campaign, or was not present in any postbacks sent by Apple.
    * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -4586,8 +4588,8 @@ public boolean hasSkAdNetworkSourceApp() { /** *
    * App where the ad that drove the iOS Store Kit Ad Network install was
-   * shown. Null value means this segment is not applicable, e.g. non-iOS
-   * campaign, or was not present in any postbacks sent by Apple.
+   * shown. Null value means this segment is not applicable, for example,
+   * non-iOS campaign, or was not present in any postbacks sent by Apple.
    * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -4600,8 +4602,8 @@ public com.google.ads.googleads.v11.common.SkAdNetworkSourceApp getSkAdNetworkSo /** *
    * App where the ad that drove the iOS Store Kit Ad Network install was
-   * shown. Null value means this segment is not applicable, e.g. non-iOS
-   * campaign, or was not present in any postbacks sent by Apple.
+   * shown. Null value means this segment is not applicable, for example,
+   * non-iOS campaign, or was not present in any postbacks sent by Apple.
    * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -4645,12 +4647,13 @@ public com.google.ads.googleads.v11.common.SkAdNetworkSourceAppOrBuilder getSkAd * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -4665,12 +4668,13 @@ public boolean hasAssetInteractionTarget() { * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -4685,12 +4689,13 @@ public com.google.ads.googleads.v11.common.AssetInteractionTarget getAssetIntera * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -7551,7 +7556,7 @@ public Builder clearClickType() { * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return Whether the conversionAction field is set. */ public boolean hasConversionAction() { @@ -7562,7 +7567,7 @@ public boolean hasConversionAction() { * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return The conversionAction. */ public java.lang.String getConversionAction() { @@ -7582,7 +7587,7 @@ public java.lang.String getConversionAction() { * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return The bytes for conversionAction. */ public com.google.protobuf.ByteString @@ -7603,7 +7608,7 @@ public java.lang.String getConversionAction() { * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @param value The conversionAction to set. * @return This builder for chaining. */ @@ -7622,7 +7627,7 @@ public Builder setConversionAction( * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return This builder for chaining. */ public Builder clearConversionAction() { @@ -7636,7 +7641,7 @@ public Builder clearConversionAction() { * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @param value The bytes for conversionAction to set. * @return This builder for chaining. */ @@ -7837,10 +7842,10 @@ public Builder setConversionActionNameBytes( /** *
      * This segments your conversion columns by the original conversion and
-     * conversion value vs. the delta if conversions were adjusted. False row has
-     * the data as originally stated; While true row has the delta between data
-     * now and the data as originally stated. Summing the two together results
-     * post-adjustment data.
+     * conversion value versus the delta if conversions were adjusted. False row
+     * has the data as originally stated; While true row has the delta between
+     * data now and the data as originally stated. Summing the two together
+     * results post-adjustment data.
      * 
* * optional bool conversion_adjustment = 115; @@ -7853,10 +7858,10 @@ public boolean hasConversionAdjustment() { /** *
      * This segments your conversion columns by the original conversion and
-     * conversion value vs. the delta if conversions were adjusted. False row has
-     * the data as originally stated; While true row has the delta between data
-     * now and the data as originally stated. Summing the two together results
-     * post-adjustment data.
+     * conversion value versus the delta if conversions were adjusted. False row
+     * has the data as originally stated; While true row has the delta between
+     * data now and the data as originally stated. Summing the two together
+     * results post-adjustment data.
      * 
* * optional bool conversion_adjustment = 115; @@ -7869,10 +7874,10 @@ public boolean getConversionAdjustment() { /** *
      * This segments your conversion columns by the original conversion and
-     * conversion value vs. the delta if conversions were adjusted. False row has
-     * the data as originally stated; While true row has the delta between data
-     * now and the data as originally stated. Summing the two together results
-     * post-adjustment data.
+     * conversion value versus the delta if conversions were adjusted. False row
+     * has the data as originally stated; While true row has the delta between
+     * data now and the data as originally stated. Summing the two together
+     * results post-adjustment data.
      * 
* * optional bool conversion_adjustment = 115; @@ -7888,10 +7893,10 @@ public Builder setConversionAdjustment(boolean value) { /** *
      * This segments your conversion columns by the original conversion and
-     * conversion value vs. the delta if conversions were adjusted. False row has
-     * the data as originally stated; While true row has the delta between data
-     * now and the data as originally stated. Summing the two together results
-     * post-adjustment data.
+     * conversion value versus the delta if conversions were adjusted. False row
+     * has the data as originally stated; While true row has the delta between
+     * data now and the data as originally stated. Summing the two together
+     * results post-adjustment data.
      * 
* * optional bool conversion_adjustment = 115; @@ -8140,7 +8145,7 @@ public Builder clearConversionOrAdjustmentLagBucket() { /** *
      * Date to which metrics apply.
-     * yyyy-MM-dd format, e.g., 2018-04-17.
+     * yyyy-MM-dd format, for example, 2018-04-17.
      * 
* * optional string date = 79; @@ -8152,7 +8157,7 @@ public boolean hasDate() { /** *
      * Date to which metrics apply.
-     * yyyy-MM-dd format, e.g., 2018-04-17.
+     * yyyy-MM-dd format, for example, 2018-04-17.
      * 
* * optional string date = 79; @@ -8173,7 +8178,7 @@ public java.lang.String getDate() { /** *
      * Date to which metrics apply.
-     * yyyy-MM-dd format, e.g., 2018-04-17.
+     * yyyy-MM-dd format, for example, 2018-04-17.
      * 
* * optional string date = 79; @@ -8195,7 +8200,7 @@ public java.lang.String getDate() { /** *
      * Date to which metrics apply.
-     * yyyy-MM-dd format, e.g., 2018-04-17.
+     * yyyy-MM-dd format, for example, 2018-04-17.
      * 
* * optional string date = 79; @@ -8215,7 +8220,7 @@ public Builder setDate( /** *
      * Date to which metrics apply.
-     * yyyy-MM-dd format, e.g., 2018-04-17.
+     * yyyy-MM-dd format, for example, 2018-04-17.
      * 
* * optional string date = 79; @@ -8230,7 +8235,7 @@ public Builder clearDate() { /** *
      * Date to which metrics apply.
-     * yyyy-MM-dd format, e.g., 2018-04-17.
+     * yyyy-MM-dd format, for example, 2018-04-17.
      * 
* * optional string date = 79; @@ -8252,7 +8257,7 @@ public Builder setDateBytes( private int dayOfWeek_ = 0; /** *
-     * Day of the week, e.g., MONDAY.
+     * Day of the week, for example, MONDAY.
      * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -8263,7 +8268,7 @@ public Builder setDateBytes( } /** *
-     * Day of the week, e.g., MONDAY.
+     * Day of the week, for example, MONDAY.
      * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -8278,7 +8283,7 @@ public Builder setDayOfWeekValue(int value) { } /** *
-     * Day of the week, e.g., MONDAY.
+     * Day of the week, for example, MONDAY.
      * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -8292,7 +8297,7 @@ public com.google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek getDayOfWeek() } /** *
-     * Day of the week, e.g., MONDAY.
+     * Day of the week, for example, MONDAY.
      * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -8310,7 +8315,7 @@ public Builder setDayOfWeek(com.google.ads.googleads.v11.enums.DayOfWeekEnum.Day } /** *
-     * Day of the week, e.g., MONDAY.
+     * Day of the week, for example, MONDAY.
      * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -11201,7 +11206,7 @@ public Builder setMonthBytes( private int monthOfYear_ = 0; /** *
-     * Month of the year, e.g., January.
+     * Month of the year, for example, January.
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -11212,7 +11217,7 @@ public Builder setMonthBytes( } /** *
-     * Month of the year, e.g., January.
+     * Month of the year, for example, January.
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -11227,7 +11232,7 @@ public Builder setMonthOfYearValue(int value) { } /** *
-     * Month of the year, e.g., January.
+     * Month of the year, for example, January.
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -11241,7 +11246,7 @@ public com.google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear getMonthOf } /** *
-     * Month of the year, e.g., January.
+     * Month of the year, for example, January.
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -11259,7 +11264,7 @@ public Builder setMonthOfYear(com.google.ads.googleads.v11.enums.MonthOfYearEnum } /** *
-     * Month of the year, e.g., January.
+     * Month of the year, for example, January.
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -14042,8 +14047,8 @@ public Builder setProductTypeL5Bytes( /** *
      * Quarter as represented by the date of the first day of a quarter.
-     * Uses the calendar year for quarters, e.g., the second quarter of 2018
-     * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+     * Uses the calendar year for quarters, for example, the second quarter of
+     * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
      * 
* * optional string quarter = 128; @@ -14055,8 +14060,8 @@ public boolean hasQuarter() { /** *
      * Quarter as represented by the date of the first day of a quarter.
-     * Uses the calendar year for quarters, e.g., the second quarter of 2018
-     * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+     * Uses the calendar year for quarters, for example, the second quarter of
+     * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
      * 
* * optional string quarter = 128; @@ -14077,8 +14082,8 @@ public java.lang.String getQuarter() { /** *
      * Quarter as represented by the date of the first day of a quarter.
-     * Uses the calendar year for quarters, e.g., the second quarter of 2018
-     * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+     * Uses the calendar year for quarters, for example, the second quarter of
+     * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
      * 
* * optional string quarter = 128; @@ -14100,8 +14105,8 @@ public java.lang.String getQuarter() { /** *
      * Quarter as represented by the date of the first day of a quarter.
-     * Uses the calendar year for quarters, e.g., the second quarter of 2018
-     * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+     * Uses the calendar year for quarters, for example, the second quarter of
+     * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
      * 
* * optional string quarter = 128; @@ -14121,8 +14126,8 @@ public Builder setQuarter( /** *
      * Quarter as represented by the date of the first day of a quarter.
-     * Uses the calendar year for quarters, e.g., the second quarter of 2018
-     * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+     * Uses the calendar year for quarters, for example, the second quarter of
+     * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
      * 
* * optional string quarter = 128; @@ -14137,8 +14142,8 @@ public Builder clearQuarter() { /** *
      * Quarter as represented by the date of the first day of a quarter.
-     * Uses the calendar year for quarters, e.g., the second quarter of 2018
-     * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+     * Uses the calendar year for quarters, for example, the second quarter of
+     * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
      * 
* * optional string quarter = 128; @@ -14836,7 +14841,8 @@ public Builder clearYear() { /** *
      * iOS Store Kit Ad Network conversion value.
-     * Null value means this segment is not applicable, e.g. non-iOS campaign.
+     * Null value means this segment is not applicable, for example, non-iOS
+     * campaign.
      * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -14849,7 +14855,8 @@ public boolean hasSkAdNetworkConversionValue() { /** *
      * iOS Store Kit Ad Network conversion value.
-     * Null value means this segment is not applicable, e.g. non-iOS campaign.
+     * Null value means this segment is not applicable, for example, non-iOS
+     * campaign.
      * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -14862,7 +14869,8 @@ public long getSkAdNetworkConversionValue() { /** *
      * iOS Store Kit Ad Network conversion value.
-     * Null value means this segment is not applicable, e.g. non-iOS campaign.
+     * Null value means this segment is not applicable, for example, non-iOS
+     * campaign.
      * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -14878,7 +14886,8 @@ public Builder setSkAdNetworkConversionValue(long value) { /** *
      * iOS Store Kit Ad Network conversion value.
-     * Null value means this segment is not applicable, e.g. non-iOS campaign.
+     * Null value means this segment is not applicable, for example, non-iOS
+     * campaign.
      * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -15045,8 +15054,8 @@ public Builder clearSkAdNetworkAdEventType() { /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15058,8 +15067,8 @@ public boolean hasSkAdNetworkSourceApp() { /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15075,8 +15084,8 @@ public com.google.ads.googleads.v11.common.SkAdNetworkSourceApp getSkAdNetworkSo /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15097,8 +15106,8 @@ public Builder setSkAdNetworkSourceApp(com.google.ads.googleads.v11.common.SkAdN /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15117,8 +15126,8 @@ public Builder setSkAdNetworkSourceApp( /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15143,8 +15152,8 @@ public Builder mergeSkAdNetworkSourceApp(com.google.ads.googleads.v11.common.SkA /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15162,8 +15171,8 @@ public Builder clearSkAdNetworkSourceApp() { /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15176,8 +15185,8 @@ public com.google.ads.googleads.v11.common.SkAdNetworkSourceApp.Builder getSkAdN /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15193,8 +15202,8 @@ public com.google.ads.googleads.v11.common.SkAdNetworkSourceAppOrBuilder getSkAd /** *
      * App where the ad that drove the iOS Store Kit Ad Network install was
-     * shown. Null value means this segment is not applicable, e.g. non-iOS
-     * campaign, or was not present in any postbacks sent by Apple.
+     * shown. Null value means this segment is not applicable, for example,
+     * non-iOS campaign, or was not present in any postbacks sent by Apple.
      * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -15295,12 +15304,13 @@ public Builder clearSkAdNetworkAttributionCredit() { * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15314,12 +15324,13 @@ public boolean hasAssetInteractionTarget() { * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15337,12 +15348,13 @@ public com.google.ads.googleads.v11.common.AssetInteractionTarget getAssetIntera * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15365,12 +15377,13 @@ public Builder setAssetInteractionTarget(com.google.ads.googleads.v11.common.Ass * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15391,12 +15404,13 @@ public Builder setAssetInteractionTarget( * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15423,12 +15437,13 @@ public Builder mergeAssetInteractionTarget(com.google.ads.googleads.v11.common.A * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15448,12 +15463,13 @@ public Builder clearAssetInteractionTarget() { * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15468,12 +15484,13 @@ public com.google.ads.googleads.v11.common.AssetInteractionTarget.Builder getAss * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -15491,12 +15508,13 @@ public com.google.ads.googleads.v11.common.AssetInteractionTargetOrBuilder getAs * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsOrBuilder.java index 2de552e29b..d7584f8054 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsOrBuilder.java @@ -125,7 +125,7 @@ public interface SegmentsOrBuilder extends * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return Whether the conversionAction field is set. */ boolean hasConversionAction(); @@ -134,7 +134,7 @@ public interface SegmentsOrBuilder extends * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return The conversionAction. */ java.lang.String getConversionAction(); @@ -143,7 +143,7 @@ public interface SegmentsOrBuilder extends * Resource name of the conversion action. *
* - * optional string conversion_action = 113; + * optional string conversion_action = 113 [(.google.api.resource_reference) = { ... } * @return The bytes for conversionAction. */ com.google.protobuf.ByteString @@ -200,10 +200,10 @@ public interface SegmentsOrBuilder extends /** *
    * This segments your conversion columns by the original conversion and
-   * conversion value vs. the delta if conversions were adjusted. False row has
-   * the data as originally stated; While true row has the delta between data
-   * now and the data as originally stated. Summing the two together results
-   * post-adjustment data.
+   * conversion value versus the delta if conversions were adjusted. False row
+   * has the data as originally stated; While true row has the delta between
+   * data now and the data as originally stated. Summing the two together
+   * results post-adjustment data.
    * 
* * optional bool conversion_adjustment = 115; @@ -213,10 +213,10 @@ public interface SegmentsOrBuilder extends /** *
    * This segments your conversion columns by the original conversion and
-   * conversion value vs. the delta if conversions were adjusted. False row has
-   * the data as originally stated; While true row has the delta between data
-   * now and the data as originally stated. Summing the two together results
-   * post-adjustment data.
+   * conversion value versus the delta if conversions were adjusted. False row
+   * has the data as originally stated; While true row has the delta between
+   * data now and the data as originally stated. Summing the two together
+   * results post-adjustment data.
    * 
* * optional bool conversion_adjustment = 115; @@ -288,7 +288,7 @@ public interface SegmentsOrBuilder extends /** *
    * Date to which metrics apply.
-   * yyyy-MM-dd format, e.g., 2018-04-17.
+   * yyyy-MM-dd format, for example, 2018-04-17.
    * 
* * optional string date = 79; @@ -298,7 +298,7 @@ public interface SegmentsOrBuilder extends /** *
    * Date to which metrics apply.
-   * yyyy-MM-dd format, e.g., 2018-04-17.
+   * yyyy-MM-dd format, for example, 2018-04-17.
    * 
* * optional string date = 79; @@ -308,7 +308,7 @@ public interface SegmentsOrBuilder extends /** *
    * Date to which metrics apply.
-   * yyyy-MM-dd format, e.g., 2018-04-17.
+   * yyyy-MM-dd format, for example, 2018-04-17.
    * 
* * optional string date = 79; @@ -319,7 +319,7 @@ public interface SegmentsOrBuilder extends /** *
-   * Day of the week, e.g., MONDAY.
+   * Day of the week, for example, MONDAY.
    * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -328,7 +328,7 @@ public interface SegmentsOrBuilder extends int getDayOfWeekValue(); /** *
-   * Day of the week, e.g., MONDAY.
+   * Day of the week, for example, MONDAY.
    * 
* * .google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek day_of_week = 5; @@ -1125,7 +1125,7 @@ public interface SegmentsOrBuilder extends /** *
-   * Month of the year, e.g., January.
+   * Month of the year, for example, January.
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -1134,7 +1134,7 @@ public interface SegmentsOrBuilder extends int getMonthOfYearValue(); /** *
-   * Month of the year, e.g., January.
+   * Month of the year, for example, January.
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month_of_year = 18; @@ -1900,8 +1900,8 @@ public interface SegmentsOrBuilder extends /** *
    * Quarter as represented by the date of the first day of a quarter.
-   * Uses the calendar year for quarters, e.g., the second quarter of 2018
-   * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+   * Uses the calendar year for quarters, for example, the second quarter of
+   * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
    * 
* * optional string quarter = 128; @@ -1911,8 +1911,8 @@ public interface SegmentsOrBuilder extends /** *
    * Quarter as represented by the date of the first day of a quarter.
-   * Uses the calendar year for quarters, e.g., the second quarter of 2018
-   * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+   * Uses the calendar year for quarters, for example, the second quarter of
+   * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
    * 
* * optional string quarter = 128; @@ -1922,8 +1922,8 @@ public interface SegmentsOrBuilder extends /** *
    * Quarter as represented by the date of the first day of a quarter.
-   * Uses the calendar year for quarters, e.g., the second quarter of 2018
-   * starts on 2018-04-01. Formatted as yyyy-MM-dd.
+   * Uses the calendar year for quarters, for example, the second quarter of
+   * 2018 starts on 2018-04-01. Formatted as yyyy-MM-dd.
    * 
* * optional string quarter = 128; @@ -2122,7 +2122,8 @@ public interface SegmentsOrBuilder extends /** *
    * iOS Store Kit Ad Network conversion value.
-   * Null value means this segment is not applicable, e.g. non-iOS campaign.
+   * Null value means this segment is not applicable, for example, non-iOS
+   * campaign.
    * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -2132,7 +2133,8 @@ public interface SegmentsOrBuilder extends /** *
    * iOS Store Kit Ad Network conversion value.
-   * Null value means this segment is not applicable, e.g. non-iOS campaign.
+   * Null value means this segment is not applicable, for example, non-iOS
+   * campaign.
    * 
* * optional int64 sk_ad_network_conversion_value = 137; @@ -2181,8 +2183,8 @@ public interface SegmentsOrBuilder extends /** *
    * App where the ad that drove the iOS Store Kit Ad Network install was
-   * shown. Null value means this segment is not applicable, e.g. non-iOS
-   * campaign, or was not present in any postbacks sent by Apple.
+   * shown. Null value means this segment is not applicable, for example,
+   * non-iOS campaign, or was not present in any postbacks sent by Apple.
    * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -2192,8 +2194,8 @@ public interface SegmentsOrBuilder extends /** *
    * App where the ad that drove the iOS Store Kit Ad Network install was
-   * shown. Null value means this segment is not applicable, e.g. non-iOS
-   * campaign, or was not present in any postbacks sent by Apple.
+   * shown. Null value means this segment is not applicable, for example,
+   * non-iOS campaign, or was not present in any postbacks sent by Apple.
    * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -2203,8 +2205,8 @@ public interface SegmentsOrBuilder extends /** *
    * App where the ad that drove the iOS Store Kit Ad Network install was
-   * shown. Null value means this segment is not applicable, e.g. non-iOS
-   * campaign, or was not present in any postbacks sent by Apple.
+   * shown. Null value means this segment is not applicable, for example,
+   * non-iOS campaign, or was not present in any postbacks sent by Apple.
    * 
* * optional .google.ads.googleads.v11.common.SkAdNetworkSourceApp sk_ad_network_source_app = 143; @@ -2235,12 +2237,13 @@ public interface SegmentsOrBuilder extends * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -2252,12 +2255,13 @@ public interface SegmentsOrBuilder extends * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; @@ -2269,12 +2273,13 @@ public interface SegmentsOrBuilder extends * Only used with CustomerAsset, CampaignAsset and AdGroupAsset metrics. * Indicates whether the interaction metrics occurred on the asset itself * or a different asset or ad unit. - * Interactions (e.g. clicks) are counted across all the parts of the served - * ad (e.g. Ad itself and other components like Sitelinks) when they are - * served together. When interaction_on_this_asset is true, it means the - * interactions are on this specific asset and when interaction_on_this_asset - * is false, it means the interactions is not on this specific asset but on - * other parts of the served ad this asset is served with. + * Interactions (for example, clicks) are counted across all the parts of the + * served ad (for example, Ad itself and other components like Sitelinks) when + * they are served together. When interaction_on_this_asset is true, it means + * the interactions are on this specific asset and when + * interaction_on_this_asset is false, it means the interactions is not on + * this specific asset but on other parts of the served ad this asset is + * served with. *
* * optional .google.ads.googleads.v11.common.AssetInteractionTarget asset_interaction_target = 139; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsProto.java index c196df2fec..1e842d56d6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SegmentsProto.java @@ -92,190 +92,191 @@ public static void registerAllExtensions( "ion_credit.proto\032 headlines_; /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -129,8 +129,8 @@ public java.util.List getHeadli } /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -142,8 +142,8 @@ public java.util.List getHeadli } /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -154,8 +154,8 @@ public int getHeadlinesCount() { } /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -166,8 +166,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset getHeadlines(int index) { } /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -182,8 +182,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBu private java.util.List descriptions_; /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -194,8 +194,8 @@ public java.util.List getDescri } /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -207,8 +207,8 @@ public java.util.List getDescri } /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -219,8 +219,8 @@ public int getDescriptionsCount() { } /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -231,8 +231,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset getDescriptions(int index } /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -658,8 +658,8 @@ private void ensureHeadlinesIsMutable() { /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -673,8 +673,8 @@ public java.util.List getHeadli } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -688,8 +688,8 @@ public int getHeadlinesCount() { } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -703,8 +703,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset getHeadlines(int index) { } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -725,8 +725,8 @@ public Builder setHeadlines( } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -744,8 +744,8 @@ public Builder setHeadlines( } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -765,8 +765,8 @@ public Builder addHeadlines(com.google.ads.googleads.v11.common.AdTextAsset valu } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -787,8 +787,8 @@ public Builder addHeadlines( } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -806,8 +806,8 @@ public Builder addHeadlines( } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -825,8 +825,8 @@ public Builder addHeadlines( } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -845,8 +845,8 @@ public Builder addAllHeadlines( } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -863,8 +863,8 @@ public Builder clearHeadlines() { } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -881,8 +881,8 @@ public Builder removeHeadlines(int index) { } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -893,8 +893,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder getHeadlinesBuild } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -908,8 +908,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBu } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -924,8 +924,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBu } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -936,8 +936,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addHeadlinesBuild } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -949,8 +949,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addHeadlinesBuild } /** *
-     * List of text assets for headlines. When the ad serves the headlines will
-     * be selected from this list. 3 headlines must be specified.
+     * List of text assets, each of which corresponds to a headline when the ad
+     * serves. This list consists of a minimum of 3 and up to 15 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -988,8 +988,8 @@ private void ensureDescriptionsIsMutable() { /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1003,8 +1003,8 @@ public java.util.List getDescri } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1018,8 +1018,8 @@ public int getDescriptionsCount() { } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1033,8 +1033,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset getDescriptions(int index } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1055,8 +1055,8 @@ public Builder setDescriptions( } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1074,8 +1074,8 @@ public Builder setDescriptions( } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1095,8 +1095,8 @@ public Builder addDescriptions(com.google.ads.googleads.v11.common.AdTextAsset v } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1117,8 +1117,8 @@ public Builder addDescriptions( } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1136,8 +1136,8 @@ public Builder addDescriptions( } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1155,8 +1155,8 @@ public Builder addDescriptions( } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1175,8 +1175,8 @@ public Builder addAllDescriptions( } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1193,8 +1193,8 @@ public Builder clearDescriptions() { } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1211,8 +1211,8 @@ public Builder removeDescriptions(int index) { } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1223,8 +1223,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder getDescriptionsBu } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1238,8 +1238,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsO } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1254,8 +1254,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsO } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1266,8 +1266,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addDescriptionsBu } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -1279,8 +1279,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addDescriptionsBu } /** *
-     * List of text assets for descriptions. When the ad serves the descriptions
-     * will be selected from this list. 2 descriptions must be specified.
+     * List of text assets, each of which corresponds to a description when the ad
+     * serves. This list consists of a minimum of 2 and up to 4 text assets.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SmartCampaignAdInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SmartCampaignAdInfoOrBuilder.java index c6748d4bef..aff4ac30fb 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SmartCampaignAdInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/SmartCampaignAdInfoOrBuilder.java @@ -9,8 +9,8 @@ public interface SmartCampaignAdInfoOrBuilder extends /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -19,8 +19,8 @@ public interface SmartCampaignAdInfoOrBuilder extends getHeadlinesList(); /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -28,8 +28,8 @@ public interface SmartCampaignAdInfoOrBuilder extends com.google.ads.googleads.v11.common.AdTextAsset getHeadlines(int index); /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -37,8 +37,8 @@ public interface SmartCampaignAdInfoOrBuilder extends int getHeadlinesCount(); /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -47,8 +47,8 @@ public interface SmartCampaignAdInfoOrBuilder extends getHeadlinesOrBuilderList(); /** *
-   * List of text assets for headlines. When the ad serves the headlines will
-   * be selected from this list. 3 headlines must be specified.
+   * List of text assets, each of which corresponds to a headline when the ad
+   * serves. This list consists of a minimum of 3 and up to 15 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -58,8 +58,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBuilder( /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -68,8 +68,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBuilder( getDescriptionsList(); /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -77,8 +77,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBuilder( com.google.ads.googleads.v11.common.AdTextAsset getDescriptions(int index); /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -86,8 +86,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBuilder( int getDescriptionsCount(); /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; @@ -96,8 +96,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBuilder( getDescriptionsOrBuilderList(); /** *
-   * List of text assets for descriptions. When the ad serves the descriptions
-   * will be selected from this list. 2 descriptions must be specified.
+   * List of text assets, each of which corresponds to a description when the ad
+   * serves. This list consists of a minimum of 2 and up to 4 text assets.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset descriptions = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadata.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadata.java index 9585c12e49..41787c1bd0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadata.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadata.java @@ -122,10 +122,9 @@ private StoreSalesMetadata( private double loyaltyFraction_; /** *
-   * This is the fraction of all transactions that are identifiable (i.e.,
-   * associated with any form of customer information).
-   * Required.
-   * The fraction needs to be between 0 and 1 (excluding 0).
+   * This is the fraction of all transactions that are identifiable (for
+   * example, associated with any form of customer information). Required. The
+   * fraction needs to be between 0 and 1 (excluding 0).
    * 
* * optional double loyalty_fraction = 5; @@ -137,10 +136,9 @@ public boolean hasLoyaltyFraction() { } /** *
-   * This is the fraction of all transactions that are identifiable (i.e.,
-   * associated with any form of customer information).
-   * Required.
-   * The fraction needs to be between 0 and 1 (excluding 0).
+   * This is the fraction of all transactions that are identifiable (for
+   * example, associated with any form of customer information). Required. The
+   * fraction needs to be between 0 and 1 (excluding 0).
    * 
* * optional double loyalty_fraction = 5; @@ -697,10 +695,9 @@ public Builder mergeFrom( private double loyaltyFraction_ ; /** *
-     * This is the fraction of all transactions that are identifiable (i.e.,
-     * associated with any form of customer information).
-     * Required.
-     * The fraction needs to be between 0 and 1 (excluding 0).
+     * This is the fraction of all transactions that are identifiable (for
+     * example, associated with any form of customer information). Required. The
+     * fraction needs to be between 0 and 1 (excluding 0).
      * 
* * optional double loyalty_fraction = 5; @@ -712,10 +709,9 @@ public boolean hasLoyaltyFraction() { } /** *
-     * This is the fraction of all transactions that are identifiable (i.e.,
-     * associated with any form of customer information).
-     * Required.
-     * The fraction needs to be between 0 and 1 (excluding 0).
+     * This is the fraction of all transactions that are identifiable (for
+     * example, associated with any form of customer information). Required. The
+     * fraction needs to be between 0 and 1 (excluding 0).
      * 
* * optional double loyalty_fraction = 5; @@ -727,10 +723,9 @@ public double getLoyaltyFraction() { } /** *
-     * This is the fraction of all transactions that are identifiable (i.e.,
-     * associated with any form of customer information).
-     * Required.
-     * The fraction needs to be between 0 and 1 (excluding 0).
+     * This is the fraction of all transactions that are identifiable (for
+     * example, associated with any form of customer information). Required. The
+     * fraction needs to be between 0 and 1 (excluding 0).
      * 
* * optional double loyalty_fraction = 5; @@ -745,10 +740,9 @@ public Builder setLoyaltyFraction(double value) { } /** *
-     * This is the fraction of all transactions that are identifiable (i.e.,
-     * associated with any form of customer information).
-     * Required.
-     * The fraction needs to be between 0 and 1 (excluding 0).
+     * This is the fraction of all transactions that are identifiable (for
+     * example, associated with any form of customer information). Required. The
+     * fraction needs to be between 0 and 1 (excluding 0).
      * 
* * optional double loyalty_fraction = 5; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadataOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadataOrBuilder.java index 644356373a..f9bf63ec11 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadataOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesMetadataOrBuilder.java @@ -9,10 +9,9 @@ public interface StoreSalesMetadataOrBuilder extends /** *
-   * This is the fraction of all transactions that are identifiable (i.e.,
-   * associated with any form of customer information).
-   * Required.
-   * The fraction needs to be between 0 and 1 (excluding 0).
+   * This is the fraction of all transactions that are identifiable (for
+   * example, associated with any form of customer information). Required. The
+   * fraction needs to be between 0 and 1 (excluding 0).
    * 
* * optional double loyalty_fraction = 5; @@ -21,10 +20,9 @@ public interface StoreSalesMetadataOrBuilder extends boolean hasLoyaltyFraction(); /** *
-   * This is the fraction of all transactions that are identifiable (i.e.,
-   * associated with any form of customer information).
-   * Required.
-   * The fraction needs to be between 0 and 1 (excluding 0).
+   * This is the fraction of all transactions that are identifiable (for
+   * example, associated with any form of customer information). Required. The
+   * fraction needs to be between 0 and 1 (excluding 0).
    * 
* * optional double loyalty_fraction = 5; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesThirdPartyMetadata.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesThirdPartyMetadata.java index 117920f67f..2806625648 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesThirdPartyMetadata.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/StoreSalesThirdPartyMetadata.java @@ -6,7 +6,7 @@ /** *
  * Metadata for a third party Store Sales.
- * This product is only for customers on the allow-list. Please contact your
+ * This product is only for customers on the allow-list. Contact your
  * Google business development representative for details on the upload
  * configuration.
  * 
@@ -621,7 +621,7 @@ protected Builder newBuilderForType( /** *
    * Metadata for a third party Store Sales.
-   * This product is only for customers on the allow-list. Please contact your
+   * This product is only for customers on the allow-list. Contact your
    * Google business development representative for details on the upload
    * configuration.
    * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippet.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippet.java index b4dbef9b2c..5d0098b0c1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippet.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippet.java @@ -148,7 +148,7 @@ private TagSnippet( /** *
    * The format of the web page where the tracking tag and snippet will be
-   * installed, e.g. HTML.
+   * installed, for example, HTML.
    * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; @@ -160,7 +160,7 @@ private TagSnippet( /** *
    * The format of the web page where the tracking tag and snippet will be
-   * installed, e.g. HTML.
+   * installed, for example, HTML.
    * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; @@ -749,7 +749,7 @@ public Builder clearType() { /** *
      * The format of the web page where the tracking tag and snippet will be
-     * installed, e.g. HTML.
+     * installed, for example, HTML.
      * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; @@ -761,7 +761,7 @@ public Builder clearType() { /** *
      * The format of the web page where the tracking tag and snippet will be
-     * installed, e.g. HTML.
+     * installed, for example, HTML.
      * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; @@ -777,7 +777,7 @@ public Builder setPageFormatValue(int value) { /** *
      * The format of the web page where the tracking tag and snippet will be
-     * installed, e.g. HTML.
+     * installed, for example, HTML.
      * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; @@ -792,7 +792,7 @@ public com.google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCod /** *
      * The format of the web page where the tracking tag and snippet will be
-     * installed, e.g. HTML.
+     * installed, for example, HTML.
      * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; @@ -811,7 +811,7 @@ public Builder setPageFormat(com.google.ads.googleads.v11.enums.TrackingCodePage /** *
      * The format of the web page where the tracking tag and snippet will be
-     * installed, e.g. HTML.
+     * installed, for example, HTML.
      * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippetOrBuilder.java index 4d1e8e6c3b..b5ce362216 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TagSnippetOrBuilder.java @@ -29,7 +29,7 @@ public interface TagSnippetOrBuilder extends /** *
    * The format of the web page where the tracking tag and snippet will be
-   * installed, e.g. HTML.
+   * installed, for example, HTML.
    * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; @@ -39,7 +39,7 @@ public interface TagSnippetOrBuilder extends /** *
    * The format of the web page where the tracking tag and snippet will be
-   * installed, e.g. HTML.
+   * installed, for example, HTML.
    * 
* * .google.ads.googleads.v11.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat page_format = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShare.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShare.java index cdc92ea6e0..9039ba6c0b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShare.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShare.java @@ -138,8 +138,8 @@ private TargetImpressionShare( private long locationFractionMicros_; /** *
-   * The desired fraction of ads to be shown in the targeted location in micros.
-   * E.g. 1% equals 10,000.
+   * The chosen fraction of ads to be shown in the targeted location in micros.
+   * For example, 1% equals 10,000.
    * 
* * optional int64 location_fraction_micros = 4; @@ -151,8 +151,8 @@ public boolean hasLocationFractionMicros() { } /** *
-   * The desired fraction of ads to be shown in the targeted location in micros.
-   * E.g. 1% equals 10,000.
+   * The chosen fraction of ads to be shown in the targeted location in micros.
+   * For example, 1% equals 10,000.
    * 
* * optional int64 location_fraction_micros = 4; @@ -634,8 +634,8 @@ public Builder clearLocation() { private long locationFractionMicros_ ; /** *
-     * The desired fraction of ads to be shown in the targeted location in micros.
-     * E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in micros.
+     * For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 4; @@ -647,8 +647,8 @@ public boolean hasLocationFractionMicros() { } /** *
-     * The desired fraction of ads to be shown in the targeted location in micros.
-     * E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in micros.
+     * For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 4; @@ -660,8 +660,8 @@ public long getLocationFractionMicros() { } /** *
-     * The desired fraction of ads to be shown in the targeted location in micros.
-     * E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in micros.
+     * For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 4; @@ -676,8 +676,8 @@ public Builder setLocationFractionMicros(long value) { } /** *
-     * The desired fraction of ads to be shown in the targeted location in micros.
-     * E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in micros.
+     * For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareOrBuilder.java index ea846abbf9..37ff820035 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareOrBuilder.java @@ -28,8 +28,8 @@ public interface TargetImpressionShareOrBuilder extends /** *
-   * The desired fraction of ads to be shown in the targeted location in micros.
-   * E.g. 1% equals 10,000.
+   * The chosen fraction of ads to be shown in the targeted location in micros.
+   * For example, 1% equals 10,000.
    * 
* * optional int64 location_fraction_micros = 4; @@ -38,8 +38,8 @@ public interface TargetImpressionShareOrBuilder extends boolean hasLocationFractionMicros(); /** *
-   * The desired fraction of ads to be shown in the targeted location in micros.
-   * E.g. 1% equals 10,000.
+   * The chosen fraction of ads to be shown in the targeted location in micros.
+   * For example, 1% equals 10,000.
    * 
* * optional int64 location_fraction_micros = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPoint.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPoint.java index 7b98805dbc..2efc0cb152 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPoint.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPoint.java @@ -142,8 +142,8 @@ private TargetImpressionShareSimulationPoint( *
    * The simulated target impression share value (in micros) upon which
    * projected metrics are based.
-   * E.g. 10% impression share, which is equal to 0.1, is stored as 100_000.
-   * This value is validated and will not exceed 1M (100%).
+   * For example, 10% impression share, which is equal to 0.1, is stored as
+   * 100_000. This value is validated and will not exceed 1M (100%).
    * 
* * int64 target_impression_share_micros = 1; @@ -769,8 +769,8 @@ public Builder mergeFrom( *
      * The simulated target impression share value (in micros) upon which
      * projected metrics are based.
-     * E.g. 10% impression share, which is equal to 0.1, is stored as 100_000.
-     * This value is validated and will not exceed 1M (100%).
+     * For example, 10% impression share, which is equal to 0.1, is stored as
+     * 100_000. This value is validated and will not exceed 1M (100%).
      * 
* * int64 target_impression_share_micros = 1; @@ -784,8 +784,8 @@ public long getTargetImpressionShareMicros() { *
      * The simulated target impression share value (in micros) upon which
      * projected metrics are based.
-     * E.g. 10% impression share, which is equal to 0.1, is stored as 100_000.
-     * This value is validated and will not exceed 1M (100%).
+     * For example, 10% impression share, which is equal to 0.1, is stored as
+     * 100_000. This value is validated and will not exceed 1M (100%).
      * 
* * int64 target_impression_share_micros = 1; @@ -802,8 +802,8 @@ public Builder setTargetImpressionShareMicros(long value) { *
      * The simulated target impression share value (in micros) upon which
      * projected metrics are based.
-     * E.g. 10% impression share, which is equal to 0.1, is stored as 100_000.
-     * This value is validated and will not exceed 1M (100%).
+     * For example, 10% impression share, which is equal to 0.1, is stored as
+     * 100_000. This value is validated and will not exceed 1M (100%).
      * 
* * int64 target_impression_share_micros = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPointOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPointOrBuilder.java index f7ea174b89..e53f10e3f4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPointOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetImpressionShareSimulationPointOrBuilder.java @@ -11,8 +11,8 @@ public interface TargetImpressionShareSimulationPointOrBuilder extends *
    * The simulated target impression share value (in micros) upon which
    * projected metrics are based.
-   * E.g. 10% impression share, which is equal to 0.1, is stored as 100_000.
-   * This value is validated and will not exceed 1M (100%).
+   * For example, 10% impression share, which is equal to 0.1, is stored as
+   * 100_000. This value is validated and will not exceed 1M (100%).
    * 
* * int64 target_impression_share_micros = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoas.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoas.java index acc835c86a..0fec8384f4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoas.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoas.java @@ -108,7 +108,7 @@ private TargetRoas( private double targetRoas_; /** *
-   * Required. The desired revenue (based on conversion data) per unit of spend.
+   * Required. The chosen revenue (based on conversion data) per unit of spend.
    * Value must be between 0.01 and 1000.0, inclusive.
    * 
* @@ -121,7 +121,7 @@ public boolean hasTargetRoas() { } /** *
-   * Required. The desired revenue (based on conversion data) per unit of spend.
+   * Required. The chosen revenue (based on conversion data) per unit of spend.
    * Value must be between 0.01 and 1000.0, inclusive.
    * 
* @@ -571,7 +571,7 @@ public Builder mergeFrom( private double targetRoas_ ; /** *
-     * Required. The desired revenue (based on conversion data) per unit of spend.
+     * Required. The chosen revenue (based on conversion data) per unit of spend.
      * Value must be between 0.01 and 1000.0, inclusive.
      * 
* @@ -584,7 +584,7 @@ public boolean hasTargetRoas() { } /** *
-     * Required. The desired revenue (based on conversion data) per unit of spend.
+     * Required. The chosen revenue (based on conversion data) per unit of spend.
      * Value must be between 0.01 and 1000.0, inclusive.
      * 
* @@ -597,7 +597,7 @@ public double getTargetRoas() { } /** *
-     * Required. The desired revenue (based on conversion data) per unit of spend.
+     * Required. The chosen revenue (based on conversion data) per unit of spend.
      * Value must be between 0.01 and 1000.0, inclusive.
      * 
* @@ -613,7 +613,7 @@ public Builder setTargetRoas(double value) { } /** *
-     * Required. The desired revenue (based on conversion data) per unit of spend.
+     * Required. The chosen revenue (based on conversion data) per unit of spend.
      * Value must be between 0.01 and 1000.0, inclusive.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoasOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoasOrBuilder.java index 9db0d4acda..af5df79ed2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoasOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/TargetRoasOrBuilder.java @@ -9,7 +9,7 @@ public interface TargetRoasOrBuilder extends /** *
-   * Required. The desired revenue (based on conversion data) per unit of spend.
+   * Required. The chosen revenue (based on conversion data) per unit of spend.
    * Value must be between 0.01 and 1000.0, inclusive.
    * 
* @@ -19,7 +19,7 @@ public interface TargetRoasOrBuilder extends boolean hasTargetRoas(); /** *
-   * Required. The desired revenue (based on conversion data) per unit of spend.
+   * Required. The chosen revenue (based on conversion data) per unit of spend.
    * Value must be between 0.01 and 1000.0, inclusive.
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttribute.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttribute.java index 4407b5e2b4..d0fb7e9504 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttribute.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttribute.java @@ -23,6 +23,9 @@ private UserAttribute(com.google.protobuf.GeneratedMessageV3.Builder builder) private UserAttribute() { lastPurchaseDateTime_ = ""; acquisitionDateTime_ = ""; + lifecycleStage_ = ""; + firstPurchaseDateTime_ = ""; + eventAttribute_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -101,6 +104,27 @@ private UserAttribute( bitField0_ |= 0x00000004; break; } + case 66: { + java.lang.String s = input.readStringRequireUtf8(); + + lifecycleStage_ = s; + break; + } + case 74: { + java.lang.String s = input.readStringRequireUtf8(); + + firstPurchaseDateTime_ = s; + break; + } + case 82: { + if (!((mutable_bitField0_ & 0x00000008) != 0)) { + eventAttribute_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000008; + } + eventAttribute_.add( + input.readMessage(com.google.ads.googleads.v11.common.EventAttribute.parser(), extensionRegistry)); + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -118,6 +142,9 @@ private UserAttribute( throw new com.google.protobuf.InvalidProtocolBufferException( e).setUnfinishedMessage(this); } finally { + if (((mutable_bitField0_ & 0x00000008) != 0)) { + eventAttribute_ = java.util.Collections.unmodifiableList(eventAttribute_); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -373,6 +400,171 @@ public com.google.ads.googleads.v11.common.ShoppingLoyaltyOrBuilder getShoppingL return shoppingLoyalty_ == null ? com.google.ads.googleads.v11.common.ShoppingLoyalty.getDefaultInstance() : shoppingLoyalty_; } + public static final int LIFECYCLE_STAGE_FIELD_NUMBER = 8; + private volatile java.lang.Object lifecycleStage_; + /** + *
+   * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+   * “Lead”, “Active” and “Churned”.
+   * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return The lifecycleStage. + */ + @java.lang.Override + public java.lang.String getLifecycleStage() { + java.lang.Object ref = lifecycleStage_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + lifecycleStage_ = s; + return s; + } + } + /** + *
+   * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+   * “Lead”, “Active” and “Churned”.
+   * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for lifecycleStage. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getLifecycleStageBytes() { + java.lang.Object ref = lifecycleStage_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + lifecycleStage_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int FIRST_PURCHASE_DATE_TIME_FIELD_NUMBER = 9; + private volatile java.lang.Object firstPurchaseDateTime_; + /** + *
+   * Optional. Timestamp of the first purchase made by the user.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The firstPurchaseDateTime. + */ + @java.lang.Override + public java.lang.String getFirstPurchaseDateTime() { + java.lang.Object ref = firstPurchaseDateTime_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + firstPurchaseDateTime_ = s; + return s; + } + } + /** + *
+   * Optional. Timestamp of the first purchase made by the user.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for firstPurchaseDateTime. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getFirstPurchaseDateTimeBytes() { + java.lang.Object ref = firstPurchaseDateTime_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + firstPurchaseDateTime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int EVENT_ATTRIBUTE_FIELD_NUMBER = 10; + private java.util.List eventAttribute_; + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + @java.lang.Override + public java.util.List getEventAttributeList() { + return eventAttribute_; + } + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + @java.lang.Override + public java.util.List + getEventAttributeOrBuilderList() { + return eventAttribute_; + } + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + @java.lang.Override + public int getEventAttributeCount() { + return eventAttribute_.size(); + } + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.EventAttribute getEventAttribute(int index) { + return eventAttribute_.get(index); + } + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.EventAttributeOrBuilder getEventAttributeOrBuilder( + int index) { + return eventAttribute_.get(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -408,6 +600,15 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (((bitField0_ & 0x00000004) != 0)) { output.writeMessage(7, getShoppingLoyalty()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(lifecycleStage_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 8, lifecycleStage_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(firstPurchaseDateTime_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 9, firstPurchaseDateTime_); + } + for (int i = 0; i < eventAttribute_.size(); i++) { + output.writeMessage(10, eventAttribute_.get(i)); + } unknownFields.writeTo(output); } @@ -443,6 +644,16 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(7, getShoppingLoyalty()); } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(lifecycleStage_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(8, lifecycleStage_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(firstPurchaseDateTime_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(9, firstPurchaseDateTime_); + } + for (int i = 0; i < eventAttribute_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(10, eventAttribute_.get(i)); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -481,6 +692,12 @@ public boolean equals(final java.lang.Object obj) { if (!getShoppingLoyalty() .equals(other.getShoppingLoyalty())) return false; } + if (!getLifecycleStage() + .equals(other.getLifecycleStage())) return false; + if (!getFirstPurchaseDateTime() + .equals(other.getFirstPurchaseDateTime())) return false; + if (!getEventAttributeList() + .equals(other.getEventAttributeList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -514,6 +731,14 @@ public int hashCode() { hash = (37 * hash) + SHOPPING_LOYALTY_FIELD_NUMBER; hash = (53 * hash) + getShoppingLoyalty().hashCode(); } + hash = (37 * hash) + LIFECYCLE_STAGE_FIELD_NUMBER; + hash = (53 * hash) + getLifecycleStage().hashCode(); + hash = (37 * hash) + FIRST_PURCHASE_DATE_TIME_FIELD_NUMBER; + hash = (53 * hash) + getFirstPurchaseDateTime().hashCode(); + if (getEventAttributeCount() > 0) { + hash = (37 * hash) + EVENT_ATTRIBUTE_FIELD_NUMBER; + hash = (53 * hash) + getEventAttributeList().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -648,6 +873,7 @@ private void maybeForceBuilderInitialization() { if (com.google.protobuf.GeneratedMessageV3 .alwaysUseFieldBuilders) { getShoppingLoyaltyFieldBuilder(); + getEventAttributeFieldBuilder(); } } @java.lang.Override @@ -671,6 +897,16 @@ public Builder clear() { shoppingLoyaltyBuilder_.clear(); } bitField0_ = (bitField0_ & ~0x00000004); + lifecycleStage_ = ""; + + firstPurchaseDateTime_ = ""; + + if (eventAttributeBuilder_ == null) { + eventAttribute_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000008); + } else { + eventAttributeBuilder_.clear(); + } return this; } @@ -719,6 +955,17 @@ public com.google.ads.googleads.v11.common.UserAttribute buildPartial() { } to_bitField0_ |= 0x00000004; } + result.lifecycleStage_ = lifecycleStage_; + result.firstPurchaseDateTime_ = firstPurchaseDateTime_; + if (eventAttributeBuilder_ == null) { + if (((bitField0_ & 0x00000008) != 0)) { + eventAttribute_ = java.util.Collections.unmodifiableList(eventAttribute_); + bitField0_ = (bitField0_ & ~0x00000008); + } + result.eventAttribute_ = eventAttribute_; + } else { + result.eventAttribute_ = eventAttributeBuilder_.build(); + } result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -791,6 +1038,40 @@ public Builder mergeFrom(com.google.ads.googleads.v11.common.UserAttribute other if (other.hasShoppingLoyalty()) { mergeShoppingLoyalty(other.getShoppingLoyalty()); } + if (!other.getLifecycleStage().isEmpty()) { + lifecycleStage_ = other.lifecycleStage_; + onChanged(); + } + if (!other.getFirstPurchaseDateTime().isEmpty()) { + firstPurchaseDateTime_ = other.firstPurchaseDateTime_; + onChanged(); + } + if (eventAttributeBuilder_ == null) { + if (!other.eventAttribute_.isEmpty()) { + if (eventAttribute_.isEmpty()) { + eventAttribute_ = other.eventAttribute_; + bitField0_ = (bitField0_ & ~0x00000008); + } else { + ensureEventAttributeIsMutable(); + eventAttribute_.addAll(other.eventAttribute_); + } + onChanged(); + } + } else { + if (!other.eventAttribute_.isEmpty()) { + if (eventAttributeBuilder_.isEmpty()) { + eventAttributeBuilder_.dispose(); + eventAttributeBuilder_ = null; + eventAttribute_ = other.eventAttribute_; + bitField0_ = (bitField0_ & ~0x00000008); + eventAttributeBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getEventAttributeFieldBuilder() : null; + } else { + eventAttributeBuilder_.addAllMessages(other.eventAttribute_); + } + } + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1423,6 +1704,548 @@ public com.google.ads.googleads.v11.common.ShoppingLoyaltyOrBuilder getShoppingL } return shoppingLoyaltyBuilder_; } + + private java.lang.Object lifecycleStage_ = ""; + /** + *
+     * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+     * “Lead”, “Active” and “Churned”.
+     * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return The lifecycleStage. + */ + public java.lang.String getLifecycleStage() { + java.lang.Object ref = lifecycleStage_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + lifecycleStage_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+     * “Lead”, “Active” and “Churned”.
+     * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for lifecycleStage. + */ + public com.google.protobuf.ByteString + getLifecycleStageBytes() { + java.lang.Object ref = lifecycleStage_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + lifecycleStage_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+     * “Lead”, “Active” and “Churned”.
+     * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @param value The lifecycleStage to set. + * @return This builder for chaining. + */ + public Builder setLifecycleStage( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + lifecycleStage_ = value; + onChanged(); + return this; + } + /** + *
+     * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+     * “Lead”, “Active” and “Churned”.
+     * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return This builder for chaining. + */ + public Builder clearLifecycleStage() { + + lifecycleStage_ = getDefaultInstance().getLifecycleStage(); + onChanged(); + return this; + } + /** + *
+     * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+     * “Lead”, “Active” and “Churned”.
+     * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @param value The bytes for lifecycleStage to set. + * @return This builder for chaining. + */ + public Builder setLifecycleStageBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + lifecycleStage_ = value; + onChanged(); + return this; + } + + private java.lang.Object firstPurchaseDateTime_ = ""; + /** + *
+     * Optional. Timestamp of the first purchase made by the user.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The firstPurchaseDateTime. + */ + public java.lang.String getFirstPurchaseDateTime() { + java.lang.Object ref = firstPurchaseDateTime_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + firstPurchaseDateTime_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * Optional. Timestamp of the first purchase made by the user.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for firstPurchaseDateTime. + */ + public com.google.protobuf.ByteString + getFirstPurchaseDateTimeBytes() { + java.lang.Object ref = firstPurchaseDateTime_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + firstPurchaseDateTime_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * Optional. Timestamp of the first purchase made by the user.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @param value The firstPurchaseDateTime to set. + * @return This builder for chaining. + */ + public Builder setFirstPurchaseDateTime( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + firstPurchaseDateTime_ = value; + onChanged(); + return this; + } + /** + *
+     * Optional. Timestamp of the first purchase made by the user.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return This builder for chaining. + */ + public Builder clearFirstPurchaseDateTime() { + + firstPurchaseDateTime_ = getDefaultInstance().getFirstPurchaseDateTime(); + onChanged(); + return this; + } + /** + *
+     * Optional. Timestamp of the first purchase made by the user.
+     * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+     * optional timezone offset from UTC. If the offset is absent, the API will
+     * use the account's timezone as default.
+     * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @param value The bytes for firstPurchaseDateTime to set. + * @return This builder for chaining. + */ + public Builder setFirstPurchaseDateTimeBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + firstPurchaseDateTime_ = value; + onChanged(); + return this; + } + + private java.util.List eventAttribute_ = + java.util.Collections.emptyList(); + private void ensureEventAttributeIsMutable() { + if (!((bitField0_ & 0x00000008) != 0)) { + eventAttribute_ = new java.util.ArrayList(eventAttribute_); + bitField0_ |= 0x00000008; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.EventAttribute, com.google.ads.googleads.v11.common.EventAttribute.Builder, com.google.ads.googleads.v11.common.EventAttributeOrBuilder> eventAttributeBuilder_; + + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public java.util.List getEventAttributeList() { + if (eventAttributeBuilder_ == null) { + return java.util.Collections.unmodifiableList(eventAttribute_); + } else { + return eventAttributeBuilder_.getMessageList(); + } + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public int getEventAttributeCount() { + if (eventAttributeBuilder_ == null) { + return eventAttribute_.size(); + } else { + return eventAttributeBuilder_.getCount(); + } + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public com.google.ads.googleads.v11.common.EventAttribute getEventAttribute(int index) { + if (eventAttributeBuilder_ == null) { + return eventAttribute_.get(index); + } else { + return eventAttributeBuilder_.getMessage(index); + } + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder setEventAttribute( + int index, com.google.ads.googleads.v11.common.EventAttribute value) { + if (eventAttributeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureEventAttributeIsMutable(); + eventAttribute_.set(index, value); + onChanged(); + } else { + eventAttributeBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder setEventAttribute( + int index, com.google.ads.googleads.v11.common.EventAttribute.Builder builderForValue) { + if (eventAttributeBuilder_ == null) { + ensureEventAttributeIsMutable(); + eventAttribute_.set(index, builderForValue.build()); + onChanged(); + } else { + eventAttributeBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder addEventAttribute(com.google.ads.googleads.v11.common.EventAttribute value) { + if (eventAttributeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureEventAttributeIsMutable(); + eventAttribute_.add(value); + onChanged(); + } else { + eventAttributeBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder addEventAttribute( + int index, com.google.ads.googleads.v11.common.EventAttribute value) { + if (eventAttributeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureEventAttributeIsMutable(); + eventAttribute_.add(index, value); + onChanged(); + } else { + eventAttributeBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder addEventAttribute( + com.google.ads.googleads.v11.common.EventAttribute.Builder builderForValue) { + if (eventAttributeBuilder_ == null) { + ensureEventAttributeIsMutable(); + eventAttribute_.add(builderForValue.build()); + onChanged(); + } else { + eventAttributeBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder addEventAttribute( + int index, com.google.ads.googleads.v11.common.EventAttribute.Builder builderForValue) { + if (eventAttributeBuilder_ == null) { + ensureEventAttributeIsMutable(); + eventAttribute_.add(index, builderForValue.build()); + onChanged(); + } else { + eventAttributeBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder addAllEventAttribute( + java.lang.Iterable values) { + if (eventAttributeBuilder_ == null) { + ensureEventAttributeIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, eventAttribute_); + onChanged(); + } else { + eventAttributeBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder clearEventAttribute() { + if (eventAttributeBuilder_ == null) { + eventAttribute_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + } else { + eventAttributeBuilder_.clear(); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public Builder removeEventAttribute(int index) { + if (eventAttributeBuilder_ == null) { + ensureEventAttributeIsMutable(); + eventAttribute_.remove(index); + onChanged(); + } else { + eventAttributeBuilder_.remove(index); + } + return this; + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public com.google.ads.googleads.v11.common.EventAttribute.Builder getEventAttributeBuilder( + int index) { + return getEventAttributeFieldBuilder().getBuilder(index); + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public com.google.ads.googleads.v11.common.EventAttributeOrBuilder getEventAttributeOrBuilder( + int index) { + if (eventAttributeBuilder_ == null) { + return eventAttribute_.get(index); } else { + return eventAttributeBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public java.util.List + getEventAttributeOrBuilderList() { + if (eventAttributeBuilder_ != null) { + return eventAttributeBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(eventAttribute_); + } + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public com.google.ads.googleads.v11.common.EventAttribute.Builder addEventAttributeBuilder() { + return getEventAttributeFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.EventAttribute.getDefaultInstance()); + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public com.google.ads.googleads.v11.common.EventAttribute.Builder addEventAttributeBuilder( + int index) { + return getEventAttributeFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.EventAttribute.getDefaultInstance()); + } + /** + *
+     * Optional. Advertiser defined events and their attributes. All the values in the
+     * nested fields are required. Currently this field is in beta.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + public java.util.List + getEventAttributeBuilderList() { + return getEventAttributeFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.EventAttribute, com.google.ads.googleads.v11.common.EventAttribute.Builder, com.google.ads.googleads.v11.common.EventAttributeOrBuilder> + getEventAttributeFieldBuilder() { + if (eventAttributeBuilder_ == null) { + eventAttributeBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.EventAttribute, com.google.ads.googleads.v11.common.EventAttribute.Builder, com.google.ads.googleads.v11.common.EventAttributeOrBuilder>( + eventAttribute_, + ((bitField0_ & 0x00000008) != 0), + getParentForChildren(), + isClean()); + eventAttribute_ = null; + } + return eventAttributeBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttributeOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttributeOrBuilder.java index b576a4c9fa..7466e063a0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttributeOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserAttributeOrBuilder.java @@ -154,4 +154,101 @@ public interface UserAttributeOrBuilder extends * optional .google.ads.googleads.v11.common.ShoppingLoyalty shopping_loyalty = 7; */ com.google.ads.googleads.v11.common.ShoppingLoyaltyOrBuilder getShoppingLoyaltyOrBuilder(); + + /** + *
+   * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+   * “Lead”, “Active” and “Churned”.
+   * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return The lifecycleStage. + */ + java.lang.String getLifecycleStage(); + /** + *
+   * Optional. Advertiser defined lifecycle stage for the user. The accepted values are
+   * “Lead”, “Active” and “Churned”.
+   * 
+ * + * string lifecycle_stage = 8 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for lifecycleStage. + */ + com.google.protobuf.ByteString + getLifecycleStageBytes(); + + /** + *
+   * Optional. Timestamp of the first purchase made by the user.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The firstPurchaseDateTime. + */ + java.lang.String getFirstPurchaseDateTime(); + /** + *
+   * Optional. Timestamp of the first purchase made by the user.
+   * The format is YYYY-MM-DD HH:MM:SS[+/-HH:MM], where [+/-HH:MM] is an
+   * optional timezone offset from UTC. If the offset is absent, the API will
+   * use the account's timezone as default.
+   * 
+ * + * string first_purchase_date_time = 9 [(.google.api.field_behavior) = OPTIONAL]; + * @return The bytes for firstPurchaseDateTime. + */ + com.google.protobuf.ByteString + getFirstPurchaseDateTimeBytes(); + + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + java.util.List + getEventAttributeList(); + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + com.google.ads.googleads.v11.common.EventAttribute getEventAttribute(int index); + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + int getEventAttributeCount(); + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + java.util.List + getEventAttributeOrBuilderList(); + /** + *
+   * Optional. Advertiser defined events and their attributes. All the values in the
+   * nested fields are required. Currently this field is in beta.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.EventAttribute event_attribute = 10 [(.google.api.field_behavior) = OPTIONAL]; + */ + com.google.ads.googleads.v11.common.EventAttributeOrBuilder getEventAttributeOrBuilder( + int index); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserListsProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserListsProto.java index 87047dfa7d..1f169adc3a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserListsProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/UserListsProto.java @@ -64,6 +64,16 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v11_common_ExpressionRuleUserListInfo_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_googleads_v11_common_RuleBasedUserListInfo_descriptor; static final @@ -112,94 +122,110 @@ public static void registerAllExtensions( "leads/v11/enums/user_list_crm_data_sourc" + "e_type.proto\032Fgoogle/ads/googleads/v11/e" + "nums/user_list_date_rule_item_operator.p" + - "roto\032Dgoogle/ads/googleads/v11/enums/use" + - "r_list_logical_rule_operator.proto\032Hgoog" + - "le/ads/googleads/v11/enums/user_list_num" + - "ber_rule_item_operator.proto\032Cgoogle/ads" + - "/googleads/v11/enums/user_list_prepopula" + - "tion_status.proto\0328google/ads/googleads/" + - "v11/enums/user_list_rule_type.proto\032Hgoo" + - "gle/ads/googleads/v11/enums/user_list_st" + - "ring_rule_item_operator.proto\"E\n\023Similar" + - "UserListInfo\022\033\n\016seed_user_list\030\002 \001(\tH\000\210\001" + - "\001B\021\n\017_seed_user_list\"\235\002\n\024CrmBasedUserLis" + - "tInfo\022\023\n\006app_id\030\004 \001(\tH\000\210\001\001\022r\n\017upload_key" + - "_type\030\002 \001(\0162Y.google.ads.googleads.v11.e" + - "nums.CustomerMatchUploadKeyTypeEnum.Cust" + - "omerMatchUploadKeyType\022q\n\020data_source_ty" + - "pe\030\003 \001(\0162W.google.ads.googleads.v11.enum" + - "s.UserListCrmDataSourceTypeEnum.UserList" + - "CrmDataSourceTypeB\t\n\007_app_id\"\302\001\n\020UserLis" + - "tRuleInfo\022X\n\trule_type\030\001 \001(\0162E.google.ad" + - "s.googleads.v11.enums.UserListRuleTypeEn" + - "um.UserListRuleType\022T\n\020rule_item_groups\030" + - "\002 \003(\0132:.google.ads.googleads.v11.common." + - "UserListRuleItemGroupInfo\"f\n\031UserListRul" + - "eItemGroupInfo\022I\n\nrule_items\030\001 \003(\01325.goo" + - "gle.ads.googleads.v11.common.UserListRul" + - "eItemInfo\"\306\002\n\024UserListRuleItemInfo\022\021\n\004na" + - "me\030\005 \001(\tH\001\210\001\001\022W\n\020number_rule_item\030\002 \001(\0132" + + "roto\032Egoogle/ads/googleads/v11/enums/use" + + "r_list_flexible_rule_operator.proto\032Dgoo" + + "gle/ads/googleads/v11/enums/user_list_lo" + + "gical_rule_operator.proto\032Hgoogle/ads/go" + + "ogleads/v11/enums/user_list_number_rule_" + + "item_operator.proto\032Cgoogle/ads/googlead" + + "s/v11/enums/user_list_prepopulation_stat" + + "us.proto\0328google/ads/googleads/v11/enums" + + "/user_list_rule_type.proto\032Hgoogle/ads/g" + + "oogleads/v11/enums/user_list_string_rule" + + "_item_operator.proto\"E\n\023SimilarUserListI" + + "nfo\022\033\n\016seed_user_list\030\002 \001(\tH\000\210\001\001B\021\n\017_see" + + "d_user_list\"\235\002\n\024CrmBasedUserListInfo\022\023\n\006" + + "app_id\030\004 \001(\tH\000\210\001\001\022r\n\017upload_key_type\030\002 \001" + + "(\0162Y.google.ads.googleads.v11.enums.Cust" + + "omerMatchUploadKeyTypeEnum.CustomerMatch" + + "UploadKeyType\022q\n\020data_source_type\030\003 \001(\0162" + + "W.google.ads.googleads.v11.enums.UserLis" + + "tCrmDataSourceTypeEnum.UserListCrmDataSo" + + "urceTypeB\t\n\007_app_id\"\302\001\n\020UserListRuleInfo" + + "\022X\n\trule_type\030\001 \001(\0162E.google.ads.googlea" + + "ds.v11.enums.UserListRuleTypeEnum.UserLi" + + "stRuleType\022T\n\020rule_item_groups\030\002 \003(\0132:.g" + + "oogle.ads.googleads.v11.common.UserListR" + + "uleItemGroupInfo\"f\n\031UserListRuleItemGrou" + + "pInfo\022I\n\nrule_items\030\001 \003(\01325.google.ads.g" + + "oogleads.v11.common.UserListRuleItemInfo" + + "\"\306\002\n\024UserListRuleItemInfo\022\021\n\004name\030\005 \001(\tH" + + "\001\210\001\001\022W\n\020number_rule_item\030\002 \001(\0132;.google." + + "ads.googleads.v11.common.UserListNumberR" + + "uleItemInfoH\000\022W\n\020string_rule_item\030\003 \001(\0132" + ";.google.ads.googleads.v11.common.UserLi" + - "stNumberRuleItemInfoH\000\022W\n\020string_rule_it" + - "em\030\003 \001(\0132;.google.ads.googleads.v11.comm" + - "on.UserListStringRuleItemInfoH\000\022S\n\016date_" + - "rule_item\030\004 \001(\01329.google.ads.googleads.v" + - "11.common.UserListDateRuleItemInfoH\000B\013\n\t" + - "rule_itemB\007\n\005_name\"\331\001\n\030UserListDateRuleI" + - "temInfo\022o\n\010operator\030\001 \001(\0162].google.ads.g" + - "oogleads.v11.enums.UserListDateRuleItemO" + - "peratorEnum.UserListDateRuleItemOperator" + - "\022\022\n\005value\030\004 \001(\tH\000\210\001\001\022\033\n\016offset_in_days\030\005" + - " \001(\003H\001\210\001\001B\010\n\006_valueB\021\n\017_offset_in_days\"\257" + - "\001\n\032UserListNumberRuleItemInfo\022s\n\010operato" + - "r\030\001 \001(\0162a.google.ads.googleads.v11.enums" + - ".UserListNumberRuleItemOperatorEnum.User" + - "ListNumberRuleItemOperator\022\022\n\005value\030\003 \001(" + - "\001H\000\210\001\001B\010\n\006_value\"\257\001\n\032UserListStringRuleI" + - "temInfo\022s\n\010operator\030\001 \001(\0162a.google.ads.g" + - "oogleads.v11.enums.UserListStringRuleIte" + - "mOperatorEnum.UserListStringRuleItemOper" + - "ator\022\022\n\005value\030\003 \001(\tH\000\210\001\001B\010\n\006_value\"\243\002\n\030C" + - "ombinedRuleUserListInfo\022G\n\014left_operand\030" + - "\001 \001(\01321.google.ads.googleads.v11.common." + - "UserListRuleInfo\022H\n\rright_operand\030\002 \001(\0132" + - "1.google.ads.googleads.v11.common.UserLi" + - "stRuleInfo\022t\n\rrule_operator\030\003 \001(\0162].goog" + - "le.ads.googleads.v11.enums.UserListCombi" + - "nedRuleOperatorEnum.UserListCombinedRule" + - "Operator\"]\n\032ExpressionRuleUserListInfo\022?" + - "\n\004rule\030\001 \001(\01321.google.ads.googleads.v11." + - "common.UserListRuleInfo\"\352\002\n\025RuleBasedUse" + - "rListInfo\022y\n\024prepopulation_status\030\001 \001(\0162" + - "[.google.ads.googleads.v11.enums.UserLis" + - "tPrepopulationStatusEnum.UserListPrepopu" + - "lationStatus\022\\\n\027combined_rule_user_list\030" + - "\002 \001(\01329.google.ads.googleads.v11.common." + - "CombinedRuleUserListInfoH\000\022`\n\031expression" + - "_rule_user_list\030\004 \001(\0132;.google.ads.googl" + - "eads.v11.common.ExpressionRuleUserListIn" + - "foH\000B\026\n\024rule_based_user_list\"^\n\023LogicalU" + - "serListInfo\022G\n\005rules\030\001 \003(\01328.google.ads." + - "googleads.v11.common.UserListLogicalRule" + - "Info\"\334\001\n\027UserListLogicalRuleInfo\022m\n\010oper" + - "ator\030\001 \001(\0162[.google.ads.googleads.v11.en" + - "ums.UserListLogicalRuleOperatorEnum.User" + - "ListLogicalRuleOperator\022R\n\rrule_operands" + - "\030\002 \003(\0132;.google.ads.googleads.v11.common" + - ".LogicalUserListOperandInfo\"B\n\032LogicalUs" + - "erListOperandInfo\022\026\n\tuser_list\030\002 \001(\tH\000\210\001" + - "\001B\014\n\n_user_list\"Y\n\021BasicUserListInfo\022D\n\007" + - "actions\030\001 \003(\01323.google.ads.googleads.v11" + - ".common.UserListActionInfo\"c\n\022UserListAc" + - "tionInfo\022\033\n\021conversion_action\030\003 \001(\tH\000\022\034\n" + - "\022remarketing_action\030\004 \001(\tH\000B\022\n\020user_list" + - "_actionB\356\001\n#com.google.ads.googleads.v11" + - ".commonB\016UserListsProtoP\001ZEgoogle.golang" + - ".org/genproto/googleapis/ads/googleads/v" + - "11/common;common\242\002\003GAA\252\002\037Google.Ads.Goog" + - "leAds.V11.Common\312\002\037Google\\Ads\\GoogleAds\\" + - "V11\\Common\352\002#Google::Ads::GoogleAds::V11" + - "::Commonb\006proto3" + "stStringRuleItemInfoH\000\022S\n\016date_rule_item" + + "\030\004 \001(\01329.google.ads.googleads.v11.common" + + ".UserListDateRuleItemInfoH\000B\013\n\trule_item" + + "B\007\n\005_name\"\331\001\n\030UserListDateRuleItemInfo\022o" + + "\n\010operator\030\001 \001(\0162].google.ads.googleads." + + "v11.enums.UserListDateRuleItemOperatorEn" + + "um.UserListDateRuleItemOperator\022\022\n\005value" + + "\030\004 \001(\tH\000\210\001\001\022\033\n\016offset_in_days\030\005 \001(\003H\001\210\001\001" + + "B\010\n\006_valueB\021\n\017_offset_in_days\"\257\001\n\032UserLi" + + "stNumberRuleItemInfo\022s\n\010operator\030\001 \001(\0162a" + + ".google.ads.googleads.v11.enums.UserList" + + "NumberRuleItemOperatorEnum.UserListNumbe" + + "rRuleItemOperator\022\022\n\005value\030\003 \001(\001H\000\210\001\001B\010\n" + + "\006_value\"\257\001\n\032UserListStringRuleItemInfo\022s" + + "\n\010operator\030\001 \001(\0162a.google.ads.googleads." + + "v11.enums.UserListStringRuleItemOperator" + + "Enum.UserListStringRuleItemOperator\022\022\n\005v" + + "alue\030\003 \001(\tH\000\210\001\001B\010\n\006_value\"\243\002\n\030CombinedRu" + + "leUserListInfo\022G\n\014left_operand\030\001 \001(\01321.g" + + "oogle.ads.googleads.v11.common.UserListR" + + "uleInfo\022H\n\rright_operand\030\002 \001(\01321.google." + + "ads.googleads.v11.common.UserListRuleInf" + + "o\022t\n\rrule_operator\030\003 \001(\0162].google.ads.go" + + "ogleads.v11.enums.UserListCombinedRuleOp" + + "eratorEnum.UserListCombinedRuleOperator\"" + + "]\n\032ExpressionRuleUserListInfo\022?\n\004rule\030\001 " + + "\001(\01321.google.ads.googleads.v11.common.Us" + + "erListRuleInfo\"\226\001\n\027FlexibleRuleOperandIn" + + "fo\022?\n\004rule\030\001 \001(\01321.google.ads.googleads." + + "v11.common.UserListRuleInfo\022!\n\024lookback_" + + "window_days\030\002 \001(\003H\000\210\001\001B\027\n\025_lookback_wind" + + "ow_days\"\306\002\n\030FlexibleRuleUserListInfo\022~\n\027" + + "inclusive_rule_operator\030\001 \001(\0162].google.a" + + "ds.googleads.v11.enums.UserListFlexibleR" + + "uleOperatorEnum.UserListFlexibleRuleOper" + + "ator\022T\n\022inclusive_operands\030\002 \003(\01328.googl" + + "e.ads.googleads.v11.common.FlexibleRuleO" + + "perandInfo\022T\n\022exclusive_operands\030\003 \003(\01328" + + ".google.ads.googleads.v11.common.Flexibl" + + "eRuleOperandInfo\"\306\003\n\025RuleBasedUserListIn" + + "fo\022y\n\024prepopulation_status\030\001 \001(\0162[.googl" + + "e.ads.googleads.v11.enums.UserListPrepop" + + "ulationStatusEnum.UserListPrepopulationS" + + "tatus\022Z\n\027flexible_rule_user_list\030\005 \001(\01329" + + ".google.ads.googleads.v11.common.Flexibl" + + "eRuleUserListInfo\022\\\n\027combined_rule_user_" + + "list\030\002 \001(\01329.google.ads.googleads.v11.co" + + "mmon.CombinedRuleUserListInfoH\000\022`\n\031expre" + + "ssion_rule_user_list\030\004 \001(\0132;.google.ads." + + "googleads.v11.common.ExpressionRuleUserL" + + "istInfoH\000B\026\n\024rule_based_user_list\"^\n\023Log" + + "icalUserListInfo\022G\n\005rules\030\001 \003(\01328.google" + + ".ads.googleads.v11.common.UserListLogica" + + "lRuleInfo\"\334\001\n\027UserListLogicalRuleInfo\022m\n" + + "\010operator\030\001 \001(\0162[.google.ads.googleads.v" + + "11.enums.UserListLogicalRuleOperatorEnum" + + ".UserListLogicalRuleOperator\022R\n\rrule_ope" + + "rands\030\002 \003(\0132;.google.ads.googleads.v11.c" + + "ommon.LogicalUserListOperandInfo\"B\n\032Logi" + + "calUserListOperandInfo\022\026\n\tuser_list\030\002 \001(" + + "\tH\000\210\001\001B\014\n\n_user_list\"Y\n\021BasicUserListInf" + + "o\022D\n\007actions\030\001 \003(\01323.google.ads.googlead" + + "s.v11.common.UserListActionInfo\"c\n\022UserL" + + "istActionInfo\022\033\n\021conversion_action\030\003 \001(\t" + + "H\000\022\034\n\022remarketing_action\030\004 \001(\tH\000B\022\n\020user" + + "_list_actionB\356\001\n#com.google.ads.googlead" + + "s.v11.commonB\016UserListsProtoP\001ZEgoogle.g" + + "olang.org/genproto/googleapis/ads/google" + + "ads/v11/common;common\242\002\003GAA\252\002\037Google.Ads" + + ".GoogleAds.V11.Common\312\002\037Google\\Ads\\Googl" + + "eAds\\V11\\Common\352\002#Google::Ads::GoogleAds" + + "::V11::Commonb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -208,6 +234,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v11.enums.UserListCombinedRuleOperatorProto.getDescriptor(), com.google.ads.googleads.v11.enums.UserListCrmDataSourceTypeProto.getDescriptor(), com.google.ads.googleads.v11.enums.UserListDateRuleItemOperatorProto.getDescriptor(), + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorProto.getDescriptor(), com.google.ads.googleads.v11.enums.UserListLogicalRuleOperatorProto.getDescriptor(), com.google.ads.googleads.v11.enums.UserListNumberRuleItemOperatorProto.getDescriptor(), com.google.ads.googleads.v11.enums.UserListPrepopulationStatusProto.getDescriptor(), @@ -274,38 +301,50 @@ public static void registerAllExtensions( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_ExpressionRuleUserListInfo_descriptor, new java.lang.String[] { "Rule", }); - internal_static_google_ads_googleads_v11_common_RuleBasedUserListInfo_descriptor = + internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_descriptor = getDescriptor().getMessageTypes().get(10); + internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_common_FlexibleRuleOperandInfo_descriptor, + new java.lang.String[] { "Rule", "LookbackWindowDays", "LookbackWindowDays", }); + internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_descriptor = + getDescriptor().getMessageTypes().get(11); + internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_common_FlexibleRuleUserListInfo_descriptor, + new java.lang.String[] { "InclusiveRuleOperator", "InclusiveOperands", "ExclusiveOperands", }); + internal_static_google_ads_googleads_v11_common_RuleBasedUserListInfo_descriptor = + getDescriptor().getMessageTypes().get(12); internal_static_google_ads_googleads_v11_common_RuleBasedUserListInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_RuleBasedUserListInfo_descriptor, - new java.lang.String[] { "PrepopulationStatus", "CombinedRuleUserList", "ExpressionRuleUserList", "RuleBasedUserList", }); + new java.lang.String[] { "PrepopulationStatus", "FlexibleRuleUserList", "CombinedRuleUserList", "ExpressionRuleUserList", "RuleBasedUserList", }); internal_static_google_ads_googleads_v11_common_LogicalUserListInfo_descriptor = - getDescriptor().getMessageTypes().get(11); + getDescriptor().getMessageTypes().get(13); internal_static_google_ads_googleads_v11_common_LogicalUserListInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_LogicalUserListInfo_descriptor, new java.lang.String[] { "Rules", }); internal_static_google_ads_googleads_v11_common_UserListLogicalRuleInfo_descriptor = - getDescriptor().getMessageTypes().get(12); + getDescriptor().getMessageTypes().get(14); internal_static_google_ads_googleads_v11_common_UserListLogicalRuleInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_UserListLogicalRuleInfo_descriptor, new java.lang.String[] { "Operator", "RuleOperands", }); internal_static_google_ads_googleads_v11_common_LogicalUserListOperandInfo_descriptor = - getDescriptor().getMessageTypes().get(13); + getDescriptor().getMessageTypes().get(15); internal_static_google_ads_googleads_v11_common_LogicalUserListOperandInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_LogicalUserListOperandInfo_descriptor, new java.lang.String[] { "UserList", "UserList", }); internal_static_google_ads_googleads_v11_common_BasicUserListInfo_descriptor = - getDescriptor().getMessageTypes().get(14); + getDescriptor().getMessageTypes().get(16); internal_static_google_ads_googleads_v11_common_BasicUserListInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_BasicUserListInfo_descriptor, new java.lang.String[] { "Actions", }); internal_static_google_ads_googleads_v11_common_UserListActionInfo_descriptor = - getDescriptor().getMessageTypes().get(15); + getDescriptor().getMessageTypes().get(17); internal_static_google_ads_googleads_v11_common_UserListActionInfo_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_common_UserListActionInfo_descriptor, @@ -314,6 +353,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v11.enums.UserListCombinedRuleOperatorProto.getDescriptor(); com.google.ads.googleads.v11.enums.UserListCrmDataSourceTypeProto.getDescriptor(); com.google.ads.googleads.v11.enums.UserListDateRuleItemOperatorProto.getDescriptor(); + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorProto.getDescriptor(); com.google.ads.googleads.v11.enums.UserListLogicalRuleOperatorProto.getDescriptor(); com.google.ads.googleads.v11.enums.UserListNumberRuleItemOperatorProto.getDescriptor(); com.google.ads.googleads.v11.enums.UserListPrepopulationStatusProto.getDescriptor(); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfo.java index 8dc5f1da28..16ce845444 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfo.java @@ -183,8 +183,9 @@ private VideoResponsiveAdInfo( private java.util.List headlines_; /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -195,8 +196,9 @@ public java.util.List getHeadli } /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -208,8 +210,9 @@ public java.util.List getHeadli } /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -220,8 +223,9 @@ public int getHeadlinesCount() { } /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -232,8 +236,9 @@ public com.google.ads.googleads.v11.common.AdTextAsset getHeadlines(int index) { } /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -378,8 +383,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsO private java.util.List callToActions_; /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -390,8 +395,8 @@ public java.util.List getCallTo } /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -403,8 +408,8 @@ public java.util.List getCallTo } /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -415,8 +420,8 @@ public int getCallToActionsCount() { } /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -427,8 +432,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset getCallToActions(int inde } /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -1330,8 +1335,9 @@ private void ensureHeadlinesIsMutable() { /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1345,8 +1351,9 @@ public java.util.List getHeadli } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1360,8 +1367,9 @@ public int getHeadlinesCount() { } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1375,8 +1383,9 @@ public com.google.ads.googleads.v11.common.AdTextAsset getHeadlines(int index) { } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1397,8 +1406,9 @@ public Builder setHeadlines( } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1416,8 +1426,9 @@ public Builder setHeadlines( } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1437,8 +1448,9 @@ public Builder addHeadlines(com.google.ads.googleads.v11.common.AdTextAsset valu } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1459,8 +1471,9 @@ public Builder addHeadlines( } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1478,8 +1491,9 @@ public Builder addHeadlines( } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1497,8 +1511,9 @@ public Builder addHeadlines( } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1517,8 +1532,9 @@ public Builder addAllHeadlines( } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1535,8 +1551,9 @@ public Builder clearHeadlines() { } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1553,8 +1570,9 @@ public Builder removeHeadlines(int index) { } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1565,8 +1583,9 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder getHeadlinesBuild } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1580,8 +1599,9 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBu } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1596,8 +1616,9 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getHeadlinesOrBu } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1608,8 +1629,9 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addHeadlinesBuild } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -1621,8 +1643,9 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addHeadlinesBuild } /** *
-     * List of text assets used for the short headline, e.g. the "Call To Action"
-     * banner. Currently, only a single value for the short headline is supported.
+     * List of text assets used for the short headline, for example, the "Call To
+     * Action" banner. Currently, only a single value for the short headline is
+     * supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -2320,8 +2343,8 @@ private void ensureCallToActionsIsMutable() { /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2335,8 +2358,8 @@ public java.util.List getCallTo } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2350,8 +2373,8 @@ public int getCallToActionsCount() { } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2365,8 +2388,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset getCallToActions(int inde } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2387,8 +2410,8 @@ public Builder setCallToActions( } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2406,8 +2429,8 @@ public Builder setCallToActions( } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2427,8 +2450,8 @@ public Builder addCallToActions(com.google.ads.googleads.v11.common.AdTextAsset } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2449,8 +2472,8 @@ public Builder addCallToActions( } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2468,8 +2491,8 @@ public Builder addCallToActions( } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2487,8 +2510,8 @@ public Builder addCallToActions( } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2507,8 +2530,8 @@ public Builder addAllCallToActions( } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2525,8 +2548,8 @@ public Builder clearCallToActions() { } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2543,8 +2566,8 @@ public Builder removeCallToActions(int index) { } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2555,8 +2578,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder getCallToActionsB } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2570,8 +2593,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getCallToActions } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2586,8 +2609,8 @@ public com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getCallToActions } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2598,8 +2621,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addCallToActionsB } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -2611,8 +2634,8 @@ public com.google.ads.googleads.v11.common.AdTextAsset.Builder addCallToActionsB } /** *
-     * List of text assets used for the button, e.g. the "Call To Action" button.
-     * Currently, only a single value for the button is supported.
+     * List of text assets used for the button, for example, the "Call To Action"
+     * button. Currently, only a single value for the button is supported.
      * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfoOrBuilder.java index 18a54c77e5..8e2aeaded4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfoOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/VideoResponsiveAdInfoOrBuilder.java @@ -9,8 +9,9 @@ public interface VideoResponsiveAdInfoOrBuilder extends /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -19,8 +20,9 @@ public interface VideoResponsiveAdInfoOrBuilder extends getHeadlinesList(); /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -28,8 +30,9 @@ public interface VideoResponsiveAdInfoOrBuilder extends com.google.ads.googleads.v11.common.AdTextAsset getHeadlines(int index); /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -37,8 +40,9 @@ public interface VideoResponsiveAdInfoOrBuilder extends int getHeadlinesCount(); /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -47,8 +51,9 @@ public interface VideoResponsiveAdInfoOrBuilder extends getHeadlinesOrBuilderList(); /** *
-   * List of text assets used for the short headline, e.g. the "Call To Action"
-   * banner. Currently, only a single value for the short headline is supported.
+   * List of text assets used for the short headline, for example, the "Call To
+   * Action" banner. Currently, only a single value for the short headline is
+   * supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset headlines = 1; @@ -156,8 +161,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsOrBuilde /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -166,8 +171,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsOrBuilde getCallToActionsList(); /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -175,8 +180,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsOrBuilde com.google.ads.googleads.v11.common.AdTextAsset getCallToActions(int index); /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -184,8 +189,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsOrBuilde int getCallToActionsCount(); /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; @@ -194,8 +199,8 @@ com.google.ads.googleads.v11.common.AdTextAssetOrBuilder getDescriptionsOrBuilde getCallToActionsOrBuilderList(); /** *
-   * List of text assets used for the button, e.g. the "Call To Action" button.
-   * Currently, only a single value for the button is supported.
+   * List of text assets used for the button, for example, the "Call To Action"
+   * button. Currently, only a single value for the button is supported.
    * 
* * repeated .google.ads.googleads.v11.common.AdTextAsset call_to_actions = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonth.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonth.java index 7eb6719a22..49a6a6f5c4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonth.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonth.java @@ -102,7 +102,7 @@ private YearMonth( private long year_; /** *
-   * The year (e.g. 2020).
+   * The year (for example, 2020).
    * 
* * int64 year = 1; @@ -117,7 +117,7 @@ public long getYear() { private int month_; /** *
-   * The month of the year. (e.g. FEBRUARY).
+   * The month of the year. (for example, FEBRUARY).
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; @@ -128,7 +128,7 @@ public long getYear() { } /** *
-   * The month of the year. (e.g. FEBRUARY).
+   * The month of the year. (for example, FEBRUARY).
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; @@ -466,7 +466,7 @@ public Builder mergeFrom( private long year_ ; /** *
-     * The year (e.g. 2020).
+     * The year (for example, 2020).
      * 
* * int64 year = 1; @@ -478,7 +478,7 @@ public long getYear() { } /** *
-     * The year (e.g. 2020).
+     * The year (for example, 2020).
      * 
* * int64 year = 1; @@ -493,7 +493,7 @@ public Builder setYear(long value) { } /** *
-     * The year (e.g. 2020).
+     * The year (for example, 2020).
      * 
* * int64 year = 1; @@ -509,7 +509,7 @@ public Builder clearYear() { private int month_ = 0; /** *
-     * The month of the year. (e.g. FEBRUARY).
+     * The month of the year. (for example, FEBRUARY).
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; @@ -520,7 +520,7 @@ public Builder clearYear() { } /** *
-     * The month of the year. (e.g. FEBRUARY).
+     * The month of the year. (for example, FEBRUARY).
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; @@ -535,7 +535,7 @@ public Builder setMonthValue(int value) { } /** *
-     * The month of the year. (e.g. FEBRUARY).
+     * The month of the year. (for example, FEBRUARY).
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; @@ -549,7 +549,7 @@ public com.google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear getMonth() } /** *
-     * The month of the year. (e.g. FEBRUARY).
+     * The month of the year. (for example, FEBRUARY).
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; @@ -567,7 +567,7 @@ public Builder setMonth(com.google.ads.googleads.v11.enums.MonthOfYearEnum.Month } /** *
-     * The month of the year. (e.g. FEBRUARY).
+     * The month of the year. (for example, FEBRUARY).
      * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonthOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonthOrBuilder.java index ef12b56122..5ae14b90bc 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonthOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/common/YearMonthOrBuilder.java @@ -9,7 +9,7 @@ public interface YearMonthOrBuilder extends /** *
-   * The year (e.g. 2020).
+   * The year (for example, 2020).
    * 
* * int64 year = 1; @@ -19,7 +19,7 @@ public interface YearMonthOrBuilder extends /** *
-   * The month of the year. (e.g. FEBRUARY).
+   * The month of the year. (for example, FEBRUARY).
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; @@ -28,7 +28,7 @@ public interface YearMonthOrBuilder extends int getMonthValue(); /** *
-   * The month of the year. (e.g. FEBRUARY).
+   * The month of the year. (for example, FEBRUARY).
    * 
* * .google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear month = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AccountBudgetProposalStatusEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AccountBudgetProposalStatusEnum.java index aaccdcbfa0..d4cfc1254e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AccountBudgetProposalStatusEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AccountBudgetProposalStatusEnum.java @@ -148,7 +148,7 @@ public enum AccountBudgetProposalStatus CANCELLED(5), /** *
-     * The proposal has been rejected by the user, e.g. by rejecting an
+     * The proposal has been rejected by the user, for example, by rejecting an
      * acceptance email.
      * 
* @@ -211,7 +211,7 @@ public enum AccountBudgetProposalStatus public static final int CANCELLED_VALUE = 5; /** *
-     * The proposal has been rejected by the user, e.g. by rejecting an
+     * The proposal has been rejected by the user, for example, by rejecting an
      * acceptance email.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AdvertisingChannelSubTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AdvertisingChannelSubTypeEnum.java index 942fe48d92..d4f0d54e47 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AdvertisingChannelSubTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AdvertisingChannelSubTypeEnum.java @@ -193,7 +193,7 @@ public enum AdvertisingChannelSubType VIDEO_NON_SKIPPABLE(11), /** *
-     * App Campaign that allows you to easily promote your Android or iOS app
+     * App Campaign that lets you easily promote your Android or iOS app
      * across Google's top properties including Search, Play, YouTube, and the
      * Google Display Network.
      * 
@@ -355,7 +355,7 @@ public enum AdvertisingChannelSubType public static final int VIDEO_NON_SKIPPABLE_VALUE = 11; /** *
-     * App Campaign that allows you to easily promote your Android or iOS app
+     * App Campaign that lets you easily promote your Android or iOS app
      * across Google's top properties including Search, Play, YouTube, and the
      * Google Display Network.
      * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AgeRangeTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AgeRangeTypeEnum.java index 6efa084c74..a7efc7c806 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AgeRangeTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AgeRangeTypeEnum.java @@ -88,7 +88,8 @@ private AgeRangeTypeEnum( /** *
-   * The type of demographic age ranges (e.g. between 18 and 24 years old).
+   * The type of demographic age ranges (for example, between 18 and 24 years
+   * old).
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.AgeRangeTypeEnum.AgeRangeType} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AppCampaignBiddingStrategyGoalTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AppCampaignBiddingStrategyGoalTypeEnum.java index 139a898763..b080e1a33d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AppCampaignBiddingStrategyGoalTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AppCampaignBiddingStrategyGoalTypeEnum.java @@ -143,9 +143,9 @@ public enum AppCampaignBiddingStrategyGoalType OPTIMIZE_IN_APP_CONVERSIONS_TARGET_CONVERSION_COST(4), /** *
-     * Aim to maximize all conversions' value, i.e. install + selected in-app
-     * conversions while achieving or exceeding target return on advertising
-     * spend.
+     * Aim to maximize all conversions' value, for example, install + selected
+     * in-app conversions while achieving or exceeding target return on
+     * advertising spend.
      * 
* * OPTIMIZE_RETURN_ON_ADVERTISING_SPEND = 5; @@ -217,9 +217,9 @@ public enum AppCampaignBiddingStrategyGoalType public static final int OPTIMIZE_IN_APP_CONVERSIONS_TARGET_CONVERSION_COST_VALUE = 4; /** *
-     * Aim to maximize all conversions' value, i.e. install + selected in-app
-     * conversions while achieving or exceeding target return on advertising
-     * spend.
+     * Aim to maximize all conversions' value, for example, install + selected
+     * in-app conversions while achieving or exceeding target return on
+     * advertising spend.
      * 
* * OPTIMIZE_RETURN_ON_ADVERTISING_SPEND = 5; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSetLinkStatusEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSetLinkStatusEnum.java index 29ab988c53..fc4323f937 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSetLinkStatusEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSetLinkStatusEnum.java @@ -89,7 +89,7 @@ private AssetSetLinkStatusEnum( /** *
-   * The possible statuses of he linkage between asset set and its container.
+   * The possible statuses of the linkage between asset set and its container.
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSourceEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSourceEnum.java index 1e6cf81c57..7f138f396f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSourceEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AssetSourceEnum.java @@ -6,7 +6,7 @@ /** *
  * Source of the asset or asset link for who generated the entity.
- * e.g. advertiser or automatically created.
+ * For example, advertiser or automatically created.
  * 
* * Protobuf type {@code google.ads.googleads.v11.enums.AssetSourceEnum} @@ -396,7 +396,7 @@ protected Builder newBuilderForType( /** *
    * Source of the asset or asset link for who generated the entity.
-   * e.g. advertiser or automatically created.
+   * For example, advertiser or automatically created.
    * 
* * Protobuf type {@code google.ads.googleads.v11.enums.AssetSourceEnum} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionEnum.java index d878d5df53..19ffbe6010 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionEnum.java @@ -127,6 +127,86 @@ public enum AudienceInsightsDimension * KNOWLEDGE_GRAPH = 3; */ KNOWLEDGE_GRAPH(3), + /** + *
+     * A country, represented by a geo target.
+     * 
+ * + * GEO_TARGET_COUNTRY = 4; + */ + GEO_TARGET_COUNTRY(4), + /** + *
+     * A geographic location within a country.
+     * 
+ * + * SUB_COUNTRY_LOCATION = 5; + */ + SUB_COUNTRY_LOCATION(5), + /** + *
+     * A YouTube channel.
+     * 
+ * + * YOUTUBE_CHANNEL = 6; + */ + YOUTUBE_CHANNEL(6), + /** + *
+     * A YouTube Dynamic Lineup.
+     * 
+ * + * YOUTUBE_DYNAMIC_LINEUP = 7; + */ + YOUTUBE_DYNAMIC_LINEUP(7), + /** + *
+     * An Affinity UserInterest.
+     * 
+ * + * AFFINITY_USER_INTEREST = 8; + */ + AFFINITY_USER_INTEREST(8), + /** + *
+     * An In-Market UserInterest.
+     * 
+ * + * IN_MARKET_USER_INTEREST = 9; + */ + IN_MARKET_USER_INTEREST(9), + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * PARENTAL_STATUS = 10; + */ + PARENTAL_STATUS(10), + /** + *
+     * A household income percentile range.
+     * 
+ * + * INCOME_RANGE = 11; + */ + INCOME_RANGE(11), + /** + *
+     * An age range.
+     * 
+ * + * AGE_RANGE = 12; + */ + AGE_RANGE(12), + /** + *
+     * A gender.
+     * 
+ * + * GENDER = 13; + */ + GENDER(13), UNRECOGNIZED(-1), ; @@ -162,6 +242,86 @@ public enum AudienceInsightsDimension * KNOWLEDGE_GRAPH = 3; */ public static final int KNOWLEDGE_GRAPH_VALUE = 3; + /** + *
+     * A country, represented by a geo target.
+     * 
+ * + * GEO_TARGET_COUNTRY = 4; + */ + public static final int GEO_TARGET_COUNTRY_VALUE = 4; + /** + *
+     * A geographic location within a country.
+     * 
+ * + * SUB_COUNTRY_LOCATION = 5; + */ + public static final int SUB_COUNTRY_LOCATION_VALUE = 5; + /** + *
+     * A YouTube channel.
+     * 
+ * + * YOUTUBE_CHANNEL = 6; + */ + public static final int YOUTUBE_CHANNEL_VALUE = 6; + /** + *
+     * A YouTube Dynamic Lineup.
+     * 
+ * + * YOUTUBE_DYNAMIC_LINEUP = 7; + */ + public static final int YOUTUBE_DYNAMIC_LINEUP_VALUE = 7; + /** + *
+     * An Affinity UserInterest.
+     * 
+ * + * AFFINITY_USER_INTEREST = 8; + */ + public static final int AFFINITY_USER_INTEREST_VALUE = 8; + /** + *
+     * An In-Market UserInterest.
+     * 
+ * + * IN_MARKET_USER_INTEREST = 9; + */ + public static final int IN_MARKET_USER_INTEREST_VALUE = 9; + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * PARENTAL_STATUS = 10; + */ + public static final int PARENTAL_STATUS_VALUE = 10; + /** + *
+     * A household income percentile range.
+     * 
+ * + * INCOME_RANGE = 11; + */ + public static final int INCOME_RANGE_VALUE = 11; + /** + *
+     * An age range.
+     * 
+ * + * AGE_RANGE = 12; + */ + public static final int AGE_RANGE_VALUE = 12; + /** + *
+     * A gender.
+     * 
+ * + * GENDER = 13; + */ + public static final int GENDER_VALUE = 13; public final int getNumber() { @@ -192,6 +352,16 @@ public static AudienceInsightsDimension forNumber(int value) { case 1: return UNKNOWN; case 2: return CATEGORY; case 3: return KNOWLEDGE_GRAPH; + case 4: return GEO_TARGET_COUNTRY; + case 5: return SUB_COUNTRY_LOCATION; + case 6: return YOUTUBE_CHANNEL; + case 7: return YOUTUBE_DYNAMIC_LINEUP; + case 8: return AFFINITY_USER_INTEREST; + case 9: return IN_MARKET_USER_INTEREST; + case 10: return PARENTAL_STATUS; + case 11: return INCOME_RANGE; + case 12: return AGE_RANGE; + case 13: return GENDER; default: return null; } } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionProto.java index 8c35960f78..abfb33b58b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/AudienceInsightsDimensionProto.java @@ -30,17 +30,22 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n@google/ads/googleads/v11/enums/audienc" + "e_insights_dimension.proto\022\036google.ads.g" + - "oogleads.v11.enums\"}\n\035AudienceInsightsDi" + - "mensionEnum\"\\\n\031AudienceInsightsDimension" + - "\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\014\n\010CATEGO" + - "RY\020\002\022\023\n\017KNOWLEDGE_GRAPH\020\003B\370\001\n\"com.google" + - ".ads.googleads.v11.enumsB\036AudienceInsigh" + - "tsDimensionProtoP\001ZCgoogle.golang.org/ge" + - "nproto/googleapis/ads/googleads/v11/enum" + - "s;enums\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V11" + - ".Enums\312\002\036Google\\Ads\\GoogleAds\\V11\\Enums\352" + - "\002\"Google::Ads::GoogleAds::V11::Enumsb\006pr" + - "oto3" + "oogleads.v11.enums\"\334\002\n\035AudienceInsightsD" + + "imensionEnum\"\272\002\n\031AudienceInsightsDimensi" + + "on\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\014\n\010CATE" + + "GORY\020\002\022\023\n\017KNOWLEDGE_GRAPH\020\003\022\026\n\022GEO_TARGE" + + "T_COUNTRY\020\004\022\030\n\024SUB_COUNTRY_LOCATION\020\005\022\023\n" + + "\017YOUTUBE_CHANNEL\020\006\022\032\n\026YOUTUBE_DYNAMIC_LI" + + "NEUP\020\007\022\032\n\026AFFINITY_USER_INTEREST\020\010\022\033\n\027IN" + + "_MARKET_USER_INTEREST\020\t\022\023\n\017PARENTAL_STAT" + + "US\020\n\022\020\n\014INCOME_RANGE\020\013\022\r\n\tAGE_RANGE\020\014\022\n\n" + + "\006GENDER\020\rB\370\001\n\"com.google.ads.googleads.v" + + "11.enumsB\036AudienceInsightsDimensionProto" + + "P\001ZCgoogle.golang.org/genproto/googleapi" + + "s/ads/googleads/v11/enums;enums\242\002\003GAA\252\002\036" + + "Google.Ads.GoogleAds.V11.Enums\312\002\036Google\\" + + "Ads\\GoogleAds\\V11\\Enums\352\002\"Google::Ads::G" + + "oogleAds::V11::Enumsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusEnum.java new file mode 100644 index 0000000000..9106b5d209 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusEnum.java @@ -0,0 +1,1026 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/enums/bidding_strategy_system_status.proto + +package com.google.ads.googleads.v11.enums; + +/** + *
+ * Message describing BiddingStrategy system statuses.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum} + */ +public final class BiddingStrategySystemStatusEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) + BiddingStrategySystemStatusEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use BiddingStrategySystemStatusEnum.newBuilder() to construct. + private BiddingStrategySystemStatusEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private BiddingStrategySystemStatusEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new BiddingStrategySystemStatusEnum(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private BiddingStrategySystemStatusEnum( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusProto.internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusProto.internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.class, com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.Builder.class); + } + + /** + *
+   * The possible system statuses of a BiddingStrategy.
+   * 
+ * + * Protobuf enum {@code google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus} + */ + public enum BiddingStrategySystemStatus + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
+     * Signals that an unexpected error occurred, for example, no bidding
+     * strategy type was found, or no status information was found.
+     * 
+ * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
+     * Used for return value only. Represents value unknown in this version.
+     * 
+ * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
+     * The bid strategy is active, and AdWords cannot find any specific issues
+     * with the strategy.
+     * 
+ * + * ENABLED = 2; + */ + ENABLED(2), + /** + *
+     * The bid strategy is learning because it has been recently created or
+     * recently reactivated.
+     * 
+ * + * LEARNING_NEW = 3; + */ + LEARNING_NEW(3), + /** + *
+     * The bid strategy is learning because of a recent setting change.
+     * 
+ * + * LEARNING_SETTING_CHANGE = 4; + */ + LEARNING_SETTING_CHANGE(4), + /** + *
+     * The bid strategy is learning because of a recent budget change.
+     * 
+ * + * LEARNING_BUDGET_CHANGE = 5; + */ + LEARNING_BUDGET_CHANGE(5), + /** + *
+     * The bid strategy is learning because of recent change in number of
+     * campaigns, ad groups or keywords attached to it.
+     * 
+ * + * LEARNING_COMPOSITION_CHANGE = 6; + */ + LEARNING_COMPOSITION_CHANGE(6), + /** + *
+     * The bid strategy depends on conversion reporting and the customer
+     * recently modified conversion types that were relevant to the
+     * bid strategy.
+     * 
+ * + * LEARNING_CONVERSION_TYPE_CHANGE = 7; + */ + LEARNING_CONVERSION_TYPE_CHANGE(7), + /** + *
+     * The bid strategy depends on conversion reporting and the customer
+     * recently changed their conversion settings.
+     * 
+ * + * LEARNING_CONVERSION_SETTING_CHANGE = 8; + */ + LEARNING_CONVERSION_SETTING_CHANGE(8), + /** + *
+     * The bid strategy is limited by its bid ceiling.
+     * 
+ * + * LIMITED_BY_CPC_BID_CEILING = 9; + */ + LIMITED_BY_CPC_BID_CEILING(9), + /** + *
+     * The bid strategy is limited by its bid floor.
+     * 
+ * + * LIMITED_BY_CPC_BID_FLOOR = 10; + */ + LIMITED_BY_CPC_BID_FLOOR(10), + /** + *
+     * The bid strategy is limited because there was not enough conversion
+     * traffic over the past weeks.
+     * 
+ * + * LIMITED_BY_DATA = 11; + */ + LIMITED_BY_DATA(11), + /** + *
+     * A significant fraction of keywords in this bid strategy are limited by
+     * budget.
+     * 
+ * + * LIMITED_BY_BUDGET = 12; + */ + LIMITED_BY_BUDGET(12), + /** + *
+     * The bid strategy cannot reach its target spend because its spend has
+     * been de-prioritized.
+     * 
+ * + * LIMITED_BY_LOW_PRIORITY_SPEND = 13; + */ + LIMITED_BY_LOW_PRIORITY_SPEND(13), + /** + *
+     * A significant fraction of keywords in this bid strategy have a low
+     * Quality Score.
+     * 
+ * + * LIMITED_BY_LOW_QUALITY = 14; + */ + LIMITED_BY_LOW_QUALITY(14), + /** + *
+     * The bid strategy cannot fully spend its budget because of narrow
+     * targeting.
+     * 
+ * + * LIMITED_BY_INVENTORY = 15; + */ + LIMITED_BY_INVENTORY(15), + /** + *
+     * Missing conversion tracking (no pings present) and/or remarketing lists
+     * for SSC.
+     * 
+ * + * MISCONFIGURED_ZERO_ELIGIBILITY = 16; + */ + MISCONFIGURED_ZERO_ELIGIBILITY(16), + /** + *
+     * The bid strategy depends on conversion reporting and the customer is
+     * lacking conversion types that might be reported against this strategy.
+     * 
+ * + * MISCONFIGURED_CONVERSION_TYPES = 17; + */ + MISCONFIGURED_CONVERSION_TYPES(17), + /** + *
+     * The bid strategy depends on conversion reporting and the customer's
+     * conversion settings are misconfigured.
+     * 
+ * + * MISCONFIGURED_CONVERSION_SETTINGS = 18; + */ + MISCONFIGURED_CONVERSION_SETTINGS(18), + /** + *
+     * There are campaigns outside the bid strategy that share budgets with
+     * campaigns included in the strategy.
+     * 
+ * + * MISCONFIGURED_SHARED_BUDGET = 19; + */ + MISCONFIGURED_SHARED_BUDGET(19), + /** + *
+     * The campaign has an invalid strategy type and is not serving.
+     * 
+ * + * MISCONFIGURED_STRATEGY_TYPE = 20; + */ + MISCONFIGURED_STRATEGY_TYPE(20), + /** + *
+     * The bid strategy is not active. Either there are no active campaigns,
+     * ad groups or keywords attached to the bid strategy. Or there are no
+     * active budgets connected to the bid strategy.
+     * 
+ * + * PAUSED = 21; + */ + PAUSED(21), + /** + *
+     * This bid strategy currently does not support status reporting.
+     * 
+ * + * UNAVAILABLE = 22; + */ + UNAVAILABLE(22), + /** + *
+     * There were multiple LEARNING_* system statuses for this bid strategy
+     * during the time in question.
+     * 
+ * + * MULTIPLE_LEARNING = 23; + */ + MULTIPLE_LEARNING(23), + /** + *
+     * There were multiple LIMITED_* system statuses for this bid strategy
+     * during the time in question.
+     * 
+ * + * MULTIPLE_LIMITED = 24; + */ + MULTIPLE_LIMITED(24), + /** + *
+     * There were multiple MISCONFIGURED_* system statuses for this bid strategy
+     * during the time in question.
+     * 
+ * + * MULTIPLE_MISCONFIGURED = 25; + */ + MULTIPLE_MISCONFIGURED(25), + /** + *
+     * There were multiple system statuses for this bid strategy during the
+     * time in question.
+     * 
+ * + * MULTIPLE = 26; + */ + MULTIPLE(26), + UNRECOGNIZED(-1), + ; + + /** + *
+     * Signals that an unexpected error occurred, for example, no bidding
+     * strategy type was found, or no status information was found.
+     * 
+ * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
+     * Used for return value only. Represents value unknown in this version.
+     * 
+ * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
+     * The bid strategy is active, and AdWords cannot find any specific issues
+     * with the strategy.
+     * 
+ * + * ENABLED = 2; + */ + public static final int ENABLED_VALUE = 2; + /** + *
+     * The bid strategy is learning because it has been recently created or
+     * recently reactivated.
+     * 
+ * + * LEARNING_NEW = 3; + */ + public static final int LEARNING_NEW_VALUE = 3; + /** + *
+     * The bid strategy is learning because of a recent setting change.
+     * 
+ * + * LEARNING_SETTING_CHANGE = 4; + */ + public static final int LEARNING_SETTING_CHANGE_VALUE = 4; + /** + *
+     * The bid strategy is learning because of a recent budget change.
+     * 
+ * + * LEARNING_BUDGET_CHANGE = 5; + */ + public static final int LEARNING_BUDGET_CHANGE_VALUE = 5; + /** + *
+     * The bid strategy is learning because of recent change in number of
+     * campaigns, ad groups or keywords attached to it.
+     * 
+ * + * LEARNING_COMPOSITION_CHANGE = 6; + */ + public static final int LEARNING_COMPOSITION_CHANGE_VALUE = 6; + /** + *
+     * The bid strategy depends on conversion reporting and the customer
+     * recently modified conversion types that were relevant to the
+     * bid strategy.
+     * 
+ * + * LEARNING_CONVERSION_TYPE_CHANGE = 7; + */ + public static final int LEARNING_CONVERSION_TYPE_CHANGE_VALUE = 7; + /** + *
+     * The bid strategy depends on conversion reporting and the customer
+     * recently changed their conversion settings.
+     * 
+ * + * LEARNING_CONVERSION_SETTING_CHANGE = 8; + */ + public static final int LEARNING_CONVERSION_SETTING_CHANGE_VALUE = 8; + /** + *
+     * The bid strategy is limited by its bid ceiling.
+     * 
+ * + * LIMITED_BY_CPC_BID_CEILING = 9; + */ + public static final int LIMITED_BY_CPC_BID_CEILING_VALUE = 9; + /** + *
+     * The bid strategy is limited by its bid floor.
+     * 
+ * + * LIMITED_BY_CPC_BID_FLOOR = 10; + */ + public static final int LIMITED_BY_CPC_BID_FLOOR_VALUE = 10; + /** + *
+     * The bid strategy is limited because there was not enough conversion
+     * traffic over the past weeks.
+     * 
+ * + * LIMITED_BY_DATA = 11; + */ + public static final int LIMITED_BY_DATA_VALUE = 11; + /** + *
+     * A significant fraction of keywords in this bid strategy are limited by
+     * budget.
+     * 
+ * + * LIMITED_BY_BUDGET = 12; + */ + public static final int LIMITED_BY_BUDGET_VALUE = 12; + /** + *
+     * The bid strategy cannot reach its target spend because its spend has
+     * been de-prioritized.
+     * 
+ * + * LIMITED_BY_LOW_PRIORITY_SPEND = 13; + */ + public static final int LIMITED_BY_LOW_PRIORITY_SPEND_VALUE = 13; + /** + *
+     * A significant fraction of keywords in this bid strategy have a low
+     * Quality Score.
+     * 
+ * + * LIMITED_BY_LOW_QUALITY = 14; + */ + public static final int LIMITED_BY_LOW_QUALITY_VALUE = 14; + /** + *
+     * The bid strategy cannot fully spend its budget because of narrow
+     * targeting.
+     * 
+ * + * LIMITED_BY_INVENTORY = 15; + */ + public static final int LIMITED_BY_INVENTORY_VALUE = 15; + /** + *
+     * Missing conversion tracking (no pings present) and/or remarketing lists
+     * for SSC.
+     * 
+ * + * MISCONFIGURED_ZERO_ELIGIBILITY = 16; + */ + public static final int MISCONFIGURED_ZERO_ELIGIBILITY_VALUE = 16; + /** + *
+     * The bid strategy depends on conversion reporting and the customer is
+     * lacking conversion types that might be reported against this strategy.
+     * 
+ * + * MISCONFIGURED_CONVERSION_TYPES = 17; + */ + public static final int MISCONFIGURED_CONVERSION_TYPES_VALUE = 17; + /** + *
+     * The bid strategy depends on conversion reporting and the customer's
+     * conversion settings are misconfigured.
+     * 
+ * + * MISCONFIGURED_CONVERSION_SETTINGS = 18; + */ + public static final int MISCONFIGURED_CONVERSION_SETTINGS_VALUE = 18; + /** + *
+     * There are campaigns outside the bid strategy that share budgets with
+     * campaigns included in the strategy.
+     * 
+ * + * MISCONFIGURED_SHARED_BUDGET = 19; + */ + public static final int MISCONFIGURED_SHARED_BUDGET_VALUE = 19; + /** + *
+     * The campaign has an invalid strategy type and is not serving.
+     * 
+ * + * MISCONFIGURED_STRATEGY_TYPE = 20; + */ + public static final int MISCONFIGURED_STRATEGY_TYPE_VALUE = 20; + /** + *
+     * The bid strategy is not active. Either there are no active campaigns,
+     * ad groups or keywords attached to the bid strategy. Or there are no
+     * active budgets connected to the bid strategy.
+     * 
+ * + * PAUSED = 21; + */ + public static final int PAUSED_VALUE = 21; + /** + *
+     * This bid strategy currently does not support status reporting.
+     * 
+ * + * UNAVAILABLE = 22; + */ + public static final int UNAVAILABLE_VALUE = 22; + /** + *
+     * There were multiple LEARNING_* system statuses for this bid strategy
+     * during the time in question.
+     * 
+ * + * MULTIPLE_LEARNING = 23; + */ + public static final int MULTIPLE_LEARNING_VALUE = 23; + /** + *
+     * There were multiple LIMITED_* system statuses for this bid strategy
+     * during the time in question.
+     * 
+ * + * MULTIPLE_LIMITED = 24; + */ + public static final int MULTIPLE_LIMITED_VALUE = 24; + /** + *
+     * There were multiple MISCONFIGURED_* system statuses for this bid strategy
+     * during the time in question.
+     * 
+ * + * MULTIPLE_MISCONFIGURED = 25; + */ + public static final int MULTIPLE_MISCONFIGURED_VALUE = 25; + /** + *
+     * There were multiple system statuses for this bid strategy during the
+     * time in question.
+     * 
+ * + * MULTIPLE = 26; + */ + public static final int MULTIPLE_VALUE = 26; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static BiddingStrategySystemStatus valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static BiddingStrategySystemStatus forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return ENABLED; + case 3: return LEARNING_NEW; + case 4: return LEARNING_SETTING_CHANGE; + case 5: return LEARNING_BUDGET_CHANGE; + case 6: return LEARNING_COMPOSITION_CHANGE; + case 7: return LEARNING_CONVERSION_TYPE_CHANGE; + case 8: return LEARNING_CONVERSION_SETTING_CHANGE; + case 9: return LIMITED_BY_CPC_BID_CEILING; + case 10: return LIMITED_BY_CPC_BID_FLOOR; + case 11: return LIMITED_BY_DATA; + case 12: return LIMITED_BY_BUDGET; + case 13: return LIMITED_BY_LOW_PRIORITY_SPEND; + case 14: return LIMITED_BY_LOW_QUALITY; + case 15: return LIMITED_BY_INVENTORY; + case 16: return MISCONFIGURED_ZERO_ELIGIBILITY; + case 17: return MISCONFIGURED_CONVERSION_TYPES; + case 18: return MISCONFIGURED_CONVERSION_SETTINGS; + case 19: return MISCONFIGURED_SHARED_BUDGET; + case 20: return MISCONFIGURED_STRATEGY_TYPE; + case 21: return PAUSED; + case 22: return UNAVAILABLE; + case 23: return MULTIPLE_LEARNING; + case 24: return MULTIPLE_LIMITED; + case 25: return MULTIPLE_MISCONFIGURED; + case 26: return MULTIPLE; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + BiddingStrategySystemStatus> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public BiddingStrategySystemStatus findValueByNumber(int number) { + return BiddingStrategySystemStatus.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final BiddingStrategySystemStatus[] VALUES = values(); + + public static BiddingStrategySystemStatus valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private BiddingStrategySystemStatus(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum other = (com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) obj; + + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Message describing BiddingStrategy system statuses.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusProto.internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusProto.internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.class, com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusProto.internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum build() { + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum buildPartial() { + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum result = new com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) { + return mergeFrom((com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum other) { + if (other == com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) + private static final com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum(); + } + + public static com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public BiddingStrategySystemStatusEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new BiddingStrategySystemStatusEnum(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusEnumOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusEnumOrBuilder.java new file mode 100644 index 0000000000..ad2bb71e06 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusEnumOrBuilder.java @@ -0,0 +1,9 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/enums/bidding_strategy_system_status.proto + +package com.google.ads.googleads.v11.enums; + +public interface BiddingStrategySystemStatusEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusProto.java new file mode 100644 index 0000000000..d300bebbcd --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/BiddingStrategySystemStatusProto.java @@ -0,0 +1,74 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/enums/bidding_strategy_system_status.proto + +package com.google.ads.googleads.v11.enums; + +public final class BiddingStrategySystemStatusProto { + private BiddingStrategySystemStatusProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\nCgoogle/ads/googleads/v11/enums/bidding" + + "_strategy_system_status.proto\022\036google.ad" + + "s.googleads.v11.enums\"\215\006\n\037BiddingStrateg" + + "ySystemStatusEnum\"\351\005\n\033BiddingStrategySys" + + "temStatus\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022" + + "\013\n\007ENABLED\020\002\022\020\n\014LEARNING_NEW\020\003\022\033\n\027LEARNI" + + "NG_SETTING_CHANGE\020\004\022\032\n\026LEARNING_BUDGET_C" + + "HANGE\020\005\022\037\n\033LEARNING_COMPOSITION_CHANGE\020\006" + + "\022#\n\037LEARNING_CONVERSION_TYPE_CHANGE\020\007\022&\n" + + "\"LEARNING_CONVERSION_SETTING_CHANGE\020\010\022\036\n" + + "\032LIMITED_BY_CPC_BID_CEILING\020\t\022\034\n\030LIMITED" + + "_BY_CPC_BID_FLOOR\020\n\022\023\n\017LIMITED_BY_DATA\020\013" + + "\022\025\n\021LIMITED_BY_BUDGET\020\014\022!\n\035LIMITED_BY_LO" + + "W_PRIORITY_SPEND\020\r\022\032\n\026LIMITED_BY_LOW_QUA" + + "LITY\020\016\022\030\n\024LIMITED_BY_INVENTORY\020\017\022\"\n\036MISC" + + "ONFIGURED_ZERO_ELIGIBILITY\020\020\022\"\n\036MISCONFI" + + "GURED_CONVERSION_TYPES\020\021\022%\n!MISCONFIGURE" + + "D_CONVERSION_SETTINGS\020\022\022\037\n\033MISCONFIGURED" + + "_SHARED_BUDGET\020\023\022\037\n\033MISCONFIGURED_STRATE" + + "GY_TYPE\020\024\022\n\n\006PAUSED\020\025\022\017\n\013UNAVAILABLE\020\026\022\025" + + "\n\021MULTIPLE_LEARNING\020\027\022\024\n\020MULTIPLE_LIMITE" + + "D\020\030\022\032\n\026MULTIPLE_MISCONFIGURED\020\031\022\014\n\010MULTI" + + "PLE\020\032B\372\001\n\"com.google.ads.googleads.v11.e" + + "numsB BiddingStrategySystemStatusProtoP\001" + + "ZCgoogle.golang.org/genproto/googleapis/" + + "ads/googleads/v11/enums;enums\242\002\003GAA\252\002\036Go" + + "ogle.Ads.GoogleAds.V11.Enums\312\002\036Google\\Ad" + + "s\\GoogleAds\\V11\\Enums\352\002\"Google::Ads::Goo" + + "gleAds::V11::Enumsb\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_enums_BiddingStrategySystemStatusEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionCategoryEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionCategoryEnum.java index 8da8ebca09..c01f99dd25 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionCategoryEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionCategoryEnum.java @@ -283,7 +283,7 @@ public enum ConversionActionCategory /** *
      * A lead conversion imported from an external source into Google Ads, that
-     * has further completed a desired stage as defined by the lead gen
+     * has further completed a chosen stage as defined by the lead gen
      * advertiser.
      * 
* @@ -480,7 +480,7 @@ public enum ConversionActionCategory /** *
      * A lead conversion imported from an external source into Google Ads, that
-     * has further completed a desired stage as defined by the lead gen
+     * has further completed a chosen stage as defined by the lead gen
      * advertiser.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionTypeEnum.java index fb8753e836..e22169ffe4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionActionTypeEnum.java @@ -204,7 +204,7 @@ public enum ConversionActionType STORE_SALES(11), /** *
-     * Android app first open conversions tracked via Firebase.
+     * Android app first open conversions tracked through Firebase.
      * 
* * FIREBASE_ANDROID_FIRST_OPEN = 12; @@ -212,7 +212,7 @@ public enum ConversionActionType FIREBASE_ANDROID_FIRST_OPEN(12), /** *
-     * Android app in app purchase conversions tracked via Firebase.
+     * Android app in app purchase conversions tracked through Firebase.
      * 
* * FIREBASE_ANDROID_IN_APP_PURCHASE = 13; @@ -220,7 +220,7 @@ public enum ConversionActionType FIREBASE_ANDROID_IN_APP_PURCHASE(13), /** *
-     * Android app custom conversions tracked via Firebase.
+     * Android app custom conversions tracked through Firebase.
      * 
* * FIREBASE_ANDROID_CUSTOM = 14; @@ -228,7 +228,7 @@ public enum ConversionActionType FIREBASE_ANDROID_CUSTOM(14), /** *
-     * iOS app first open conversions tracked via Firebase.
+     * iOS app first open conversions tracked through Firebase.
      * 
* * FIREBASE_IOS_FIRST_OPEN = 15; @@ -236,7 +236,7 @@ public enum ConversionActionType FIREBASE_IOS_FIRST_OPEN(15), /** *
-     * iOS app in app purchase conversions tracked via Firebase.
+     * iOS app in app purchase conversions tracked through Firebase.
      * 
* * FIREBASE_IOS_IN_APP_PURCHASE = 16; @@ -244,7 +244,7 @@ public enum ConversionActionType FIREBASE_IOS_IN_APP_PURCHASE(16), /** *
-     * iOS app custom conversions tracked via Firebase.
+     * iOS app custom conversions tracked through Firebase.
      * 
* * FIREBASE_IOS_CUSTOM = 17; @@ -252,7 +252,8 @@ public enum ConversionActionType FIREBASE_IOS_CUSTOM(17), /** *
-     * Android app first open conversions tracked via Third Party App Analytics.
+     * Android app first open conversions tracked through Third Party App
+     * Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_ANDROID_FIRST_OPEN = 18; @@ -260,7 +261,7 @@ public enum ConversionActionType THIRD_PARTY_APP_ANALYTICS_ANDROID_FIRST_OPEN(18), /** *
-     * Android app in app purchase conversions tracked via Third Party App
+     * Android app in app purchase conversions tracked through Third Party App
      * Analytics.
      * 
* @@ -269,7 +270,7 @@ public enum ConversionActionType THIRD_PARTY_APP_ANALYTICS_ANDROID_IN_APP_PURCHASE(19), /** *
-     * Android app custom conversions tracked via Third Party App Analytics.
+     * Android app custom conversions tracked through Third Party App Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_ANDROID_CUSTOM = 20; @@ -277,7 +278,7 @@ public enum ConversionActionType THIRD_PARTY_APP_ANALYTICS_ANDROID_CUSTOM(20), /** *
-     * iOS app first open conversions tracked via Third Party App Analytics.
+     * iOS app first open conversions tracked through Third Party App Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_IOS_FIRST_OPEN = 21; @@ -285,7 +286,7 @@ public enum ConversionActionType THIRD_PARTY_APP_ANALYTICS_IOS_FIRST_OPEN(21), /** *
-     * iOS app in app purchase conversions tracked via Third Party App
+     * iOS app in app purchase conversions tracked through Third Party App
      * Analytics.
      * 
* @@ -294,7 +295,7 @@ public enum ConversionActionType THIRD_PARTY_APP_ANALYTICS_IOS_IN_APP_PURCHASE(22), /** *
-     * iOS app custom conversions tracked via Third Party App Analytics.
+     * iOS app custom conversions tracked through Third Party App Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_IOS_CUSTOM = 23; @@ -528,7 +529,7 @@ public enum ConversionActionType public static final int STORE_SALES_VALUE = 11; /** *
-     * Android app first open conversions tracked via Firebase.
+     * Android app first open conversions tracked through Firebase.
      * 
* * FIREBASE_ANDROID_FIRST_OPEN = 12; @@ -536,7 +537,7 @@ public enum ConversionActionType public static final int FIREBASE_ANDROID_FIRST_OPEN_VALUE = 12; /** *
-     * Android app in app purchase conversions tracked via Firebase.
+     * Android app in app purchase conversions tracked through Firebase.
      * 
* * FIREBASE_ANDROID_IN_APP_PURCHASE = 13; @@ -544,7 +545,7 @@ public enum ConversionActionType public static final int FIREBASE_ANDROID_IN_APP_PURCHASE_VALUE = 13; /** *
-     * Android app custom conversions tracked via Firebase.
+     * Android app custom conversions tracked through Firebase.
      * 
* * FIREBASE_ANDROID_CUSTOM = 14; @@ -552,7 +553,7 @@ public enum ConversionActionType public static final int FIREBASE_ANDROID_CUSTOM_VALUE = 14; /** *
-     * iOS app first open conversions tracked via Firebase.
+     * iOS app first open conversions tracked through Firebase.
      * 
* * FIREBASE_IOS_FIRST_OPEN = 15; @@ -560,7 +561,7 @@ public enum ConversionActionType public static final int FIREBASE_IOS_FIRST_OPEN_VALUE = 15; /** *
-     * iOS app in app purchase conversions tracked via Firebase.
+     * iOS app in app purchase conversions tracked through Firebase.
      * 
* * FIREBASE_IOS_IN_APP_PURCHASE = 16; @@ -568,7 +569,7 @@ public enum ConversionActionType public static final int FIREBASE_IOS_IN_APP_PURCHASE_VALUE = 16; /** *
-     * iOS app custom conversions tracked via Firebase.
+     * iOS app custom conversions tracked through Firebase.
      * 
* * FIREBASE_IOS_CUSTOM = 17; @@ -576,7 +577,8 @@ public enum ConversionActionType public static final int FIREBASE_IOS_CUSTOM_VALUE = 17; /** *
-     * Android app first open conversions tracked via Third Party App Analytics.
+     * Android app first open conversions tracked through Third Party App
+     * Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_ANDROID_FIRST_OPEN = 18; @@ -584,7 +586,7 @@ public enum ConversionActionType public static final int THIRD_PARTY_APP_ANALYTICS_ANDROID_FIRST_OPEN_VALUE = 18; /** *
-     * Android app in app purchase conversions tracked via Third Party App
+     * Android app in app purchase conversions tracked through Third Party App
      * Analytics.
      * 
* @@ -593,7 +595,7 @@ public enum ConversionActionType public static final int THIRD_PARTY_APP_ANALYTICS_ANDROID_IN_APP_PURCHASE_VALUE = 19; /** *
-     * Android app custom conversions tracked via Third Party App Analytics.
+     * Android app custom conversions tracked through Third Party App Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_ANDROID_CUSTOM = 20; @@ -601,7 +603,7 @@ public enum ConversionActionType public static final int THIRD_PARTY_APP_ANALYTICS_ANDROID_CUSTOM_VALUE = 20; /** *
-     * iOS app first open conversions tracked via Third Party App Analytics.
+     * iOS app first open conversions tracked through Third Party App Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_IOS_FIRST_OPEN = 21; @@ -609,7 +611,7 @@ public enum ConversionActionType public static final int THIRD_PARTY_APP_ANALYTICS_IOS_FIRST_OPEN_VALUE = 21; /** *
-     * iOS app in app purchase conversions tracked via Third Party App
+     * iOS app in app purchase conversions tracked through Third Party App
      * Analytics.
      * 
* @@ -618,7 +620,7 @@ public enum ConversionActionType public static final int THIRD_PARTY_APP_ANALYTICS_IOS_IN_APP_PURCHASE_VALUE = 22; /** *
-     * iOS app custom conversions tracked via Third Party App Analytics.
+     * iOS app custom conversions tracked through Third Party App Analytics.
      * 
* * THIRD_PARTY_APP_ANALYTICS_IOS_CUSTOM = 23; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionEnvironmentEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionEnvironmentEnum.java index f5ab3a2b1e..1b6f5363c6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionEnvironmentEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionEnvironmentEnum.java @@ -6,7 +6,7 @@ /** *
  * Container for enum representing the conversion environment an uploaded
- * conversion was recorded on. e.g. App or Web.
+ * conversion was recorded on, for example, App or Web.
  * 
* * Protobuf type {@code google.ads.googleads.v11.enums.ConversionEnvironmentEnum} @@ -396,7 +396,7 @@ protected Builder newBuilderForType( /** *
    * Container for enum representing the conversion environment an uploaded
-   * conversion was recorded on. e.g. App or Web.
+   * conversion was recorded on, for example, App or Web.
    * 
* * Protobuf type {@code google.ads.googleads.v11.enums.ConversionEnvironmentEnum} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionOriginEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionOriginEnum.java index 60abdd3e05..6a8c5a1c33 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionOriginEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ConversionOriginEnum.java @@ -123,8 +123,8 @@ public enum ConversionOrigin /** *
      * Conversions reported by an offline pipeline which collects local actions
-     * from Google-hosted pages (e.g. Google Maps, Google Place Page, etc) and
-     * attributes them to relevant ad events.
+     * from Google-hosted pages (for example, Google Maps, Google Place Page,
+     * etc) and attributes them to relevant ad events.
      * 
* * GOOGLE_HOSTED = 3; @@ -132,7 +132,7 @@ public enum ConversionOrigin GOOGLE_HOSTED(3), /** *
-     * Conversion that occurs when a user performs an action via any app
+     * Conversion that occurs when a user performs an action through any app
      * platforms.
      * 
* @@ -195,8 +195,8 @@ public enum ConversionOrigin /** *
      * Conversions reported by an offline pipeline which collects local actions
-     * from Google-hosted pages (e.g. Google Maps, Google Place Page, etc) and
-     * attributes them to relevant ad events.
+     * from Google-hosted pages (for example, Google Maps, Google Place Page,
+     * etc) and attributes them to relevant ad events.
      * 
* * GOOGLE_HOSTED = 3; @@ -204,7 +204,7 @@ public enum ConversionOrigin public static final int GOOGLE_HOSTED_VALUE = 3; /** *
-     * Conversion that occurs when a user performs an action via any app
+     * Conversion that occurs when a user performs an action through any app
      * platforms.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/CriterionTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/CriterionTypeEnum.java index ccbc62dbf6..aa9fd1728b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/CriterionTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/CriterionTypeEnum.java @@ -113,7 +113,7 @@ public enum CriterionType UNKNOWN(1), /** *
-     * Keyword. e.g. 'mars cruise'.
+     * Keyword, for example, 'mars cruise'.
      * 
* * KEYWORD = 2; @@ -121,7 +121,7 @@ public enum CriterionType KEYWORD(2), /** *
-     * Placement, aka Website. e.g. 'www.flowers4sale.com'
+     * Placement, also known as Website, for example, 'www.flowers4sale.com'
      * 
* * PLACEMENT = 3; @@ -241,7 +241,7 @@ public enum CriterionType PROXIMITY(17), /** *
-     * A topic target on the display network (e.g. "Pets & Animals").
+     * A topic target on the display network (for example, "Pets & Animals").
      * 
* * TOPIC = 18; @@ -404,7 +404,7 @@ public enum CriterionType public static final int UNKNOWN_VALUE = 1; /** *
-     * Keyword. e.g. 'mars cruise'.
+     * Keyword, for example, 'mars cruise'.
      * 
* * KEYWORD = 2; @@ -412,7 +412,7 @@ public enum CriterionType public static final int KEYWORD_VALUE = 2; /** *
-     * Placement, aka Website. e.g. 'www.flowers4sale.com'
+     * Placement, also known as Website, for example, 'www.flowers4sale.com'
      * 
* * PLACEMENT = 3; @@ -532,7 +532,7 @@ public enum CriterionType public static final int PROXIMITY_VALUE = 17; /** *
-     * A topic target on the display network (e.g. "Pets & Animals").
+     * A topic target on the display network (for example, "Pets & Animals").
      * 
* * TOPIC = 18; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DayOfWeekEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DayOfWeekEnum.java index 4bf8d8a6dd..214e9c294a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DayOfWeekEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DayOfWeekEnum.java @@ -5,7 +5,7 @@ /** *
- * Container for enumeration of days of the week, e.g., "Monday".
+ * Container for enumeration of days of the week, for example, "Monday".
  * 
* * Protobuf type {@code google.ads.googleads.v11.enums.DayOfWeekEnum} @@ -88,7 +88,7 @@ private DayOfWeekEnum( /** *
-   * Enumerates days of the week, e.g., "Monday".
+   * Enumerates days of the week, for example, "Monday".
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.DayOfWeekEnum.DayOfWeek} @@ -479,7 +479,7 @@ protected Builder newBuilderForType( } /** *
-   * Container for enumeration of days of the week, e.g., "Monday".
+   * Container for enumeration of days of the week, for example, "Monday".
    * 
* * Protobuf type {@code google.ads.googleads.v11.enums.DayOfWeekEnum} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DisplayAdFormatSettingEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DisplayAdFormatSettingEnum.java index 9322f527e4..32bff2f5b2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DisplayAdFormatSettingEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/DisplayAdFormatSettingEnum.java @@ -129,8 +129,8 @@ public enum DisplayAdFormatSetting NON_NATIVE(3), /** *
-     * Native format, i.e. the format rendering is controlled by the publisher
-     * and not by Google.
+     * Native format, for example, the format rendering is controlled by the
+     * publisher and not by Google.
      * 
* * NATIVE = 4; @@ -173,8 +173,8 @@ public enum DisplayAdFormatSetting public static final int NON_NATIVE_VALUE = 3; /** *
-     * Native format, i.e. the format rendering is controlled by the publisher
-     * and not by Google.
+     * Native format, for example, the format rendering is controlled by the
+     * publisher and not by Google.
      * 
* * NATIVE = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/EducationPlaceholderFieldEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/EducationPlaceholderFieldEnum.java index d550c8fd82..60a924a0eb 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/EducationPlaceholderFieldEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/EducationPlaceholderFieldEnum.java @@ -192,8 +192,8 @@ public enum EducationPlaceholderField /** *
      * Data Type: URL_LIST. Required. Final URLs to be used in ad when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific program and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific program and its location).
      * 
* * FINAL_URLS = 11; @@ -361,8 +361,8 @@ public enum EducationPlaceholderField /** *
      * Data Type: URL_LIST. Required. Final URLs to be used in ad when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific program and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific program and its location).
      * 
* * FINAL_URLS = 11; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapEventTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapEventTypeEnum.java index 8291083627..4a505dd0c6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapEventTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapEventTypeEnum.java @@ -88,7 +88,7 @@ private FrequencyCapEventTypeEnum( /** *
-   * The type of event that the cap applies to (e.g. impression).
+   * The type of event that the cap applies to (for example, impression).
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapTimeUnitEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapTimeUnitEnum.java index 3c30809ca8..c9e5198300 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapTimeUnitEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/FrequencyCapTimeUnitEnum.java @@ -88,7 +88,7 @@ private FrequencyCapTimeUnitEnum( /** *
-   * Unit of time the cap is defined at (e.g. day, week).
+   * Unit of time the cap is defined at (for example, day, week).
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/GenderTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/GenderTypeEnum.java index be2b8f6fdd..99af36d4bd 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/GenderTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/GenderTypeEnum.java @@ -88,7 +88,7 @@ private GenderTypeEnum( /** *
-   * The type of demographic genders (e.g. female).
+   * The type of demographic genders (for example, female).
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.GenderTypeEnum.GenderType} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/HotelRateTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/HotelRateTypeEnum.java index e13c636b1a..f734bc5e0f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/HotelRateTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/HotelRateTypeEnum.java @@ -141,9 +141,9 @@ public enum HotelRateType QUALIFIED_RATE(4), /** *
-     * Rates available to users that satisfy some eligibility criteria. e.g.
-     * all signed-in users, 20% of mobile users, all mobile users in Canada,
-     * etc.
+     * Rates available to users that satisfy some eligibility criteria, for
+     * example, all signed-in users, 20% of mobile users, all mobile users in
+     * Canada, etc.
      * 
* * PRIVATE_RATE = 5; @@ -198,9 +198,9 @@ public enum HotelRateType public static final int QUALIFIED_RATE_VALUE = 4; /** *
-     * Rates available to users that satisfy some eligibility criteria. e.g.
-     * all signed-in users, 20% of mobile users, all mobile users in Canada,
-     * etc.
+     * Rates available to users that satisfy some eligibility criteria, for
+     * example, all signed-in users, 20% of mobile users, all mobile users in
+     * Canada, etc.
      * 
* * PRIVATE_RATE = 5; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/IncomeRangeTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/IncomeRangeTypeEnum.java index 71f12794db..3d1950f874 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/IncomeRangeTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/IncomeRangeTypeEnum.java @@ -88,7 +88,7 @@ private IncomeRangeTypeEnum( /** *
-   * The type of demographic income ranges (e.g. between 0% to 50%).
+   * The type of demographic income ranges (for example, between 0% to 50%).
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.IncomeRangeTypeEnum.IncomeRangeType} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/InteractionEventTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/InteractionEventTypeEnum.java index ba050bdc48..3971fd990e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/InteractionEventTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/InteractionEventTypeEnum.java @@ -141,7 +141,7 @@ public enum InteractionEventType *
      * The default InteractionEventType for ad conversion events.
      * This is used when an ad conversion row does NOT indicate
-     * that the free interactions (i.e., the ad conversions)
+     * that the free interactions (for example, the ad conversions)
      * should be 'promoted' and reported as part of the core metrics.
      * These are simply other (ad) conversions.
      * 
@@ -198,7 +198,7 @@ public enum InteractionEventType *
      * The default InteractionEventType for ad conversion events.
      * This is used when an ad conversion row does NOT indicate
-     * that the free interactions (i.e., the ad conversions)
+     * that the free interactions (for example, the ad conversions)
      * should be 'promoted' and reported as part of the core metrics.
      * These are simply other (ad) conversions.
      * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/JobPlaceholderFieldEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/JobPlaceholderFieldEnum.java index f43c0e63c0..c6e9b774fc 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/JobPlaceholderFieldEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/JobPlaceholderFieldEnum.java @@ -204,8 +204,8 @@ public enum JobPlaceholderField /** *
      * Data Type: URL_LIST. Required. Final URLs to be used in ad when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific job and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific job and its location).
      * 
* * FINAL_URLS = 12; @@ -377,8 +377,8 @@ public enum JobPlaceholderField /** *
      * Data Type: URL_LIST. Required. Final URLs to be used in ad when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific job and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific job and its location).
      * 
* * FINAL_URLS = 12; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormDesiredIntentEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormDesiredIntentEnum.java index 30fb1e1740..0df46e9eba 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormDesiredIntentEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormDesiredIntentEnum.java @@ -5,7 +5,7 @@ /** *
- * Describes the desired level of intent of generated leads.
+ * Describes the chosen level of intent of generated leads.
  * 
* * Protobuf type {@code google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum} @@ -88,7 +88,7 @@ private LeadFormDesiredIntentEnum( /** *
-   * Enum describing the desired level of intent of generated leads.
+   * Enum describing the chosen level of intent of generated leads.
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent} @@ -394,7 +394,7 @@ protected Builder newBuilderForType( } /** *
-   * Describes the desired level of intent of generated leads.
+   * Describes the chosen level of intent of generated leads.
    * 
* * Protobuf type {@code google.ads.googleads.v11.enums.LeadFormDesiredIntentEnum} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeEnum.java index 2698708ddf..6cda8f045c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeEnum.java @@ -144,6 +144,14 @@ public enum LeadFormFieldUserInputType * POSTAL_CODE = 5; */ POSTAL_CODE(5), + /** + *
+     * The user will be asked to fill in their street address.
+     * 
+ * + * STREET_ADDRESS = 8; + */ + STREET_ADDRESS(8), /** *
      * The user will be asked to fill in their city.
@@ -154,8 +162,8 @@ public enum LeadFormFieldUserInputType
     CITY(9),
     /**
      * 
-     * The user will be asked to fill in their region part of the address (e.g.
-     * state for US, province for Canada).
+     * The user will be asked to fill in their region part of the address (for
+     * example, state for US, province for Canada).
      * 
* * REGION = 10; @@ -383,6 +391,438 @@ public enum LeadFormFieldUserInputType * JOB_ROLE = 1012; */ JOB_ROLE(1012), + /** + *
+     * Question: "Are you over 18 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_18_AGE = 1078; + */ + OVER_18_AGE(1078), + /** + *
+     * Question: "Are you over 19 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_19_AGE = 1079; + */ + OVER_19_AGE(1079), + /** + *
+     * Question: "Are you over 20 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_20_AGE = 1080; + */ + OVER_20_AGE(1080), + /** + *
+     * Question: "Are you over 21 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_21_AGE = 1081; + */ + OVER_21_AGE(1081), + /** + *
+     * Question: "Are you over 22 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_22_AGE = 1082; + */ + OVER_22_AGE(1082), + /** + *
+     * Question: "Are you over 23 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_23_AGE = 1083; + */ + OVER_23_AGE(1083), + /** + *
+     * Question: "Are you over 24 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_24_AGE = 1084; + */ + OVER_24_AGE(1084), + /** + *
+     * Question: "Are you over 25 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_25_AGE = 1085; + */ + OVER_25_AGE(1085), + /** + *
+     * Question: "Are you over 26 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_26_AGE = 1086; + */ + OVER_26_AGE(1086), + /** + *
+     * Question: "Are you over 27 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_27_AGE = 1087; + */ + OVER_27_AGE(1087), + /** + *
+     * Question: "Are you over 28 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_28_AGE = 1088; + */ + OVER_28_AGE(1088), + /** + *
+     * Question: "Are you over 29 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_29_AGE = 1089; + */ + OVER_29_AGE(1089), + /** + *
+     * Question: "Are you over 30 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_30_AGE = 1090; + */ + OVER_30_AGE(1090), + /** + *
+     * Question: "Are you over 31 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_31_AGE = 1091; + */ + OVER_31_AGE(1091), + /** + *
+     * Question: "Are you over 32 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_32_AGE = 1092; + */ + OVER_32_AGE(1092), + /** + *
+     * Question: "Are you over 33 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_33_AGE = 1093; + */ + OVER_33_AGE(1093), + /** + *
+     * Question: "Are you over 34 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_34_AGE = 1094; + */ + OVER_34_AGE(1094), + /** + *
+     * Question: "Are you over 35 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_35_AGE = 1095; + */ + OVER_35_AGE(1095), + /** + *
+     * Question: "Are you over 36 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_36_AGE = 1096; + */ + OVER_36_AGE(1096), + /** + *
+     * Question: "Are you over 37 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_37_AGE = 1097; + */ + OVER_37_AGE(1097), + /** + *
+     * Question: "Are you over 38 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_38_AGE = 1098; + */ + OVER_38_AGE(1098), + /** + *
+     * Question: "Are you over 39 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_39_AGE = 1099; + */ + OVER_39_AGE(1099), + /** + *
+     * Question: "Are you over 40 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_40_AGE = 1100; + */ + OVER_40_AGE(1100), + /** + *
+     * Question: "Are you over 41 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_41_AGE = 1101; + */ + OVER_41_AGE(1101), + /** + *
+     * Question: "Are you over 42 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_42_AGE = 1102; + */ + OVER_42_AGE(1102), + /** + *
+     * Question: "Are you over 43 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_43_AGE = 1103; + */ + OVER_43_AGE(1103), + /** + *
+     * Question: "Are you over 44 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_44_AGE = 1104; + */ + OVER_44_AGE(1104), + /** + *
+     * Question: "Are you over 45 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_45_AGE = 1105; + */ + OVER_45_AGE(1105), + /** + *
+     * Question: "Are you over 46 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_46_AGE = 1106; + */ + OVER_46_AGE(1106), + /** + *
+     * Question: "Are you over 47 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_47_AGE = 1107; + */ + OVER_47_AGE(1107), + /** + *
+     * Question: "Are you over 48 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_48_AGE = 1108; + */ + OVER_48_AGE(1108), + /** + *
+     * Question: "Are you over 49 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_49_AGE = 1109; + */ + OVER_49_AGE(1109), + /** + *
+     * Question: "Are you over 50 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_50_AGE = 1110; + */ + OVER_50_AGE(1110), + /** + *
+     * Question: "Are you over 51 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_51_AGE = 1111; + */ + OVER_51_AGE(1111), + /** + *
+     * Question: "Are you over 52 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_52_AGE = 1112; + */ + OVER_52_AGE(1112), + /** + *
+     * Question: "Are you over 53 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_53_AGE = 1113; + */ + OVER_53_AGE(1113), + /** + *
+     * Question: "Are you over 54 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_54_AGE = 1114; + */ + OVER_54_AGE(1114), + /** + *
+     * Question: "Are you over 55 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_55_AGE = 1115; + */ + OVER_55_AGE(1115), + /** + *
+     * Question: "Are you over 56 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_56_AGE = 1116; + */ + OVER_56_AGE(1116), + /** + *
+     * Question: "Are you over 57 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_57_AGE = 1117; + */ + OVER_57_AGE(1117), + /** + *
+     * Question: "Are you over 58 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_58_AGE = 1118; + */ + OVER_58_AGE(1118), + /** + *
+     * Question: "Are you over 59 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_59_AGE = 1119; + */ + OVER_59_AGE(1119), + /** + *
+     * Question: "Are you over 60 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_60_AGE = 1120; + */ + OVER_60_AGE(1120), + /** + *
+     * Question: "Are you over 61 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_61_AGE = 1121; + */ + OVER_61_AGE(1121), + /** + *
+     * Question: "Are you over 62 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_62_AGE = 1122; + */ + OVER_62_AGE(1122), + /** + *
+     * Question: "Are you over 63 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_63_AGE = 1123; + */ + OVER_63_AGE(1123), + /** + *
+     * Question: "Are you over 64 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_64_AGE = 1124; + */ + OVER_64_AGE(1124), + /** + *
+     * Question: "Are you over 65 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_65_AGE = 1125; + */ + OVER_65_AGE(1125), /** *
      * Question: "Which program are you interested in?"
@@ -750,6 +1190,14 @@ public enum LeadFormFieldUserInputType
      * POSTAL_CODE = 5;
      */
     public static final int POSTAL_CODE_VALUE = 5;
+    /**
+     * 
+     * The user will be asked to fill in their street address.
+     * 
+ * + * STREET_ADDRESS = 8; + */ + public static final int STREET_ADDRESS_VALUE = 8; /** *
      * The user will be asked to fill in their city.
@@ -760,8 +1208,8 @@ public enum LeadFormFieldUserInputType
     public static final int CITY_VALUE = 9;
     /**
      * 
-     * The user will be asked to fill in their region part of the address (e.g.
-     * state for US, province for Canada).
+     * The user will be asked to fill in their region part of the address (for
+     * example, state for US, province for Canada).
      * 
* * REGION = 10; @@ -989,6 +1437,438 @@ public enum LeadFormFieldUserInputType * JOB_ROLE = 1012; */ public static final int JOB_ROLE_VALUE = 1012; + /** + *
+     * Question: "Are you over 18 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_18_AGE = 1078; + */ + public static final int OVER_18_AGE_VALUE = 1078; + /** + *
+     * Question: "Are you over 19 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_19_AGE = 1079; + */ + public static final int OVER_19_AGE_VALUE = 1079; + /** + *
+     * Question: "Are you over 20 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_20_AGE = 1080; + */ + public static final int OVER_20_AGE_VALUE = 1080; + /** + *
+     * Question: "Are you over 21 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_21_AGE = 1081; + */ + public static final int OVER_21_AGE_VALUE = 1081; + /** + *
+     * Question: "Are you over 22 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_22_AGE = 1082; + */ + public static final int OVER_22_AGE_VALUE = 1082; + /** + *
+     * Question: "Are you over 23 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_23_AGE = 1083; + */ + public static final int OVER_23_AGE_VALUE = 1083; + /** + *
+     * Question: "Are you over 24 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_24_AGE = 1084; + */ + public static final int OVER_24_AGE_VALUE = 1084; + /** + *
+     * Question: "Are you over 25 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_25_AGE = 1085; + */ + public static final int OVER_25_AGE_VALUE = 1085; + /** + *
+     * Question: "Are you over 26 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_26_AGE = 1086; + */ + public static final int OVER_26_AGE_VALUE = 1086; + /** + *
+     * Question: "Are you over 27 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_27_AGE = 1087; + */ + public static final int OVER_27_AGE_VALUE = 1087; + /** + *
+     * Question: "Are you over 28 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_28_AGE = 1088; + */ + public static final int OVER_28_AGE_VALUE = 1088; + /** + *
+     * Question: "Are you over 29 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_29_AGE = 1089; + */ + public static final int OVER_29_AGE_VALUE = 1089; + /** + *
+     * Question: "Are you over 30 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_30_AGE = 1090; + */ + public static final int OVER_30_AGE_VALUE = 1090; + /** + *
+     * Question: "Are you over 31 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_31_AGE = 1091; + */ + public static final int OVER_31_AGE_VALUE = 1091; + /** + *
+     * Question: "Are you over 32 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_32_AGE = 1092; + */ + public static final int OVER_32_AGE_VALUE = 1092; + /** + *
+     * Question: "Are you over 33 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_33_AGE = 1093; + */ + public static final int OVER_33_AGE_VALUE = 1093; + /** + *
+     * Question: "Are you over 34 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_34_AGE = 1094; + */ + public static final int OVER_34_AGE_VALUE = 1094; + /** + *
+     * Question: "Are you over 35 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_35_AGE = 1095; + */ + public static final int OVER_35_AGE_VALUE = 1095; + /** + *
+     * Question: "Are you over 36 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_36_AGE = 1096; + */ + public static final int OVER_36_AGE_VALUE = 1096; + /** + *
+     * Question: "Are you over 37 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_37_AGE = 1097; + */ + public static final int OVER_37_AGE_VALUE = 1097; + /** + *
+     * Question: "Are you over 38 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_38_AGE = 1098; + */ + public static final int OVER_38_AGE_VALUE = 1098; + /** + *
+     * Question: "Are you over 39 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_39_AGE = 1099; + */ + public static final int OVER_39_AGE_VALUE = 1099; + /** + *
+     * Question: "Are you over 40 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_40_AGE = 1100; + */ + public static final int OVER_40_AGE_VALUE = 1100; + /** + *
+     * Question: "Are you over 41 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_41_AGE = 1101; + */ + public static final int OVER_41_AGE_VALUE = 1101; + /** + *
+     * Question: "Are you over 42 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_42_AGE = 1102; + */ + public static final int OVER_42_AGE_VALUE = 1102; + /** + *
+     * Question: "Are you over 43 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_43_AGE = 1103; + */ + public static final int OVER_43_AGE_VALUE = 1103; + /** + *
+     * Question: "Are you over 44 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_44_AGE = 1104; + */ + public static final int OVER_44_AGE_VALUE = 1104; + /** + *
+     * Question: "Are you over 45 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_45_AGE = 1105; + */ + public static final int OVER_45_AGE_VALUE = 1105; + /** + *
+     * Question: "Are you over 46 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_46_AGE = 1106; + */ + public static final int OVER_46_AGE_VALUE = 1106; + /** + *
+     * Question: "Are you over 47 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_47_AGE = 1107; + */ + public static final int OVER_47_AGE_VALUE = 1107; + /** + *
+     * Question: "Are you over 48 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_48_AGE = 1108; + */ + public static final int OVER_48_AGE_VALUE = 1108; + /** + *
+     * Question: "Are you over 49 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_49_AGE = 1109; + */ + public static final int OVER_49_AGE_VALUE = 1109; + /** + *
+     * Question: "Are you over 50 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_50_AGE = 1110; + */ + public static final int OVER_50_AGE_VALUE = 1110; + /** + *
+     * Question: "Are you over 51 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_51_AGE = 1111; + */ + public static final int OVER_51_AGE_VALUE = 1111; + /** + *
+     * Question: "Are you over 52 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_52_AGE = 1112; + */ + public static final int OVER_52_AGE_VALUE = 1112; + /** + *
+     * Question: "Are you over 53 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_53_AGE = 1113; + */ + public static final int OVER_53_AGE_VALUE = 1113; + /** + *
+     * Question: "Are you over 54 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_54_AGE = 1114; + */ + public static final int OVER_54_AGE_VALUE = 1114; + /** + *
+     * Question: "Are you over 55 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_55_AGE = 1115; + */ + public static final int OVER_55_AGE_VALUE = 1115; + /** + *
+     * Question: "Are you over 56 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_56_AGE = 1116; + */ + public static final int OVER_56_AGE_VALUE = 1116; + /** + *
+     * Question: "Are you over 57 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_57_AGE = 1117; + */ + public static final int OVER_57_AGE_VALUE = 1117; + /** + *
+     * Question: "Are you over 58 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_58_AGE = 1118; + */ + public static final int OVER_58_AGE_VALUE = 1118; + /** + *
+     * Question: "Are you over 59 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_59_AGE = 1119; + */ + public static final int OVER_59_AGE_VALUE = 1119; + /** + *
+     * Question: "Are you over 60 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_60_AGE = 1120; + */ + public static final int OVER_60_AGE_VALUE = 1120; + /** + *
+     * Question: "Are you over 61 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_61_AGE = 1121; + */ + public static final int OVER_61_AGE_VALUE = 1121; + /** + *
+     * Question: "Are you over 62 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_62_AGE = 1122; + */ + public static final int OVER_62_AGE_VALUE = 1122; + /** + *
+     * Question: "Are you over 63 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_63_AGE = 1123; + */ + public static final int OVER_63_AGE_VALUE = 1123; + /** + *
+     * Question: "Are you over 64 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_64_AGE = 1124; + */ + public static final int OVER_64_AGE_VALUE = 1124; + /** + *
+     * Question: "Are you over 65 years of age?"
+     * Category: "Demographics"
+     * 
+ * + * OVER_65_AGE = 1125; + */ + public static final int OVER_65_AGE_VALUE = 1125; /** *
      * Question: "Which program are you interested in?"
@@ -1336,6 +2216,7 @@ public static LeadFormFieldUserInputType forNumber(int value) {
         case 3: return EMAIL;
         case 4: return PHONE_NUMBER;
         case 5: return POSTAL_CODE;
+        case 8: return STREET_ADDRESS;
         case 9: return CITY;
         case 10: return REGION;
         case 11: return COUNTRY;
@@ -1364,6 +2245,54 @@ public static LeadFormFieldUserInputType forNumber(int value) {
         case 1008: return YEARS_IN_BUSINESS;
         case 1011: return JOB_DEPARTMENT;
         case 1012: return JOB_ROLE;
+        case 1078: return OVER_18_AGE;
+        case 1079: return OVER_19_AGE;
+        case 1080: return OVER_20_AGE;
+        case 1081: return OVER_21_AGE;
+        case 1082: return OVER_22_AGE;
+        case 1083: return OVER_23_AGE;
+        case 1084: return OVER_24_AGE;
+        case 1085: return OVER_25_AGE;
+        case 1086: return OVER_26_AGE;
+        case 1087: return OVER_27_AGE;
+        case 1088: return OVER_28_AGE;
+        case 1089: return OVER_29_AGE;
+        case 1090: return OVER_30_AGE;
+        case 1091: return OVER_31_AGE;
+        case 1092: return OVER_32_AGE;
+        case 1093: return OVER_33_AGE;
+        case 1094: return OVER_34_AGE;
+        case 1095: return OVER_35_AGE;
+        case 1096: return OVER_36_AGE;
+        case 1097: return OVER_37_AGE;
+        case 1098: return OVER_38_AGE;
+        case 1099: return OVER_39_AGE;
+        case 1100: return OVER_40_AGE;
+        case 1101: return OVER_41_AGE;
+        case 1102: return OVER_42_AGE;
+        case 1103: return OVER_43_AGE;
+        case 1104: return OVER_44_AGE;
+        case 1105: return OVER_45_AGE;
+        case 1106: return OVER_46_AGE;
+        case 1107: return OVER_47_AGE;
+        case 1108: return OVER_48_AGE;
+        case 1109: return OVER_49_AGE;
+        case 1110: return OVER_50_AGE;
+        case 1111: return OVER_51_AGE;
+        case 1112: return OVER_52_AGE;
+        case 1113: return OVER_53_AGE;
+        case 1114: return OVER_54_AGE;
+        case 1115: return OVER_55_AGE;
+        case 1116: return OVER_56_AGE;
+        case 1117: return OVER_57_AGE;
+        case 1118: return OVER_58_AGE;
+        case 1119: return OVER_59_AGE;
+        case 1120: return OVER_60_AGE;
+        case 1121: return OVER_61_AGE;
+        case 1122: return OVER_62_AGE;
+        case 1123: return OVER_63_AGE;
+        case 1124: return OVER_64_AGE;
+        case 1125: return OVER_65_AGE;
         case 1013: return EDUCATION_PROGRAM;
         case 1014: return EDUCATION_COURSE;
         case 1016: return PRODUCT;
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeProto.java
index ac82a22192..c5db5af3f0 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeProto.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LeadFormFieldUserInputTypeProto.java
@@ -30,54 +30,76 @@ public static void registerAllExtensions(
     java.lang.String[] descriptorData = {
       "\nDgoogle/ads/googleads/v11/enums/lead_fo" +
       "rm_field_user_input_type.proto\022\036google.a" +
-      "ds.googleads.v11.enums\"\324\014\n\036LeadFormField" +
-      "UserInputTypeEnum\"\261\014\n\032LeadFormFieldUserI" +
+      "ds.googleads.v11.enums\"\310\023\n\036LeadFormField" +
+      "UserInputTypeEnum\"\245\023\n\032LeadFormFieldUserI" +
       "nputType\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\r" +
       "\n\tFULL_NAME\020\002\022\t\n\005EMAIL\020\003\022\020\n\014PHONE_NUMBER" +
-      "\020\004\022\017\n\013POSTAL_CODE\020\005\022\010\n\004CITY\020\t\022\n\n\006REGION\020" +
-      "\n\022\013\n\007COUNTRY\020\013\022\016\n\nWORK_EMAIL\020\014\022\020\n\014COMPAN" +
-      "Y_NAME\020\r\022\016\n\nWORK_PHONE\020\016\022\r\n\tJOB_TITLE\020\017\022" +
-      "\037\n\033GOVERNMENT_ISSUED_ID_CPF_BR\020\020\022\037\n\033GOVE" +
-      "RNMENT_ISSUED_ID_DNI_AR\020\021\022\037\n\033GOVERNMENT_" +
-      "ISSUED_ID_DNI_PE\020\022\022\037\n\033GOVERNMENT_ISSUED_" +
-      "ID_RUT_CL\020\023\022\036\n\032GOVERNMENT_ISSUED_ID_CC_C" +
-      "O\020\024\022\036\n\032GOVERNMENT_ISSUED_ID_CI_EC\020\025\022\037\n\033G" +
-      "OVERNMENT_ISSUED_ID_RFC_MX\020\026\022\016\n\nFIRST_NA" +
-      "ME\020\027\022\r\n\tLAST_NAME\020\030\022\022\n\rVEHICLE_MODEL\020\351\007\022" +
-      "\021\n\014VEHICLE_TYPE\020\352\007\022\031\n\024PREFERRED_DEALERSH" +
-      "IP\020\353\007\022\036\n\031VEHICLE_PURCHASE_TIMELINE\020\354\007\022\026\n" +
-      "\021VEHICLE_OWNERSHIP\020\355\007\022\031\n\024VEHICLE_PAYMENT" +
-      "_TYPE\020\361\007\022\026\n\021VEHICLE_CONDITION\020\362\007\022\021\n\014COMP" +
-      "ANY_SIZE\020\356\007\022\021\n\014ANNUAL_SALES\020\357\007\022\026\n\021YEARS_" +
-      "IN_BUSINESS\020\360\007\022\023\n\016JOB_DEPARTMENT\020\363\007\022\r\n\010J" +
-      "OB_ROLE\020\364\007\022\026\n\021EDUCATION_PROGRAM\020\365\007\022\025\n\020ED" +
-      "UCATION_COURSE\020\366\007\022\014\n\007PRODUCT\020\370\007\022\014\n\007SERVI" +
-      "CE\020\371\007\022\n\n\005OFFER\020\372\007\022\r\n\010CATEGORY\020\373\007\022\035\n\030PREF" +
-      "ERRED_CONTACT_METHOD\020\374\007\022\027\n\022PREFERRED_LOC" +
-      "ATION\020\375\007\022\033\n\026PREFERRED_CONTACT_TIME\020\376\007\022\026\n" +
-      "\021PURCHASE_TIMELINE\020\377\007\022\030\n\023YEARS_OF_EXPERI" +
-      "ENCE\020\230\010\022\021\n\014JOB_INDUSTRY\020\231\010\022\027\n\022LEVEL_OF_E" +
-      "DUCATION\020\232\010\022\022\n\rPROPERTY_TYPE\020\200\010\022\026\n\021REALT" +
-      "OR_HELP_GOAL\020\201\010\022\027\n\022PROPERTY_COMMUNITY\020\202\010" +
-      "\022\020\n\013PRICE_RANGE\020\203\010\022\027\n\022NUMBER_OF_BEDROOMS" +
-      "\020\204\010\022\027\n\022FURNISHED_PROPERTY\020\205\010\022\032\n\025PETS_ALL" +
-      "OWED_PROPERTY\020\206\010\022\032\n\025NEXT_PLANNED_PURCHAS" +
-      "E\020\207\010\022\032\n\025EVENT_SIGNUP_INTEREST\020\211\010\022\036\n\031PREF" +
-      "ERRED_SHOPPING_PLACES\020\212\010\022\023\n\016FAVORITE_BRA" +
-      "ND\020\213\010\022+\n&TRANSPORTATION_COMMERCIAL_LICEN" +
-      "SE_TYPE\020\214\010\022\033\n\026EVENT_BOOKING_INTEREST\020\216\010\022" +
-      "\030\n\023DESTINATION_COUNTRY\020\217\010\022\025\n\020DESTINATION" +
-      "_CITY\020\220\010\022\026\n\021DEPARTURE_COUNTRY\020\221\010\022\023\n\016DEPA" +
-      "RTURE_CITY\020\222\010\022\023\n\016DEPARTURE_DATE\020\223\010\022\020\n\013RE" +
-      "TURN_DATE\020\224\010\022\030\n\023NUMBER_OF_TRAVELERS\020\225\010\022\022" +
-      "\n\rTRAVEL_BUDGET\020\226\010\022\031\n\024TRAVEL_ACCOMMODATI" +
-      "ON\020\227\010B\371\001\n\"com.google.ads.googleads.v11.e" +
-      "numsB\037LeadFormFieldUserInputTypeProtoP\001Z" +
-      "Cgoogle.golang.org/genproto/googleapis/a" +
-      "ds/googleads/v11/enums;enums\242\002\003GAA\252\002\036Goo" +
-      "gle.Ads.GoogleAds.V11.Enums\312\002\036Google\\Ads" +
-      "\\GoogleAds\\V11\\Enums\352\002\"Google::Ads::Goog" +
-      "leAds::V11::Enumsb\006proto3"
+      "\020\004\022\017\n\013POSTAL_CODE\020\005\022\022\n\016STREET_ADDRESS\020\010\022" +
+      "\010\n\004CITY\020\t\022\n\n\006REGION\020\n\022\013\n\007COUNTRY\020\013\022\016\n\nWO" +
+      "RK_EMAIL\020\014\022\020\n\014COMPANY_NAME\020\r\022\016\n\nWORK_PHO" +
+      "NE\020\016\022\r\n\tJOB_TITLE\020\017\022\037\n\033GOVERNMENT_ISSUED" +
+      "_ID_CPF_BR\020\020\022\037\n\033GOVERNMENT_ISSUED_ID_DNI" +
+      "_AR\020\021\022\037\n\033GOVERNMENT_ISSUED_ID_DNI_PE\020\022\022\037" +
+      "\n\033GOVERNMENT_ISSUED_ID_RUT_CL\020\023\022\036\n\032GOVER" +
+      "NMENT_ISSUED_ID_CC_CO\020\024\022\036\n\032GOVERNMENT_IS" +
+      "SUED_ID_CI_EC\020\025\022\037\n\033GOVERNMENT_ISSUED_ID_" +
+      "RFC_MX\020\026\022\016\n\nFIRST_NAME\020\027\022\r\n\tLAST_NAME\020\030\022" +
+      "\022\n\rVEHICLE_MODEL\020\351\007\022\021\n\014VEHICLE_TYPE\020\352\007\022\031" +
+      "\n\024PREFERRED_DEALERSHIP\020\353\007\022\036\n\031VEHICLE_PUR" +
+      "CHASE_TIMELINE\020\354\007\022\026\n\021VEHICLE_OWNERSHIP\020\355" +
+      "\007\022\031\n\024VEHICLE_PAYMENT_TYPE\020\361\007\022\026\n\021VEHICLE_" +
+      "CONDITION\020\362\007\022\021\n\014COMPANY_SIZE\020\356\007\022\021\n\014ANNUA" +
+      "L_SALES\020\357\007\022\026\n\021YEARS_IN_BUSINESS\020\360\007\022\023\n\016JO" +
+      "B_DEPARTMENT\020\363\007\022\r\n\010JOB_ROLE\020\364\007\022\020\n\013OVER_1" +
+      "8_AGE\020\266\010\022\020\n\013OVER_19_AGE\020\267\010\022\020\n\013OVER_20_AG" +
+      "E\020\270\010\022\020\n\013OVER_21_AGE\020\271\010\022\020\n\013OVER_22_AGE\020\272\010" +
+      "\022\020\n\013OVER_23_AGE\020\273\010\022\020\n\013OVER_24_AGE\020\274\010\022\020\n\013" +
+      "OVER_25_AGE\020\275\010\022\020\n\013OVER_26_AGE\020\276\010\022\020\n\013OVER" +
+      "_27_AGE\020\277\010\022\020\n\013OVER_28_AGE\020\300\010\022\020\n\013OVER_29_" +
+      "AGE\020\301\010\022\020\n\013OVER_30_AGE\020\302\010\022\020\n\013OVER_31_AGE\020" +
+      "\303\010\022\020\n\013OVER_32_AGE\020\304\010\022\020\n\013OVER_33_AGE\020\305\010\022\020" +
+      "\n\013OVER_34_AGE\020\306\010\022\020\n\013OVER_35_AGE\020\307\010\022\020\n\013OV" +
+      "ER_36_AGE\020\310\010\022\020\n\013OVER_37_AGE\020\311\010\022\020\n\013OVER_3" +
+      "8_AGE\020\312\010\022\020\n\013OVER_39_AGE\020\313\010\022\020\n\013OVER_40_AG" +
+      "E\020\314\010\022\020\n\013OVER_41_AGE\020\315\010\022\020\n\013OVER_42_AGE\020\316\010" +
+      "\022\020\n\013OVER_43_AGE\020\317\010\022\020\n\013OVER_44_AGE\020\320\010\022\020\n\013" +
+      "OVER_45_AGE\020\321\010\022\020\n\013OVER_46_AGE\020\322\010\022\020\n\013OVER" +
+      "_47_AGE\020\323\010\022\020\n\013OVER_48_AGE\020\324\010\022\020\n\013OVER_49_" +
+      "AGE\020\325\010\022\020\n\013OVER_50_AGE\020\326\010\022\020\n\013OVER_51_AGE\020" +
+      "\327\010\022\020\n\013OVER_52_AGE\020\330\010\022\020\n\013OVER_53_AGE\020\331\010\022\020" +
+      "\n\013OVER_54_AGE\020\332\010\022\020\n\013OVER_55_AGE\020\333\010\022\020\n\013OV" +
+      "ER_56_AGE\020\334\010\022\020\n\013OVER_57_AGE\020\335\010\022\020\n\013OVER_5" +
+      "8_AGE\020\336\010\022\020\n\013OVER_59_AGE\020\337\010\022\020\n\013OVER_60_AG" +
+      "E\020\340\010\022\020\n\013OVER_61_AGE\020\341\010\022\020\n\013OVER_62_AGE\020\342\010" +
+      "\022\020\n\013OVER_63_AGE\020\343\010\022\020\n\013OVER_64_AGE\020\344\010\022\020\n\013" +
+      "OVER_65_AGE\020\345\010\022\026\n\021EDUCATION_PROGRAM\020\365\007\022\025" +
+      "\n\020EDUCATION_COURSE\020\366\007\022\014\n\007PRODUCT\020\370\007\022\014\n\007S" +
+      "ERVICE\020\371\007\022\n\n\005OFFER\020\372\007\022\r\n\010CATEGORY\020\373\007\022\035\n\030" +
+      "PREFERRED_CONTACT_METHOD\020\374\007\022\027\n\022PREFERRED" +
+      "_LOCATION\020\375\007\022\033\n\026PREFERRED_CONTACT_TIME\020\376" +
+      "\007\022\026\n\021PURCHASE_TIMELINE\020\377\007\022\030\n\023YEARS_OF_EX" +
+      "PERIENCE\020\230\010\022\021\n\014JOB_INDUSTRY\020\231\010\022\027\n\022LEVEL_" +
+      "OF_EDUCATION\020\232\010\022\022\n\rPROPERTY_TYPE\020\200\010\022\026\n\021R" +
+      "EALTOR_HELP_GOAL\020\201\010\022\027\n\022PROPERTY_COMMUNIT" +
+      "Y\020\202\010\022\020\n\013PRICE_RANGE\020\203\010\022\027\n\022NUMBER_OF_BEDR" +
+      "OOMS\020\204\010\022\027\n\022FURNISHED_PROPERTY\020\205\010\022\032\n\025PETS" +
+      "_ALLOWED_PROPERTY\020\206\010\022\032\n\025NEXT_PLANNED_PUR" +
+      "CHASE\020\207\010\022\032\n\025EVENT_SIGNUP_INTEREST\020\211\010\022\036\n\031" +
+      "PREFERRED_SHOPPING_PLACES\020\212\010\022\023\n\016FAVORITE" +
+      "_BRAND\020\213\010\022+\n&TRANSPORTATION_COMMERCIAL_L" +
+      "ICENSE_TYPE\020\214\010\022\033\n\026EVENT_BOOKING_INTEREST" +
+      "\020\216\010\022\030\n\023DESTINATION_COUNTRY\020\217\010\022\025\n\020DESTINA" +
+      "TION_CITY\020\220\010\022\026\n\021DEPARTURE_COUNTRY\020\221\010\022\023\n\016" +
+      "DEPARTURE_CITY\020\222\010\022\023\n\016DEPARTURE_DATE\020\223\010\022\020" +
+      "\n\013RETURN_DATE\020\224\010\022\030\n\023NUMBER_OF_TRAVELERS\020" +
+      "\225\010\022\022\n\rTRAVEL_BUDGET\020\226\010\022\031\n\024TRAVEL_ACCOMMO" +
+      "DATION\020\227\010B\371\001\n\"com.google.ads.googleads.v" +
+      "11.enumsB\037LeadFormFieldUserInputTypeProt" +
+      "oP\001ZCgoogle.golang.org/genproto/googleap" +
+      "is/ads/googleads/v11/enums;enums\242\002\003GAA\252\002" +
+      "\036Google.Ads.GoogleAds.V11.Enums\312\002\036Google" +
+      "\\Ads\\GoogleAds\\V11\\Enums\352\002\"Google::Ads::" +
+      "GoogleAds::V11::Enumsb\006proto3"
     };
     descriptor = com.google.protobuf.Descriptors.FileDescriptor
       .internalBuildGeneratedFileFrom(descriptorData,
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocalPlaceholderFieldEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocalPlaceholderFieldEnum.java
index 55189c51c6..8a1c16adc6 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocalPlaceholderFieldEnum.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocalPlaceholderFieldEnum.java
@@ -218,8 +218,8 @@ public enum LocalPlaceholderField
     /**
      * 
      * Data Type: URL_LIST. Required. Final URLs to be used in ad when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific local deal and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific local deal and its location).
      * 
* * FINAL_URLS = 14; @@ -405,8 +405,8 @@ public enum LocalPlaceholderField /** *
      * Data Type: URL_LIST. Required. Final URLs to be used in ad when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific local deal and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific local deal and its location).
      * 
* * FINAL_URLS = 14; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocationGroupRadiusUnitsEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocationGroupRadiusUnitsEnum.java index 868013afbb..8ad5ad2de9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocationGroupRadiusUnitsEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/LocationGroupRadiusUnitsEnum.java @@ -88,7 +88,7 @@ private LocationGroupRadiusUnitsEnum( /** *
-   * The unit of radius distance in location group (e.g. MILES)
+   * The unit of radius distance in location group (for example, MILES)
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MinuteOfHourEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MinuteOfHourEnum.java index 00724fd3d8..cd12229379 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MinuteOfHourEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MinuteOfHourEnum.java @@ -88,7 +88,7 @@ private MinuteOfHourEnum( /** *
-   * Enumerates of quarter-hours. E.g. "FIFTEEN"
+   * Enumerates of quarter-hours. For example, "FIFTEEN"
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.MinuteOfHourEnum.MinuteOfHour} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MonthOfYearEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MonthOfYearEnum.java index 441d8d4d7c..e09c8c42fa 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MonthOfYearEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/MonthOfYearEnum.java @@ -5,7 +5,7 @@ /** *
- * Container for enumeration of months of the year, e.g., "January".
+ * Container for enumeration of months of the year, for example, "January".
  * 
* * Protobuf type {@code google.ads.googleads.v11.enums.MonthOfYearEnum} @@ -88,7 +88,7 @@ private MonthOfYearEnum( /** *
-   * Enumerates months of the year, e.g., "January".
+   * Enumerates months of the year, for example, "January".
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.MonthOfYearEnum.MonthOfYear} @@ -564,7 +564,7 @@ protected Builder newBuilderForType( } /** *
-   * Container for enumeration of months of the year, e.g., "January".
+   * Container for enumeration of months of the year, for example, "January".
    * 
* * Protobuf type {@code google.ads.googleads.v11.enums.MonthOfYearEnum} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ParentalStatusTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ParentalStatusTypeEnum.java index 1a91e3fb67..835e62e3cc 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ParentalStatusTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ParentalStatusTypeEnum.java @@ -88,7 +88,7 @@ private ParentalStatusTypeEnum( /** *
-   * The type of parental statuses (e.g. not a parent).
+   * The type of parental statuses (for example, not a parent).
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.ParentalStatusTypeEnum.ParentalStatusType} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PaymentModeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PaymentModeEnum.java index 7fff4c8e51..663703947b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PaymentModeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PaymentModeEnum.java @@ -113,7 +113,7 @@ public enum PaymentMode UNKNOWN(1), /** *
-     * Pay per click.
+     * Pay per interaction.
      * 
* * CLICKS = 4; @@ -172,7 +172,7 @@ public enum PaymentMode public static final int UNKNOWN_VALUE = 1; /** *
-     * Pay per click.
+     * Pay per interaction.
      * 
* * CLICKS = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlaceholderTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlaceholderTypeEnum.java index a5b1c9db82..4c2d715e65 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlaceholderTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlaceholderTypeEnum.java @@ -201,7 +201,7 @@ public enum PlaceholderType PRICE(10), /** *
-     * Allows you to highlight sales and other promotions that let users see how
+     * Lets you highlight sales and other promotions that let users see how
      * they can save by buying now.
      * 
* @@ -400,7 +400,7 @@ public enum PlaceholderType public static final int PRICE_VALUE = 10; /** *
-     * Allows you to highlight sales and other promotions that let users see how
+     * Lets you highlight sales and other promotions that let users see how
      * they can save by buying now.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlacementTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlacementTypeEnum.java index f8f218dcb2..29f8f282ac 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlacementTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PlacementTypeEnum.java @@ -113,7 +113,7 @@ public enum PlacementType UNKNOWN(1), /** *
-     * Websites(e.g. 'www.flowers4sale.com').
+     * Websites(for example, 'www.flowers4sale.com').
      * 
* * WEBSITE = 2; @@ -121,7 +121,7 @@ public enum PlacementType WEBSITE(2), /** *
-     * Mobile application categories(e.g. 'Games').
+     * Mobile application categories(for example, 'Games').
      * 
* * MOBILE_APP_CATEGORY = 3; @@ -129,7 +129,7 @@ public enum PlacementType MOBILE_APP_CATEGORY(3), /** *
-     * mobile applications(e.g. 'mobileapp::2-com.whatsthewordanswers').
+     * mobile applications(for example, 'mobileapp::2-com.whatsthewordanswers').
      * 
* * MOBILE_APPLICATION = 4; @@ -137,7 +137,7 @@ public enum PlacementType MOBILE_APPLICATION(4), /** *
-     * YouTube videos(e.g. 'youtube.com/video/wtLJPvx7-ys').
+     * YouTube videos(for example, 'youtube.com/video/wtLJPvx7-ys').
      * 
* * YOUTUBE_VIDEO = 5; @@ -145,7 +145,7 @@ public enum PlacementType YOUTUBE_VIDEO(5), /** *
-     * YouTube channels(e.g. 'youtube.com::L8ZULXASCc1I_oaOT0NaOQ').
+     * YouTube channels(for example, 'youtube.com::L8ZULXASCc1I_oaOT0NaOQ').
      * 
* * YOUTUBE_CHANNEL = 6; @@ -172,7 +172,7 @@ public enum PlacementType public static final int UNKNOWN_VALUE = 1; /** *
-     * Websites(e.g. 'www.flowers4sale.com').
+     * Websites(for example, 'www.flowers4sale.com').
      * 
* * WEBSITE = 2; @@ -180,7 +180,7 @@ public enum PlacementType public static final int WEBSITE_VALUE = 2; /** *
-     * Mobile application categories(e.g. 'Games').
+     * Mobile application categories(for example, 'Games').
      * 
* * MOBILE_APP_CATEGORY = 3; @@ -188,7 +188,7 @@ public enum PlacementType public static final int MOBILE_APP_CATEGORY_VALUE = 3; /** *
-     * mobile applications(e.g. 'mobileapp::2-com.whatsthewordanswers').
+     * mobile applications(for example, 'mobileapp::2-com.whatsthewordanswers').
      * 
* * MOBILE_APPLICATION = 4; @@ -196,7 +196,7 @@ public enum PlacementType public static final int MOBILE_APPLICATION_VALUE = 4; /** *
-     * YouTube videos(e.g. 'youtube.com/video/wtLJPvx7-ys').
+     * YouTube videos(for example, 'youtube.com/video/wtLJPvx7-ys').
      * 
* * YOUTUBE_VIDEO = 5; @@ -204,7 +204,7 @@ public enum PlacementType public static final int YOUTUBE_VIDEO_VALUE = 5; /** *
-     * YouTube channels(e.g. 'youtube.com::L8ZULXASCc1I_oaOT0NaOQ').
+     * YouTube channels(for example, 'youtube.com::L8ZULXASCc1I_oaOT0NaOQ').
      * 
* * YOUTUBE_CHANNEL = 6; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PricePlaceholderFieldEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PricePlaceholderFieldEnum.java index 6b51d2df78..0c1e5cd812 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PricePlaceholderFieldEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PricePlaceholderFieldEnum.java @@ -175,7 +175,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 1 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_1_PRICE = 102; @@ -227,7 +228,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 2 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_2_PRICE = 202; @@ -279,7 +281,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 3 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_3_PRICE = 302; @@ -331,7 +334,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 4 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_4_PRICE = 402; @@ -383,7 +387,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 5 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_5_PRICE = 502; @@ -435,7 +440,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 6 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_6_PRICE = 602; @@ -487,7 +493,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 7 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_7_PRICE = 702; @@ -539,7 +546,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 8 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_8_PRICE = 802; @@ -655,7 +663,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 1 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_1_PRICE = 102; @@ -707,7 +716,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 2 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_2_PRICE = 202; @@ -759,7 +769,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 3 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_3_PRICE = 302; @@ -811,7 +822,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 4 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_4_PRICE = 402; @@ -863,7 +875,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 5 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_5_PRICE = 502; @@ -915,7 +928,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 6 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_6_PRICE = 602; @@ -967,7 +981,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 7 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_7_PRICE = 702; @@ -1019,7 +1034,8 @@ public enum PricePlaceholderField /** *
      * Data Type: MONEY. The price (money with currency) of item 8 of the table,
-     * e.g., 30 USD. The currency must match one of the available currencies.
+     * for example, 30 USD. The currency must match one of the available
+     * currencies.
      * 
* * ITEM_8_PRICE = 802; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionExtensionOccasionEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionExtensionOccasionEnum.java index 1b6fc1222b..97f7a7a2b9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionExtensionOccasionEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionExtensionOccasionEnum.java @@ -6,7 +6,7 @@ /** *
  * Container for enum describing a promotion extension occasion.
- * For more information about the occasions please check:
+ * For more information about the occasions  check:
  * https://support.google.com/google-ads/answer/7367521
  * 
* @@ -992,7 +992,7 @@ protected Builder newBuilderForType( /** *
    * Container for enum describing a promotion extension occasion.
-   * For more information about the occasions please check:
+   * For more information about the occasions  check:
    * https://support.google.com/google-ads/answer/7367521
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionPlaceholderFieldEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionPlaceholderFieldEnum.java index 6a85b4ce7f..4e37ac6ee3 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionPlaceholderFieldEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/PromotionPlaceholderFieldEnum.java @@ -122,7 +122,7 @@ public enum PromotionPlaceholderField PROMOTION_TARGET(2), /** *
-     * Data Type: STRING. Allows you to add "up to" phrase to the promotion,
+     * Data Type: STRING. Lets you add "up to" phrase to the promotion,
      * in case you have variable promotion rates.
      * 
* @@ -262,7 +262,7 @@ public enum PromotionPlaceholderField public static final int PROMOTION_TARGET_VALUE = 2; /** *
-     * Data Type: STRING. Allows you to add "up to" phrase to the promotion,
+     * Data Type: STRING. Lets you add "up to" phrase to the promotion,
      * in case you have variable promotion rates.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ProximityRadiusUnitsEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ProximityRadiusUnitsEnum.java index 9eeff85469..42ddb11d95 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ProximityRadiusUnitsEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ProximityRadiusUnitsEnum.java @@ -88,7 +88,7 @@ private ProximityRadiusUnitsEnum( /** *
-   * The unit of radius distance in proximity (e.g. MILES)
+   * The unit of radius distance in proximity (for example, MILES)
    * 
* * Protobuf enum {@code google.ads.googleads.v11.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RealEstatePlaceholderFieldEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RealEstatePlaceholderFieldEnum.java index 21b6f24f68..f46d347ff9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RealEstatePlaceholderFieldEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RealEstatePlaceholderFieldEnum.java @@ -209,8 +209,8 @@ public enum RealEstatePlaceholderField /** *
      * Data Type: URL_LIST. Final URLs to be used in ad when using Upgraded
-     * URLs; the more specific the better (e.g. the individual URL of a specific
-     * listing and its location).
+     * URLs; the more specific the better (for example, the individual URL of a
+     * specific listing and its location).
      * 
* * FINAL_URLS = 13; @@ -387,8 +387,8 @@ public enum RealEstatePlaceholderField /** *
      * Data Type: URL_LIST. Final URLs to be used in ad when using Upgraded
-     * URLs; the more specific the better (e.g. the individual URL of a specific
-     * listing and its location).
+     * URLs; the more specific the better (for example, the individual URL of a
+     * specific listing and its location).
      * 
* * FINAL_URLS = 13; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeEnum.java index b1c47c4cec..bffbc77436 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeEnum.java @@ -303,6 +303,23 @@ public enum RecommendationType * RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH = 23; */ RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH(23), + /** + *
+     * Recommendation to update a campaign to use Display Expansion.
+     * 
+ * + * DISPLAY_EXPANSION_OPT_IN = 24; + */ + DISPLAY_EXPANSION_OPT_IN(24), + /** + *
+     * Recommendation to upgrade a Local campaign to a Performance Max
+     * campaign.
+     * 
+ * + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX = 25; + */ + UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX(25), UNRECOGNIZED(-1), ; @@ -514,6 +531,23 @@ public enum RecommendationType * RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH = 23; */ public static final int RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH_VALUE = 23; + /** + *
+     * Recommendation to update a campaign to use Display Expansion.
+     * 
+ * + * DISPLAY_EXPANSION_OPT_IN = 24; + */ + public static final int DISPLAY_EXPANSION_OPT_IN_VALUE = 24; + /** + *
+     * Recommendation to upgrade a Local campaign to a Performance Max
+     * campaign.
+     * 
+ * + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX = 25; + */ + public static final int UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX_VALUE = 25; public final int getNumber() { @@ -564,6 +598,8 @@ public static RecommendationType forNumber(int value) { case 21: return RESPONSIVE_SEARCH_AD_ASSET; case 22: return UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX; case 23: return RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH; + case 24: return DISPLAY_EXPANSION_OPT_IN; + case 25: return UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX; default: return null; } } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeProto.java index c44ec227eb..d73698cf38 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/RecommendationTypeProto.java @@ -30,7 +30,7 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n8google/ads/googleads/v11/enums/recomme" + "ndation_type.proto\022\036google.ads.googleads" + - ".v11.enums\"\252\005\n\026RecommendationTypeEnum\"\217\005" + + ".v11.enums\"\367\005\n\026RecommendationTypeEnum\"\334\005" + "\n\022RecommendationType\022\017\n\013UNSPECIFIED\020\000\022\013\n" + "\007UNKNOWN\020\001\022\023\n\017CAMPAIGN_BUDGET\020\002\022\013\n\007KEYWO" + "RD\020\003\022\013\n\007TEXT_AD\020\004\022\025\n\021TARGET_CPA_OPT_IN\020\005" + @@ -47,13 +47,15 @@ public static void registerAllExtensions( "\024\022\036\n\032RESPONSIVE_SEARCH_AD_ASSET\020\025\0226\n2UPG" + "RADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMA" + "NCE_MAX\020\026\022,\n(RESPONSIVE_SEARCH_AD_IMPROV" + - "E_AD_STRENGTH\020\027B\361\001\n\"com.google.ads.googl" + - "eads.v11.enumsB\027RecommendationTypeProtoP" + - "\001ZCgoogle.golang.org/genproto/googleapis" + - "/ads/googleads/v11/enums;enums\242\002\003GAA\252\002\036G" + - "oogle.Ads.GoogleAds.V11.Enums\312\002\036Google\\A" + - "ds\\GoogleAds\\V11\\Enums\352\002\"Google::Ads::Go" + - "ogleAds::V11::Enumsb\006proto3" + "E_AD_STRENGTH\020\027\022\034\n\030DISPLAY_EXPANSION_OPT" + + "_IN\020\030\022-\n)UPGRADE_LOCAL_CAMPAIGN_TO_PERFO" + + "RMANCE_MAX\020\031B\361\001\n\"com.google.ads.googlead" + + "s.v11.enumsB\027RecommendationTypeProtoP\001ZC" + + "google.golang.org/genproto/googleapis/ad" + + "s/googleads/v11/enums;enums\242\002\003GAA\252\002\036Goog" + + "le.Ads.GoogleAds.V11.Enums\312\002\036Google\\Ads\\" + + "GoogleAds\\V11\\Enums\352\002\"Google::Ads::Googl" + + "eAds::V11::Enumsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ResourceLimitTypeEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ResourceLimitTypeEnum.java index a81bb6b24d..466a190a22 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ResourceLimitTypeEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/ResourceLimitTypeEnum.java @@ -368,7 +368,7 @@ public enum ResourceLimitType NEGATIVE_KEYWORDS_PER_CAMPAIGN(28), /** *
-     * Number of excluded campaign criteria in placement dimension, e.g.
+     * Number of excluded campaign criteria in placement dimension, for example,
      * placement, mobile application, YouTube channel, etc. The API criterion
      * type is NOT limited to placement only, and this does not include
      * exclusions at the ad group or other levels.
@@ -1110,8 +1110,8 @@ public enum ResourceLimitType
      * 
      * Number of ENABLED keyword plans per user per customer.
      * The limit is applied per <user, customer> pair because by default a plan
-     * is private to a user of a customer. Each user of a customer has his or
-     * her own independent limit.
+     * is private to a user of a customer. Each user of a customer has their own
+     * independent limit.
      * 
* * KEYWORD_PLANS_PER_USER_PER_CUSTOMER = 122; @@ -1458,7 +1458,7 @@ public enum ResourceLimitType public static final int NEGATIVE_KEYWORDS_PER_CAMPAIGN_VALUE = 28; /** *
-     * Number of excluded campaign criteria in placement dimension, e.g.
+     * Number of excluded campaign criteria in placement dimension, for example,
      * placement, mobile application, YouTube channel, etc. The API criterion
      * type is NOT limited to placement only, and this does not include
      * exclusions at the ad group or other levels.
@@ -2200,8 +2200,8 @@ public enum ResourceLimitType
      * 
      * Number of ENABLED keyword plans per user per customer.
      * The limit is applied per <user, customer> pair because by default a plan
-     * is private to a user of a customer. Each user of a customer has his or
-     * her own independent limit.
+     * is private to a user of a customer. Each user of a customer has their own
+     * independent limit.
      * 
* * KEYWORD_PLANS_PER_USER_PER_CUSTOMER = 122; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TargetingDimensionEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TargetingDimensionEnum.java index 5ceb75f726..d261dedf66 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TargetingDimensionEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TargetingDimensionEnum.java @@ -113,9 +113,9 @@ public enum TargetingDimension UNKNOWN(1), /** *
-     * Keyword criteria, e.g. 'mars cruise'. KEYWORD may be used as a custom bid
-     * dimension. Keywords are always a targeting dimension, so may not be set
-     * as a target "ALL" dimension with TargetRestriction.
+     * Keyword criteria, for example, 'mars cruise'. KEYWORD may be used as a
+     * custom bid dimension. Keywords are always a targeting dimension, so may
+     * not be set as a target "ALL" dimension with TargetRestriction.
      * 
* * KEYWORD = 2; @@ -132,7 +132,7 @@ public enum TargetingDimension AUDIENCE(3), /** *
-     * Topic criteria for targeting categories of content, e.g.
+     * Topic criteria for targeting categories of content, for example,
      * 'category::Animals>Pets' Used for Display and Video targeting.
      * 
* @@ -202,9 +202,9 @@ public enum TargetingDimension public static final int UNKNOWN_VALUE = 1; /** *
-     * Keyword criteria, e.g. 'mars cruise'. KEYWORD may be used as a custom bid
-     * dimension. Keywords are always a targeting dimension, so may not be set
-     * as a target "ALL" dimension with TargetRestriction.
+     * Keyword criteria, for example, 'mars cruise'. KEYWORD may be used as a
+     * custom bid dimension. Keywords are always a targeting dimension, so may
+     * not be set as a target "ALL" dimension with TargetRestriction.
      * 
* * KEYWORD = 2; @@ -221,7 +221,7 @@ public enum TargetingDimension public static final int AUDIENCE_VALUE = 3; /** *
-     * Topic criteria for targeting categories of content, e.g.
+     * Topic criteria for targeting categories of content, for example,
      * 'category::Animals>Pets' Used for Display and Video targeting.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TravelPlaceholderFieldEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TravelPlaceholderFieldEnum.java index 5e8c4c10f0..0205e74d36 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TravelPlaceholderFieldEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/TravelPlaceholderFieldEnum.java @@ -232,8 +232,8 @@ public enum TravelPlaceholderField /** *
      * Data Type: URL_LIST. Required. Final URLs to be used in ad, when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific travel offer and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific travel offer and its location).
      * 
* * FINAL_URL = 15; @@ -433,8 +433,8 @@ public enum TravelPlaceholderField /** *
      * Data Type: URL_LIST. Required. Final URLs to be used in ad, when using
-     * Upgraded URLs; the more specific the better (e.g. the individual URL of a
-     * specific travel offer and its location).
+     * Upgraded URLs; the more specific the better (for example, the individual
+     * URL of a specific travel offer and its location).
      * 
* * FINAL_URL = 15; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorEnum.java new file mode 100644 index 0000000000..8f8fd5e5b8 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorEnum.java @@ -0,0 +1,591 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/enums/user_list_flexible_rule_operator.proto + +package com.google.ads.googleads.v11.enums; + +/** + *
+ * Logical operator connecting two rules.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum} + */ +public final class UserListFlexibleRuleOperatorEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) + UserListFlexibleRuleOperatorEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use UserListFlexibleRuleOperatorEnum.newBuilder() to construct. + private UserListFlexibleRuleOperatorEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private UserListFlexibleRuleOperatorEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new UserListFlexibleRuleOperatorEnum(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private UserListFlexibleRuleOperatorEnum( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorProto.internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorProto.internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.class, com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.Builder.class); + } + + /** + *
+   * Enum describing possible user list combined rule operators.
+   * 
+ * + * Protobuf enum {@code google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator} + */ + public enum UserListFlexibleRuleOperator + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
+     * Not specified.
+     * 
+ * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
+     * Used for return value only. Represents value unknown in this version.
+     * 
+ * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
+     * A AND B.
+     * 
+ * + * AND = 2; + */ + AND(2), + /** + *
+     * A OR B.
+     * 
+ * + * OR = 3; + */ + OR(3), + UNRECOGNIZED(-1), + ; + + /** + *
+     * Not specified.
+     * 
+ * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
+     * Used for return value only. Represents value unknown in this version.
+     * 
+ * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
+     * A AND B.
+     * 
+ * + * AND = 2; + */ + public static final int AND_VALUE = 2; + /** + *
+     * A OR B.
+     * 
+ * + * OR = 3; + */ + public static final int OR_VALUE = 3; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static UserListFlexibleRuleOperator valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static UserListFlexibleRuleOperator forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return AND; + case 3: return OR; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + UserListFlexibleRuleOperator> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public UserListFlexibleRuleOperator findValueByNumber(int number) { + return UserListFlexibleRuleOperator.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final UserListFlexibleRuleOperator[] VALUES = values(); + + public static UserListFlexibleRuleOperator valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private UserListFlexibleRuleOperator(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum other = (com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) obj; + + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Logical operator connecting two rules.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorProto.internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorProto.internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.class, com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorProto.internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum build() { + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum buildPartial() { + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum result = new com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) { + return mergeFrom((com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum other) { + if (other == com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) + private static final com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum(); + } + + public static com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public UserListFlexibleRuleOperatorEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new UserListFlexibleRuleOperatorEnum(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorEnumOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorEnumOrBuilder.java new file mode 100644 index 0000000000..889af6a109 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorEnumOrBuilder.java @@ -0,0 +1,9 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/enums/user_list_flexible_rule_operator.proto + +package com.google.ads.googleads.v11.enums; + +public interface UserListFlexibleRuleOperatorEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.enums.UserListFlexibleRuleOperatorEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorProto.java new file mode 100644 index 0000000000..8266fc8a53 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/enums/UserListFlexibleRuleOperatorProto.java @@ -0,0 +1,57 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/enums/user_list_flexible_rule_operator.proto + +package com.google.ads.googleads.v11.enums; + +public final class UserListFlexibleRuleOperatorProto { + private UserListFlexibleRuleOperatorProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\nEgoogle/ads/googleads/v11/enums/user_li" + + "st_flexible_rule_operator.proto\022\036google." + + "ads.googleads.v11.enums\"q\n UserListFlexi" + + "bleRuleOperatorEnum\"M\n\034UserListFlexibleR" + + "uleOperator\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020" + + "\001\022\007\n\003AND\020\002\022\006\n\002OR\020\003B\373\001\n\"com.google.ads.go" + + "ogleads.v11.enumsB!UserListFlexibleRuleO" + + "peratorProtoP\001ZCgoogle.golang.org/genpro" + + "to/googleapis/ads/googleads/v11/enums;en" + + "ums\242\002\003GAA\252\002\036Google.Ads.GoogleAds.V11.Enu" + + "ms\312\002\036Google\\Ads\\GoogleAds\\V11\\Enums\352\002\"Go" + + "ogle::Ads::GoogleAds::V11::Enumsb\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_enums_UserListFlexibleRuleOperatorEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AccessInvitationErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AccessInvitationErrorEnum.java index c8a2c33f4f..796518de84 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AccessInvitationErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AccessInvitationErrorEnum.java @@ -169,7 +169,7 @@ public enum AccessInvitationError PENDING_INVITATIONS_LIMIT_EXCEEDED(8), /** *
-     * Email address doesn't conform to the email domain policy. Please see
+     * Email address doesn't conform to the email domain policy. See
      * https://support.google.com/google-ads/answer/2375456
      * 
* @@ -253,7 +253,7 @@ public enum AccessInvitationError public static final int PENDING_INVITATIONS_LIMIT_EXCEEDED_VALUE = 8; /** *
-     * Email address doesn't conform to the email domain policy. Please see
+     * Email address doesn't conform to the email domain policy. See
      * https://support.google.com/google-ads/answer/2375456
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdErrorEnum.java index a413863a9e..58fe8c2982 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdErrorEnum.java @@ -314,8 +314,8 @@ public enum AdError DISPLAY_URL_CANNOT_BE_SPECIFIED(27), /** *
-     * Telephone number contains invalid characters or invalid format. Please
-     * re-enter your number using digits (0-9), dashes (-), and parentheses
+     * Telephone number contains invalid characters or invalid format.
+     * Re-enter your number using digits (0-9), dashes (-), and parentheses
      * only.
      * 
* @@ -324,7 +324,7 @@ public enum AdError DOMESTIC_PHONE_NUMBER_FORMAT(28), /** *
-     * Emergency telephone numbers are not allowed. Please enter a valid
+     * Emergency telephone numbers are not allowed. Enter a valid
      * domestic phone number to connect customers to your business.
      * 
* @@ -516,7 +516,7 @@ public enum AdError INVALID_NUMBER_OF_ELEMENTS(52), /** *
-     * The format of the telephone number is incorrect. Please re-enter the
+     * The format of the telephone number is incorrect. Re-enter the
      * number using the correct format.
      * 
* @@ -614,7 +614,7 @@ public enum AdError MISSING_DESCRIPTION2(64), /** *
-     * The destination url must contain at least one tag (e.g. {lpurl})
+     * The destination url must contain at least one tag (for example, {lpurl})
      * 
* * MISSING_DESTINATION_URL_TAG = 65; @@ -623,7 +623,7 @@ public enum AdError /** *
      * The tracking url template of ExpandedDynamicSearchAd must contain at
-     * least one tag. (e.g. {lpurl})
+     * least one tag. (for example, {lpurl})
      * 
* * MISSING_LANDING_PAGE_URL_TAG = 66; @@ -906,7 +906,7 @@ public enum AdError /** *
      * A url scheme is not allowed in front of tag in tracking url template
-     * (e.g. http://{lpurl})
+     * (for example, http://{lpurl})
      * 
* * URL_SCHEME_BEFORE_EXPANDED_DYNAMIC_SEARCH_AD_TAG = 102; @@ -1144,7 +1144,7 @@ public enum AdError /** *
      * Consent for call recording is required for creating/updating call only
-     * ads. Please see https://support.google.com/google-ads/answer/7412639.
+     * ads. See https://support.google.com/google-ads/answer/7412639.
      * 
* * CUSTOMER_CONSENT_FOR_CALL_RECORDING_REQUIRED = 131; @@ -1579,8 +1579,8 @@ public enum AdError public static final int DISPLAY_URL_CANNOT_BE_SPECIFIED_VALUE = 27; /** *
-     * Telephone number contains invalid characters or invalid format. Please
-     * re-enter your number using digits (0-9), dashes (-), and parentheses
+     * Telephone number contains invalid characters or invalid format.
+     * Re-enter your number using digits (0-9), dashes (-), and parentheses
      * only.
      * 
* @@ -1589,7 +1589,7 @@ public enum AdError public static final int DOMESTIC_PHONE_NUMBER_FORMAT_VALUE = 28; /** *
-     * Emergency telephone numbers are not allowed. Please enter a valid
+     * Emergency telephone numbers are not allowed. Enter a valid
      * domestic phone number to connect customers to your business.
      * 
* @@ -1781,7 +1781,7 @@ public enum AdError public static final int INVALID_NUMBER_OF_ELEMENTS_VALUE = 52; /** *
-     * The format of the telephone number is incorrect. Please re-enter the
+     * The format of the telephone number is incorrect. Re-enter the
      * number using the correct format.
      * 
* @@ -1879,7 +1879,7 @@ public enum AdError public static final int MISSING_DESCRIPTION2_VALUE = 64; /** *
-     * The destination url must contain at least one tag (e.g. {lpurl})
+     * The destination url must contain at least one tag (for example, {lpurl})
      * 
* * MISSING_DESTINATION_URL_TAG = 65; @@ -1888,7 +1888,7 @@ public enum AdError /** *
      * The tracking url template of ExpandedDynamicSearchAd must contain at
-     * least one tag. (e.g. {lpurl})
+     * least one tag. (for example, {lpurl})
      * 
* * MISSING_LANDING_PAGE_URL_TAG = 66; @@ -2171,7 +2171,7 @@ public enum AdError /** *
      * A url scheme is not allowed in front of tag in tracking url template
-     * (e.g. http://{lpurl})
+     * (for example, http://{lpurl})
      * 
* * URL_SCHEME_BEFORE_EXPANDED_DYNAMIC_SEARCH_AD_TAG = 102; @@ -2409,7 +2409,7 @@ public enum AdError /** *
      * Consent for call recording is required for creating/updating call only
-     * ads. Please see https://support.google.com/google-ads/answer/7412639.
+     * ads. See https://support.google.com/google-ads/answer/7412639.
      * 
* * CUSTOMER_CONSENT_FOR_CALL_RECORDING_REQUIRED = 131; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdGroupCriterionErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdGroupCriterionErrorEnum.java index f3e31fa535..1ca21c1ede 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdGroupCriterionErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AdGroupCriterionErrorEnum.java @@ -202,7 +202,7 @@ public enum AdGroupCriterionError INVALID_DESTINATION_URL(12), /** *
-     * The destination url must contain at least one tag (e.g. {lpurl})
+     * The destination url must contain at least one tag (for example, {lpurl})
      * 
* * MISSING_DESTINATION_URL_TAG = 13; @@ -256,7 +256,7 @@ public enum AdGroupCriterionError /** *
      * Operations in the mutate request changes too many shopping ad groups.
-     * Please split requests for multiple shopping ad groups across multiple
+     * Split requests for multiple shopping ad groups across multiple
      * requests.
      * 
* @@ -454,7 +454,7 @@ public enum AdGroupCriterionError public static final int INVALID_DESTINATION_URL_VALUE = 12; /** *
-     * The destination url must contain at least one tag (e.g. {lpurl})
+     * The destination url must contain at least one tag (for example, {lpurl})
      * 
* * MISSING_DESTINATION_URL_TAG = 13; @@ -508,7 +508,7 @@ public enum AdGroupCriterionError /** *
      * Operations in the mutate request changes too many shopping ad groups.
-     * Please split requests for multiple shopping ad groups across multiple
+     * Split requests for multiple shopping ad groups across multiple
      * requests.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorEnum.java index d98d712102..4021c240ae 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorEnum.java @@ -121,7 +121,7 @@ public enum AssetLinkError PINNING_UNSUPPORTED(2), /** *
-     * The given field type is not supported to be added directly via asset
+     * The given field type is not supported to be added directly through asset
      * links.
      * 
* @@ -191,9 +191,9 @@ public enum AssetLinkError /** *
      * Not enough assets with fallback are available. When validating the
-     * minimum number of assets, assets without fallback (e.g. assets that
-     * contain location tag without default value "{LOCATION(City)}") will not
-     * be counted.
+     * minimum number of assets, assets without fallback (for example, assets
+     * that contain location tag without default value "{LOCATION(City)}") will
+     * not be counted.
      * 
* * NOT_ENOUGH_AVAILABLE_ASSET_LINKS_WITH_FALLBACK = 11; @@ -236,6 +236,14 @@ public enum AssetLinkError * YOUTUBE_VIDEO_TOO_SHORT = 15; */ YOUTUBE_VIDEO_TOO_SHORT(15), + /** + *
+     * The specified field type is excluded for given campaign or ad group.
+     * 
+ * + * EXCLUDED_PARENT_FIELD_TYPE = 16; + */ + EXCLUDED_PARENT_FIELD_TYPE(16), /** *
      * The status is invalid for the operation specified.
@@ -274,7 +282,7 @@ public enum AssetLinkError
     /**
      * 
      * Automatically created links cannot be changed into adveritser links or
-     * vice versa.
+     * the reverse.
      * 
* * CANNOT_MODIFY_ASSET_LINK_SOURCE = 21; @@ -309,7 +317,7 @@ public enum AssetLinkError public static final int PINNING_UNSUPPORTED_VALUE = 2; /** *
-     * The given field type is not supported to be added directly via asset
+     * The given field type is not supported to be added directly through asset
      * links.
      * 
* @@ -379,9 +387,9 @@ public enum AssetLinkError /** *
      * Not enough assets with fallback are available. When validating the
-     * minimum number of assets, assets without fallback (e.g. assets that
-     * contain location tag without default value "{LOCATION(City)}") will not
-     * be counted.
+     * minimum number of assets, assets without fallback (for example, assets
+     * that contain location tag without default value "{LOCATION(City)}") will
+     * not be counted.
      * 
* * NOT_ENOUGH_AVAILABLE_ASSET_LINKS_WITH_FALLBACK = 11; @@ -424,6 +432,14 @@ public enum AssetLinkError * YOUTUBE_VIDEO_TOO_SHORT = 15; */ public static final int YOUTUBE_VIDEO_TOO_SHORT_VALUE = 15; + /** + *
+     * The specified field type is excluded for given campaign or ad group.
+     * 
+ * + * EXCLUDED_PARENT_FIELD_TYPE = 16; + */ + public static final int EXCLUDED_PARENT_FIELD_TYPE_VALUE = 16; /** *
      * The status is invalid for the operation specified.
@@ -462,7 +478,7 @@ public enum AssetLinkError
     /**
      * 
      * Automatically created links cannot be changed into adveritser links or
-     * vice versa.
+     * the reverse.
      * 
* * CANNOT_MODIFY_ASSET_LINK_SOURCE = 21; @@ -510,6 +526,7 @@ public static AssetLinkError forNumber(int value) { case 13: return YOUTUBE_VIDEO_REMOVED; case 14: return YOUTUBE_VIDEO_TOO_LONG; case 15: return YOUTUBE_VIDEO_TOO_SHORT; + case 16: return EXCLUDED_PARENT_FIELD_TYPE; case 17: return INVALID_STATUS; case 18: return YOUTUBE_VIDEO_DURATION_NOT_DEFINED; case 19: return CANNOT_CREATE_AUTOMATICALLY_CREATED_LINKS; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorProto.java index 34f697962b..a705a3ad70 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AssetLinkErrorProto.java @@ -30,7 +30,7 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n6google/ads/googleads/v11/errors/asset_" + "link_error.proto\022\037google.ads.googleads.v" + - "11.errors\"\306\006\n\022AssetLinkErrorEnum\"\257\006\n\016Ass" + + "11.errors\"\346\006\n\022AssetLinkErrorEnum\"\317\006\n\016Ass" + "etLinkError\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020" + "\001\022\027\n\023PINNING_UNSUPPORTED\020\002\022\032\n\026UNSUPPORTE" + "D_FIELD_TYPE\020\003\022+\n\'FIELD_TYPE_INCOMPATIBL" + @@ -46,18 +46,19 @@ public static void registerAllExtensions( "ABLE_ASSET_LINKS_WITH_FALLBACK_FOR_VALID" + "_COMBINATION\020\014\022\031\n\025YOUTUBE_VIDEO_REMOVED\020" + "\r\022\032\n\026YOUTUBE_VIDEO_TOO_LONG\020\016\022\033\n\027YOUTUBE" + - "_VIDEO_TOO_SHORT\020\017\022\022\n\016INVALID_STATUS\020\021\022&" + - "\n\"YOUTUBE_VIDEO_DURATION_NOT_DEFINED\020\022\022-" + - "\n)CANNOT_CREATE_AUTOMATICALLY_CREATED_LI" + - "NKS\020\023\022.\n*CANNOT_LINK_TO_AUTOMATICALLY_CR" + - "EATED_ASSET\020\024\022#\n\037CANNOT_MODIFY_ASSET_LIN" + - "K_SOURCE\020\025B\363\001\n#com.google.ads.googleads." + - "v11.errorsB\023AssetLinkErrorProtoP\001ZEgoogl" + - "e.golang.org/genproto/googleapis/ads/goo" + - "gleads/v11/errors;errors\242\002\003GAA\252\002\037Google." + - "Ads.GoogleAds.V11.Errors\312\002\037Google\\Ads\\Go" + - "ogleAds\\V11\\Errors\352\002#Google::Ads::Google" + - "Ads::V11::Errorsb\006proto3" + "_VIDEO_TOO_SHORT\020\017\022\036\n\032EXCLUDED_PARENT_FI" + + "ELD_TYPE\020\020\022\022\n\016INVALID_STATUS\020\021\022&\n\"YOUTUB" + + "E_VIDEO_DURATION_NOT_DEFINED\020\022\022-\n)CANNOT" + + "_CREATE_AUTOMATICALLY_CREATED_LINKS\020\023\022.\n" + + "*CANNOT_LINK_TO_AUTOMATICALLY_CREATED_AS" + + "SET\020\024\022#\n\037CANNOT_MODIFY_ASSET_LINK_SOURCE" + + "\020\025B\363\001\n#com.google.ads.googleads.v11.erro" + + "rsB\023AssetLinkErrorProtoP\001ZEgoogle.golang" + + ".org/genproto/googleapis/ads/googleads/v" + + "11/errors;errors\242\002\003GAA\252\002\037Google.Ads.Goog" + + "leAds.V11.Errors\312\002\037Google\\Ads\\GoogleAds\\" + + "V11\\Errors\352\002#Google::Ads::GoogleAds::V11" + + "::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorEnum.java new file mode 100644 index 0000000000..bdd315cc78 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorEnum.java @@ -0,0 +1,576 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/errors/audience_insights_error.proto + +package com.google.ads.googleads.v11.errors; + +/** + *
+ * Container for enum describing possible errors returned from
+ * the AudienceInsightsService.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.errors.AudienceInsightsErrorEnum} + */ +public final class AudienceInsightsErrorEnum extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) + AudienceInsightsErrorEnumOrBuilder { +private static final long serialVersionUID = 0L; + // Use AudienceInsightsErrorEnum.newBuilder() to construct. + private AudienceInsightsErrorEnum(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AudienceInsightsErrorEnum() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AudienceInsightsErrorEnum(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AudienceInsightsErrorEnum( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorProto.internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorProto.internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.class, com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.Builder.class); + } + + /** + *
+   * Enum describing possible errors from AudienceInsightsService.
+   * 
+ * + * Protobuf enum {@code google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError} + */ + public enum AudienceInsightsError + implements com.google.protobuf.ProtocolMessageEnum { + /** + *
+     * Enum unspecified.
+     * 
+ * + * UNSPECIFIED = 0; + */ + UNSPECIFIED(0), + /** + *
+     * The received error code is not known in this version.
+     * 
+ * + * UNKNOWN = 1; + */ + UNKNOWN(1), + /** + *
+     * The dimensions cannot be used with topic audience combinations.
+     * 
+ * + * DIMENSION_INCOMPATIBLE_WITH_TOPIC_AUDIENCE_COMBINATIONS = 2; + */ + DIMENSION_INCOMPATIBLE_WITH_TOPIC_AUDIENCE_COMBINATIONS(2), + UNRECOGNIZED(-1), + ; + + /** + *
+     * Enum unspecified.
+     * 
+ * + * UNSPECIFIED = 0; + */ + public static final int UNSPECIFIED_VALUE = 0; + /** + *
+     * The received error code is not known in this version.
+     * 
+ * + * UNKNOWN = 1; + */ + public static final int UNKNOWN_VALUE = 1; + /** + *
+     * The dimensions cannot be used with topic audience combinations.
+     * 
+ * + * DIMENSION_INCOMPATIBLE_WITH_TOPIC_AUDIENCE_COMBINATIONS = 2; + */ + public static final int DIMENSION_INCOMPATIBLE_WITH_TOPIC_AUDIENCE_COMBINATIONS_VALUE = 2; + + + public final int getNumber() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalArgumentException( + "Can't get the number of an unknown enum value."); + } + return value; + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static AudienceInsightsError valueOf(int value) { + return forNumber(value); + } + + /** + * @param value The numeric wire value of the corresponding enum entry. + * @return The enum associated with the given numeric wire value. + */ + public static AudienceInsightsError forNumber(int value) { + switch (value) { + case 0: return UNSPECIFIED; + case 1: return UNKNOWN; + case 2: return DIMENSION_INCOMPATIBLE_WITH_TOPIC_AUDIENCE_COMBINATIONS; + default: return null; + } + } + + public static com.google.protobuf.Internal.EnumLiteMap + internalGetValueMap() { + return internalValueMap; + } + private static final com.google.protobuf.Internal.EnumLiteMap< + AudienceInsightsError> internalValueMap = + new com.google.protobuf.Internal.EnumLiteMap() { + public AudienceInsightsError findValueByNumber(int number) { + return AudienceInsightsError.forNumber(number); + } + }; + + public final com.google.protobuf.Descriptors.EnumValueDescriptor + getValueDescriptor() { + if (this == UNRECOGNIZED) { + throw new java.lang.IllegalStateException( + "Can't get the descriptor of an unrecognized enum value."); + } + return getDescriptor().getValues().get(ordinal()); + } + public final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptorForType() { + return getDescriptor(); + } + public static final com.google.protobuf.Descriptors.EnumDescriptor + getDescriptor() { + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.getDescriptor().getEnumTypes().get(0); + } + + private static final AudienceInsightsError[] VALUES = values(); + + public static AudienceInsightsError valueOf( + com.google.protobuf.Descriptors.EnumValueDescriptor desc) { + if (desc.getType() != getDescriptor()) { + throw new java.lang.IllegalArgumentException( + "EnumValueDescriptor is not for this type."); + } + if (desc.getIndex() == -1) { + return UNRECOGNIZED; + } + return VALUES[desc.getIndex()]; + } + + private final int value; + + private AudienceInsightsError(int value) { + this.value = value; + } + + // @@protoc_insertion_point(enum_scope:google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError) + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum other = (com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) obj; + + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Container for enum describing possible errors returned from
+   * the AudienceInsightsService.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.errors.AudienceInsightsErrorEnum} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnumOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorProto.internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorProto.internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.class, com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorProto.internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum getDefaultInstanceForType() { + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum build() { + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum buildPartial() { + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum result = new com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) { + return mergeFrom((com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum other) { + if (other == com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.getDefaultInstance()) return this; + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) + private static final com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum(); + } + + public static com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AudienceInsightsErrorEnum parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AudienceInsightsErrorEnum(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorEnumOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorEnumOrBuilder.java new file mode 100644 index 0000000000..7eae6ca63e --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorEnumOrBuilder.java @@ -0,0 +1,9 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/errors/audience_insights_error.proto + +package com.google.ads.googleads.v11.errors; + +public interface AudienceInsightsErrorEnumOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.errors.AudienceInsightsErrorEnum) + com.google.protobuf.MessageOrBuilder { +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorProto.java new file mode 100644 index 0000000000..7ddde21482 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AudienceInsightsErrorProto.java @@ -0,0 +1,58 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/errors/audience_insights_error.proto + +package com.google.ads.googleads.v11.errors; + +public final class AudienceInsightsErrorProto { + private AudienceInsightsErrorProto() {} + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistryLite registry) { + } + + public static void registerAllExtensions( + com.google.protobuf.ExtensionRegistry registry) { + registerAllExtensions( + (com.google.protobuf.ExtensionRegistryLite) registry); + } + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_fieldAccessorTable; + + public static com.google.protobuf.Descriptors.FileDescriptor + getDescriptor() { + return descriptor; + } + private static com.google.protobuf.Descriptors.FileDescriptor + descriptor; + static { + java.lang.String[] descriptorData = { + "\n=google/ads/googleads/v11/errors/audien" + + "ce_insights_error.proto\022\037google.ads.goog" + + "leads.v11.errors\"\217\001\n\031AudienceInsightsErr" + + "orEnum\"r\n\025AudienceInsightsError\022\017\n\013UNSPE" + + "CIFIED\020\000\022\013\n\007UNKNOWN\020\001\022;\n7DIMENSION_INCOM" + + "PATIBLE_WITH_TOPIC_AUDIENCE_COMBINATIONS" + + "\020\002B\372\001\n#com.google.ads.googleads.v11.erro" + + "rsB\032AudienceInsightsErrorProtoP\001ZEgoogle" + + ".golang.org/genproto/googleapis/ads/goog" + + "leads/v11/errors;errors\242\002\003GAA\252\002\037Google.A" + + "ds.GoogleAds.V11.Errors\312\002\037Google\\Ads\\Goo" + + "gleAds\\V11\\Errors\352\002#Google::Ads::GoogleA" + + "ds::V11::Errorsb\006proto3" + }; + descriptor = com.google.protobuf.Descriptors.FileDescriptor + .internalBuildGeneratedFileFrom(descriptorData, + new com.google.protobuf.Descriptors.FileDescriptor[] { + }); + internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_descriptor = + getDescriptor().getMessageTypes().get(0); + internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_errors_AudienceInsightsErrorEnum_descriptor, + new java.lang.String[] { }); + } + + // @@protoc_insertion_point(outer_class_scope) +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AuthorizationErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AuthorizationErrorEnum.java index ebb007e372..a459f5a253 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AuthorizationErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/AuthorizationErrorEnum.java @@ -158,7 +158,7 @@ public enum AuthorizationError /** *
      * The user does not have permission to perform this action
-     * (e.g., ADD, UPDATE, REMOVE) on the resource or call a method.
+     * (for example, ADD, UPDATE, REMOVE) on the resource or call a method.
      * 
* * ACTION_NOT_PERMITTED = 7; @@ -298,7 +298,7 @@ public enum AuthorizationError /** *
      * The user does not have permission to perform this action
-     * (e.g., ADD, UPDATE, REMOVE) on the resource or call a method.
+     * (for example, ADD, UPDATE, REMOVE) on the resource or call a method.
      * 
* * ACTION_NOT_PERMITTED = 7; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionAdjustmentUploadErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionAdjustmentUploadErrorEnum.java index 2523184761..ed6dc20ef8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionAdjustmentUploadErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionAdjustmentUploadErrorEnum.java @@ -114,7 +114,7 @@ public enum ConversionAdjustmentUploadError /** *
      * The specified conversion action was created too recently.
-     * Please try the upload again after 4-6 hours have passed since the
+     * Try the upload again after 4-6 hours have passed since the
      * conversion action was created.
      * 
* @@ -210,7 +210,7 @@ public enum ConversionAdjustmentUploadError /** *
      * A restatement with this timestamp already exists for this conversion. To
-     * upload another adjustment, please use a different timestamp.
+     * upload another adjustment, use a different timestamp.
      * 
* * RESTATEMENT_ALREADY_EXISTS = 13; @@ -219,7 +219,7 @@ public enum ConversionAdjustmentUploadError /** *
      * This adjustment has the same timestamp as another adjustment in the
-     * request for this conversion. To upload another adjustment, please use a
+     * request for this conversion. To upload another adjustment, use a
      * different timestamp.
      * 
* @@ -292,7 +292,7 @@ public enum ConversionAdjustmentUploadError /** *
      * Per our customer data policies, enhancement has been prohibited in your
-     * account. If you have any questions, please contact your Google
+     * account. If you have any questions, contact your Google
      * representative.
      * 
* @@ -340,7 +340,7 @@ public enum ConversionAdjustmentUploadError /** *
      * The specified conversion action was created too recently.
-     * Please try the upload again after 4-6 hours have passed since the
+     * Try the upload again after 4-6 hours have passed since the
      * conversion action was created.
      * 
* @@ -436,7 +436,7 @@ public enum ConversionAdjustmentUploadError /** *
      * A restatement with this timestamp already exists for this conversion. To
-     * upload another adjustment, please use a different timestamp.
+     * upload another adjustment, use a different timestamp.
      * 
* * RESTATEMENT_ALREADY_EXISTS = 13; @@ -445,7 +445,7 @@ public enum ConversionAdjustmentUploadError /** *
      * This adjustment has the same timestamp as another adjustment in the
-     * request for this conversion. To upload another adjustment, please use a
+     * request for this conversion. To upload another adjustment, use a
      * different timestamp.
      * 
* @@ -518,7 +518,7 @@ public enum ConversionAdjustmentUploadError /** *
      * Per our customer data policies, enhancement has been prohibited in your
-     * account. If you have any questions, please contact your Google
+     * account. If you have any questions, contact your Google
      * representative.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionUploadErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionUploadErrorEnum.java index ec2ff35271..3aec72e51b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionUploadErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionUploadErrorEnum.java @@ -149,7 +149,7 @@ public enum ConversionUploadError /** *
      * The click associated with the given identifier or iOS URL parameter
-     * occurred too recently. Please try uploading again after 6 hours have
+     * occurred too recently. Try uploading again after 6 hours have
      * passed since the click occurred.
      * 
* @@ -187,7 +187,7 @@ public enum ConversionUploadError /** *
      * The specified conversion action was created too recently.
-     * Please try the upload again after 4-6 hours have passed since the
+     * Try the upload again after 4-6 hours have passed since the
      * conversion action was created.
      * 
* @@ -252,7 +252,7 @@ public enum ConversionUploadError DUPLICATE_ORDER_ID(16), /** *
-     * The call occurred too recently. Please try uploading again after 12 hours
+     * The call occurred too recently. Try uploading again after 12 hours
      * have passed since the call occurred.
      * 
* @@ -306,7 +306,7 @@ public enum ConversionUploadError /** *
      * A conversion with this timestamp already exists for this click. To upload
-     * another conversion, please use a different timestamp.
+     * another conversion, use a different timestamp.
      * 
* * CLICK_CONVERSION_ALREADY_EXISTS = 23; @@ -315,7 +315,7 @@ public enum ConversionUploadError /** *
      * A conversion with this timestamp already exists for this call. To upload
-     * another conversion, please use a different timestamp.
+     * another conversion, use a different timestamp.
      * 
* * CALL_CONVERSION_ALREADY_EXISTS = 24; @@ -324,7 +324,7 @@ public enum ConversionUploadError /** *
      * This conversion has the same click and timestamp as another conversion in
-     * the request. To upload another conversion for this click, please use a
+     * the request. To upload another conversion for this click, use a
      * different timestamp.
      * 
* @@ -334,7 +334,7 @@ public enum ConversionUploadError /** *
      * This conversion has the same call and timestamp as another conversion in
-     * the request. To upload another conversion for this call, please use a
+     * the request. To upload another conversion for this call, use a
      * different timestamp.
      * 
* @@ -458,7 +458,7 @@ public enum ConversionUploadError /** *
      * Per our customer data policies, enhanced conversions have been prohibited
-     * in your account. If you have any questions, please contact your Google
+     * in your account. If you have any questions, contact your Google
      * representative.
      * 
* @@ -540,7 +540,7 @@ public enum ConversionUploadError /** *
      * The click associated with the given identifier or iOS URL parameter
-     * occurred too recently. Please try uploading again after 6 hours have
+     * occurred too recently. Try uploading again after 6 hours have
      * passed since the click occurred.
      * 
* @@ -578,7 +578,7 @@ public enum ConversionUploadError /** *
      * The specified conversion action was created too recently.
-     * Please try the upload again after 4-6 hours have passed since the
+     * Try the upload again after 4-6 hours have passed since the
      * conversion action was created.
      * 
* @@ -643,7 +643,7 @@ public enum ConversionUploadError public static final int DUPLICATE_ORDER_ID_VALUE = 16; /** *
-     * The call occurred too recently. Please try uploading again after 12 hours
+     * The call occurred too recently. Try uploading again after 12 hours
      * have passed since the call occurred.
      * 
* @@ -697,7 +697,7 @@ public enum ConversionUploadError /** *
      * A conversion with this timestamp already exists for this click. To upload
-     * another conversion, please use a different timestamp.
+     * another conversion, use a different timestamp.
      * 
* * CLICK_CONVERSION_ALREADY_EXISTS = 23; @@ -706,7 +706,7 @@ public enum ConversionUploadError /** *
      * A conversion with this timestamp already exists for this call. To upload
-     * another conversion, please use a different timestamp.
+     * another conversion, use a different timestamp.
      * 
* * CALL_CONVERSION_ALREADY_EXISTS = 24; @@ -715,7 +715,7 @@ public enum ConversionUploadError /** *
      * This conversion has the same click and timestamp as another conversion in
-     * the request. To upload another conversion for this click, please use a
+     * the request. To upload another conversion for this click, use a
      * different timestamp.
      * 
* @@ -725,7 +725,7 @@ public enum ConversionUploadError /** *
      * This conversion has the same call and timestamp as another conversion in
-     * the request. To upload another conversion for this call, please use a
+     * the request. To upload another conversion for this call, use a
      * different timestamp.
      * 
* @@ -849,7 +849,7 @@ public enum ConversionUploadError /** *
      * Per our customer data policies, enhanced conversions have been prohibited
-     * in your account. If you have any questions, please contact your Google
+     * in your account. If you have any questions, contact your Google
      * representative.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionValueRuleErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionValueRuleErrorEnum.java index c7015338aa..458adb4930 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionValueRuleErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ConversionValueRuleErrorEnum.java @@ -114,7 +114,7 @@ public enum ConversionValueRuleError /** *
      * The value rule's geo location condition contains invalid geo target
-     * constant(s), i.e. there's no matching geo target.
+     * constant(s), for example, there's no matching geo target.
      * 
* * INVALID_GEO_TARGET_CONSTANT = 2; @@ -241,7 +241,7 @@ public enum ConversionValueRuleError /** *
      * The value rule's geo location condition contains invalid geo target
-     * constant(s), i.e. there's no matching geo target.
+     * constant(s), for example, there's no matching geo target.
      * 
* * INVALID_GEO_TARGET_CONSTANT = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/CriterionErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/CriterionErrorEnum.java index fef4ac08b3..1cc2165cb2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/CriterionErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/CriterionErrorEnum.java @@ -787,7 +787,8 @@ public enum CriterionError /** *
      * The field is not allowed to be set when the negative field is set to
-     * true, e.g. we don't allow bids in negative ad group or campaign criteria.
+     * true, for example, we don't allow bids in negative ad group or campaign
+     * criteria.
      * 
* * FIELD_INCOMPATIBLE_WITH_NEGATIVE_TARGETING = 84; @@ -1056,9 +1057,9 @@ public enum CriterionError LISTING_GROUP_TREE_TOO_DEEP(118), /** *
-     * Listing dimension is invalid (e.g. dimension contains illegal value,
-     * dimension type is represented with wrong class, etc). Listing dimension
-     * value can not contain "==" or "&+".
+     * Listing dimension is invalid (for example, dimension contains illegal
+     * value, dimension type is represented with wrong class, etc). Listing
+     * dimension value can not contain "==" or "&+".
      * 
* * INVALID_LISTING_DIMENSION = 119; @@ -1146,7 +1147,7 @@ public enum CriterionError HOTEL_CHECK_IN_DATE_RANGE_REVERSED(134), /** *
-     * Broad match modifier (BMM) keywords can no longer be created. Please see
+     * Broad match modifier (BMM) keywords can no longer be created. See
      * https://ads-developers.googleblog.com/2021/06/broad-match-modifier-upcoming-changes.html.
      * 
* @@ -1181,7 +1182,7 @@ public enum CriterionError /** *
      * Targeting is not allowed for Customer Match lists as per Customer Match
-     * policy. Please see
+     * policy. See
      * https://support.google.com/google-ads/answer/6299717.
      * 
* @@ -1883,7 +1884,8 @@ public enum CriterionError /** *
      * The field is not allowed to be set when the negative field is set to
-     * true, e.g. we don't allow bids in negative ad group or campaign criteria.
+     * true, for example, we don't allow bids in negative ad group or campaign
+     * criteria.
      * 
* * FIELD_INCOMPATIBLE_WITH_NEGATIVE_TARGETING = 84; @@ -2152,9 +2154,9 @@ public enum CriterionError public static final int LISTING_GROUP_TREE_TOO_DEEP_VALUE = 118; /** *
-     * Listing dimension is invalid (e.g. dimension contains illegal value,
-     * dimension type is represented with wrong class, etc). Listing dimension
-     * value can not contain "==" or "&+".
+     * Listing dimension is invalid (for example, dimension contains illegal
+     * value, dimension type is represented with wrong class, etc). Listing
+     * dimension value can not contain "==" or "&+".
      * 
* * INVALID_LISTING_DIMENSION = 119; @@ -2242,7 +2244,7 @@ public enum CriterionError public static final int HOTEL_CHECK_IN_DATE_RANGE_REVERSED_VALUE = 134; /** *
-     * Broad match modifier (BMM) keywords can no longer be created. Please see
+     * Broad match modifier (BMM) keywords can no longer be created. See
      * https://ads-developers.googleblog.com/2021/06/broad-match-modifier-upcoming-changes.html.
      * 
* @@ -2277,7 +2279,7 @@ public enum CriterionError /** *
      * Targeting is not allowed for Customer Match lists as per Customer Match
-     * policy. Please see
+     * policy. See
      * https://support.google.com/google-ads/answer/6299717.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/DatabaseErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/DatabaseErrorEnum.java index 44583db8a2..4fa7aada9a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/DatabaseErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/DatabaseErrorEnum.java @@ -114,7 +114,7 @@ public enum DatabaseError /** *
      * Multiple requests were attempting to modify the same resource at once.
-     * Please retry the request.
+     * Retry the request.
      * 
* * CONCURRENT_MODIFICATION = 2; @@ -131,7 +131,7 @@ public enum DatabaseError DATA_CONSTRAINT_VIOLATION(3), /** *
-     * The data written is too large. Please split the request into smaller
+     * The data written is too large. Split the request into smaller
      * requests.
      * 
* @@ -160,7 +160,7 @@ public enum DatabaseError /** *
      * Multiple requests were attempting to modify the same resource at once.
-     * Please retry the request.
+     * Retry the request.
      * 
* * CONCURRENT_MODIFICATION = 2; @@ -177,7 +177,7 @@ public enum DatabaseError public static final int DATA_CONSTRAINT_VIOLATION_VALUE = 3; /** *
-     * The data written is too large. Please split the request into smaller
+     * The data written is too large. Split the request into smaller
      * requests.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCode.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCode.java index c2c7ca4c2c..f3ae3c61f8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCode.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCode.java @@ -886,6 +886,12 @@ private ErrorCode( errorCode_ = rawValue; break; } + case 1336: { + int rawValue = input.readEnum(); + errorCodeCase_ = 167; + errorCode_ = rawValue; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -1064,6 +1070,7 @@ public enum ErrorCodeCase CUSTOM_AUDIENCE_ERROR(139), AUDIENCE_ERROR(164), EXPERIMENT_ARM_ERROR(156), + AUDIENCE_INSIGHTS_ERROR(167), ERRORCODE_NOT_SET(0); private final int value; private ErrorCodeCase(int value) { @@ -1220,6 +1227,7 @@ public static ErrorCodeCase forNumber(int value) { case 139: return CUSTOM_AUDIENCE_ERROR; case 164: return AUDIENCE_ERROR; case 156: return EXPERIMENT_ARM_ERROR; + case 167: return AUDIENCE_INSIGHTS_ERROR; case 0: return ERRORCODE_NOT_SET; default: return null; } @@ -7351,6 +7359,50 @@ public com.google.ads.googleads.v11.errors.ExperimentArmErrorEnum.ExperimentArmE return com.google.ads.googleads.v11.errors.ExperimentArmErrorEnum.ExperimentArmError.UNSPECIFIED; } + public static final int AUDIENCE_INSIGHTS_ERROR_FIELD_NUMBER = 167; + /** + *
+   * The reasons for the Audience Insights error
+   * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return Whether the audienceInsightsError field is set. + */ + public boolean hasAudienceInsightsError() { + return errorCodeCase_ == 167; + } + /** + *
+   * The reasons for the Audience Insights error
+   * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return The enum numeric value on the wire for audienceInsightsError. + */ + public int getAudienceInsightsErrorValue() { + if (errorCodeCase_ == 167) { + return (java.lang.Integer) errorCode_; + } + return 0; + } + /** + *
+   * The reasons for the Audience Insights error
+   * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return The audienceInsightsError. + */ + public com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError getAudienceInsightsError() { + if (errorCodeCase_ == 167) { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError result = com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError.valueOf( + (java.lang.Integer) errorCode_); + return result == null ? com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError.UNRECOGNIZED : result; + } + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError.UNSPECIFIED; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -7782,6 +7834,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (errorCodeCase_ == 166) { output.writeEnum(166, ((java.lang.Integer) errorCode_)); } + if (errorCodeCase_ == 167) { + output.writeEnum(167, ((java.lang.Integer) errorCode_)); + } unknownFields.writeTo(output); } @@ -8347,6 +8402,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeEnumSize(166, ((java.lang.Integer) errorCode_)); } + if (errorCodeCase_ == 167) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(167, ((java.lang.Integer) errorCode_)); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -8920,6 +8979,10 @@ public boolean equals(final java.lang.Object obj) { if (getExperimentArmErrorValue() != other.getExperimentArmErrorValue()) return false; break; + case 167: + if (getAudienceInsightsErrorValue() + != other.getAudienceInsightsErrorValue()) return false; + break; case 0: default: } @@ -9491,6 +9554,10 @@ public int hashCode() { hash = (37 * hash) + EXPERIMENT_ARM_ERROR_FIELD_NUMBER; hash = (53 * hash) + getExperimentArmErrorValue(); break; + case 167: + hash = (37 * hash) + AUDIENCE_INSIGHTS_ERROR_FIELD_NUMBER; + hash = (53 * hash) + getAudienceInsightsErrorValue(); + break; case 0: default: } @@ -10076,6 +10143,9 @@ public com.google.ads.googleads.v11.errors.ErrorCode buildPartial() { if (errorCodeCase_ == 156) { result.errorCode_ = errorCode_; } + if (errorCodeCase_ == 167) { + result.errorCode_ = errorCode_; + } result.errorCodeCase_ = errorCodeCase_; onBuilt(); return result; @@ -10682,6 +10752,10 @@ public Builder mergeFrom(com.google.ads.googleads.v11.errors.ErrorCode other) { setExperimentArmErrorValue(other.getExperimentArmErrorValue()); break; } + case AUDIENCE_INSIGHTS_ERROR: { + setAudienceInsightsErrorValue(other.getAudienceInsightsErrorValue()); + break; + } case ERRORCODE_NOT_SET: { break; } @@ -23934,6 +24008,101 @@ public Builder clearExperimentArmError() { } return this; } + + /** + *
+     * The reasons for the Audience Insights error
+     * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return Whether the audienceInsightsError field is set. + */ + @java.lang.Override + public boolean hasAudienceInsightsError() { + return errorCodeCase_ == 167; + } + /** + *
+     * The reasons for the Audience Insights error
+     * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return The enum numeric value on the wire for audienceInsightsError. + */ + @java.lang.Override + public int getAudienceInsightsErrorValue() { + if (errorCodeCase_ == 167) { + return ((java.lang.Integer) errorCode_).intValue(); + } + return 0; + } + /** + *
+     * The reasons for the Audience Insights error
+     * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @param value The enum numeric value on the wire for audienceInsightsError to set. + * @return This builder for chaining. + */ + public Builder setAudienceInsightsErrorValue(int value) { + errorCodeCase_ = 167; + errorCode_ = value; + onChanged(); + return this; + } + /** + *
+     * The reasons for the Audience Insights error
+     * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return The audienceInsightsError. + */ + @java.lang.Override + public com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError getAudienceInsightsError() { + if (errorCodeCase_ == 167) { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError result = com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError.valueOf( + (java.lang.Integer) errorCode_); + return result == null ? com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError.UNRECOGNIZED : result; + } + return com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError.UNSPECIFIED; + } + /** + *
+     * The reasons for the Audience Insights error
+     * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @param value The audienceInsightsError to set. + * @return This builder for chaining. + */ + public Builder setAudienceInsightsError(com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError value) { + if (value == null) { + throw new NullPointerException(); + } + errorCodeCase_ = 167; + errorCode_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
+     * The reasons for the Audience Insights error
+     * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return This builder for chaining. + */ + public Builder clearAudienceInsightsError() { + if (errorCodeCase_ == 167) { + errorCodeCase_ = 0; + errorCode_ = null; + onChanged(); + } + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCodeOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCodeOrBuilder.java index 7e5dffa09b..cf1b56f912 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCodeOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorCodeOrBuilder.java @@ -3899,5 +3899,33 @@ public interface ErrorCodeOrBuilder extends */ com.google.ads.googleads.v11.errors.ExperimentArmErrorEnum.ExperimentArmError getExperimentArmError(); + /** + *
+   * The reasons for the Audience Insights error
+   * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return Whether the audienceInsightsError field is set. + */ + boolean hasAudienceInsightsError(); + /** + *
+   * The reasons for the Audience Insights error
+   * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return The enum numeric value on the wire for audienceInsightsError. + */ + int getAudienceInsightsErrorValue(); + /** + *
+   * The reasons for the Audience Insights error
+   * 
+ * + * .google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError audience_insights_error = 167; + * @return The audienceInsightsError. + */ + com.google.ads.googleads.v11.errors.AudienceInsightsErrorEnum.AudienceInsightsError getAudienceInsightsError(); + public com.google.ads.googleads.v11.errors.ErrorCode.ErrorCodeCase getErrorCodeCase(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorsProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorsProto.java index ff093c7c5b..e09f5631f5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorsProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ErrorsProto.java @@ -114,609 +114,613 @@ public static void registerAllExtensions( "1/errors/asset_set_error.proto\032:google/a" + "ds/googleads/v11/errors/asset_set_link_e" + "rror.proto\0324google/ads/googleads/v11/err" + - "ors/audience_error.proto\032:google/ads/goo" + - "gleads/v11/errors/authentication_error.p" + - "roto\0329google/ads/googleads/v11/errors/au" + - "thorization_error.proto\0325google/ads/goog" + - "leads/v11/errors/batch_job_error.proto\0323" + - "google/ads/googleads/v11/errors/bidding_" + - "error.proto\032google/ads/goog" + - "leads/v11/errors/campaign_criterion_erro" + - "r.proto\032?google/ads/googleads/v11/errors" + - "/campaign_customizer_error.proto\032:google" + - "/ads/googleads/v11/errors/campaign_draft" + - "_error.proto\0324google/ads/googleads/v11/e" + - "rrors/campaign_error.proto\032?google/ads/g" + - "oogleads/v11/errors/campaign_experiment_" + - "error.proto\0329google/ads/googleads/v11/er" + - "rors/campaign_feed_error.proto\032?google/a" + - "ds/googleads/v11/errors/campaign_shared_" + - "set_error.proto\0328google/ads/googleads/v1" + - "1/errors/change_event_error.proto\0329googl" + - "e/ads/googleads/v11/errors/change_status" + - "_error.proto\032;google/ads/googleads/v11/e" + - "rrors/collection_size_error.proto\0323googl" + - "e/ads/googleads/v11/errors/context_error" + + "ors/audience_error.proto\032=google/ads/goo" + + "gleads/v11/errors/audience_insights_erro" + + "r.proto\032:google/ads/googleads/v11/errors" + + "/authentication_error.proto\0329google/ads/" + + "googleads/v11/errors/authorization_error" + + ".proto\0325google/ads/googleads/v11/errors/" + + "batch_job_error.proto\0323google/ads/google" + + "ads/v11/errors/bidding_error.proto\032google/ads/googleads/v11/errors/" + + "campaign_criterion_error.proto\032?google/a" + + "ds/googleads/v11/errors/campaign_customi" + + "zer_error.proto\032:google/ads/googleads/v1" + + "1/errors/campaign_draft_error.proto\0324goo" + + "gle/ads/googleads/v11/errors/campaign_er" + + "ror.proto\032?google/ads/googleads/v11/erro" + + "rs/campaign_experiment_error.proto\0329goog" + + "le/ads/googleads/v11/errors/campaign_fee" + + "d_error.proto\032?google/ads/googleads/v11/" + + "errors/campaign_shared_set_error.proto\0328" + + "google/ads/googleads/v11/errors/change_e" + + "vent_error.proto\0329google/ads/googleads/v" + + "11/errors/change_status_error.proto\032;goo" + + "gle/ads/googleads/v11/errors/collection_" + + "size_error.proto\0323google/ads/googleads/v" + + "11/errors/context_error.proto\032=google/ad" + + "s/googleads/v11/errors/conversion_action" + + "_error.proto\032Hgoogle/ads/googleads/v11/e" + + "rrors/conversion_adjustment_upload_error" + + ".proto\032Fgoogle/ads/googleads/v11/errors/" + + "conversion_custom_variable_error.proto\032K" + + "google/ads/googleads/v11/errors/conversi" + + "on_goal_campaign_config_error.proto\032=goo" + + "gle/ads/googleads/v11/errors/conversion_" + + "upload_error.proto\032Agoogle/ads/googleads" + + "/v11/errors/conversion_value_rule_error." + + "proto\032Egoogle/ads/googleads/v11/errors/c" + + "onversion_value_rule_set_error.proto\0328go" + + "ogle/ads/googleads/v11/errors/country_co" + + "de_error.proto\0325google/ads/googleads/v11" + + "/errors/criterion_error.proto\0329google/ad" + + "s/googleads/v11/errors/currency_code_err" + + "or.proto\032;google/ads/googleads/v11/error" + + "s/custom_audience_error.proto\032Bgoogle/ad" + + "s/googleads/v11/errors/custom_conversion" + + "_goal_error.proto\032;google/ads/googleads/" + + "v11/errors/custom_interest_error.proto\032@" + + "google/ads/googleads/v11/errors/customer" + + "_client_link_error.proto\032?google/ads/goo" + + "gleads/v11/errors/customer_customizer_er" + + "ror.proto\0324google/ads/googleads/v11/erro" + + "rs/customer_error.proto\0329google/ads/goog" + + "leads/v11/errors/customer_feed_error.pro" + + "to\032Agoogle/ads/googleads/v11/errors/cust" + + "omer_manager_link_error.proto\032@google/ad" + + "s/googleads/v11/errors/customer_user_acc" + + "ess_error.proto\032@google/ads/googleads/v1" + + "1/errors/customizer_attribute_error.prot" + + "o\0324google/ads/googleads/v11/errors/datab" + + "ase_error.proto\0320google/ads/googleads/v1" + + "1/errors/date_error.proto\0326google/ads/go" + + "ogleads/v11/errors/date_range_error.prot" + + "o\0324google/ads/googleads/v11/errors/disti" + + "nct_error.proto\0320google/ads/googleads/v1" + + "1/errors/enum_error.proto\032:google/ads/go" + + "ogleads/v11/errors/experiment_arm_error." + + "proto\0326google/ads/googleads/v11/errors/e" + + "xperiment_error.proto\032?google/ads/google" + + "ads/v11/errors/extension_feed_item_error" + ".proto\032=google/ads/googleads/v11/errors/" + - "conversion_action_error.proto\032Hgoogle/ad" + - "s/googleads/v11/errors/conversion_adjust" + - "ment_upload_error.proto\032Fgoogle/ads/goog" + - "leads/v11/errors/conversion_custom_varia" + - "ble_error.proto\032Kgoogle/ads/googleads/v1" + - "1/errors/conversion_goal_campaign_config" + + "extension_setting_error.proto\032Dgoogle/ad" + + "s/googleads/v11/errors/feed_attribute_re" + + "ference_error.proto\0320google/ads/googlead" + + "s/v11/errors/feed_error.proto\0325google/ad" + + "s/googleads/v11/errors/feed_item_error.p" + + "roto\0329google/ads/googleads/v11/errors/fe" + + "ed_item_set_error.proto\032>google/ads/goog" + + "leads/v11/errors/feed_item_set_link_erro" + + "r.proto\032google/ads/googleads/v11/errors/feed_i" + - "tem_set_link_error.proto\032\n\nerr" + - "or_code\030\001 \001(\0132*.google.ads.googleads.v11" + - ".errors.ErrorCode\022\017\n\007message\030\002 \001(\t\0227\n\007tr" + - "igger\030\003 \001(\0132&.google.ads.googleads.v11.c" + - "ommon.Value\022@\n\010location\030\004 \001(\0132..google.a" + - "ds.googleads.v11.errors.ErrorLocation\022>\n" + - "\007details\030\005 \001(\0132-.google.ads.googleads.v1" + - "1.errors.ErrorDetails\"\233v\n\tErrorCode\022W\n\rr" + - "equest_error\030\001 \001(\0162>.google.ads.googlead" + - "s.v11.errors.RequestErrorEnum.RequestErr" + - "orH\000\022p\n\026bidding_strategy_error\030\002 \001(\0162N.g" + - "oogle.ads.googleads.v11.errors.BiddingSt" + - "rategyErrorEnum.BiddingStrategyErrorH\000\022[" + - "\n\017url_field_error\030\003 \001(\0162@.google.ads.goo" + - "gleads.v11.errors.UrlFieldErrorEnum.UrlF" + - "ieldErrorH\000\022j\n\024list_operation_error\030\004 \001(" + - "\0162J.google.ads.googleads.v11.errors.List" + - "OperationErrorEnum.ListOperationErrorH\000\022" + - "Q\n\013query_error\030\005 \001(\0162:.google.ads.google" + - "ads.v11.errors.QueryErrorEnum.QueryError" + - "H\000\022T\n\014mutate_error\030\007 \001(\0162<.google.ads.go" + - "ogleads.v11.errors.MutateErrorEnum.Mutat" + - "eErrorH\000\022^\n\020field_mask_error\030\010 \001(\0162B.goo" + - "gle.ads.googleads.v11.errors.FieldMaskEr" + - "rorEnum.FieldMaskErrorH\000\022i\n\023authorizatio" + - "n_error\030\t \001(\0162J.google.ads.googleads.v11" + - ".errors.AuthorizationErrorEnum.Authoriza" + - "tionErrorH\000\022Z\n\016internal_error\030\n \001(\0162@.go" + - "ogle.ads.googleads.v11.errors.InternalEr" + - "rorEnum.InternalErrorH\000\022Q\n\013quota_error\030\013" + - " \001(\0162:.google.ads.googleads.v11.errors.Q" + - "uotaErrorEnum.QuotaErrorH\000\022H\n\010ad_error\030\014" + - " \001(\01624.google.ads.googleads.v11.errors.A" + - "dErrorEnum.AdErrorH\000\022X\n\016ad_group_error\030\r" + - " \001(\0162>.google.ads.googleads.v11.errors.A" + - "dGroupErrorEnum.AdGroupErrorH\000\022m\n\025campai" + - "gn_budget_error\030\016 \001(\0162L.google.ads.googl" + - "eads.v11.errors.CampaignBudgetErrorEnum." + - "CampaignBudgetErrorH\000\022Z\n\016campaign_error\030" + - "\017 \001(\0162@.google.ads.googleads.v11.errors." + - "CampaignErrorEnum.CampaignErrorH\000\022l\n\024aut" + - "hentication_error\030\021 \001(\0162L.google.ads.goo" + - "gleads.v11.errors.AuthenticationErrorEnu" + - "m.AuthenticationErrorH\000\022\224\001\n#ad_group_cri" + - "terion_customizer_error\030\241\001 \001(\0162d.google." + - "ads.googleads.v11.errors.AdGroupCriterio" + - "nCustomizerErrorEnum.AdGroupCriterionCus" + - "tomizerErrorH\000\022t\n\030ad_group_criterion_err" + - "or\030\022 \001(\0162P.google.ads.googleads.v11.erro" + - "rs.AdGroupCriterionErrorEnum.AdGroupCrit" + - "erionErrorH\000\022x\n\031ad_group_customizer_erro" + - "r\030\237\001 \001(\0162R.google.ads.googleads.v11.erro" + - "rs.AdGroupCustomizerErrorEnum.AdGroupCus" + - "tomizerErrorH\000\022g\n\023ad_customizer_error\030\023 " + - "\001(\0162H.google.ads.googleads.v11.errors.Ad" + - "CustomizerErrorEnum.AdCustomizerErrorH\000\022" + - "_\n\021ad_group_ad_error\030\025 \001(\0162B.google.ads." + - "googleads.v11.errors.AdGroupAdErrorEnum." + - "AdGroupAdErrorH\000\022^\n\020ad_sharing_error\030\030 \001" + - "(\0162B.google.ads.googleads.v11.errors.AdS" + - "haringErrorEnum.AdSharingErrorH\000\022K\n\tadx_" + - "error\030\031 \001(\01626.google.ads.googleads.v11.e" + - "rrors.AdxErrorEnum.AdxErrorH\000\022Q\n\013asset_e" + - "rror\030k \001(\0162:.google.ads.googleads.v11.er" + - "rors.AssetErrorEnum.AssetErrorH\000\022r\n\027asse" + - "t_group_asset_error\030\225\001 \001(\0162N.google.ads." + - "googleads.v11.errors.AssetGroupAssetErro" + - "rEnum.AssetGroupAssetErrorH\000\022\233\001\n&asset_g" + - "roup_listing_group_filter_error\030\233\001 \001(\0162h" + - ".google.ads.googleads.v11.errors.AssetGr" + - "oupListingGroupFilterErrorEnum.AssetGrou" + - "pListingGroupFilterErrorH\000\022b\n\021asset_grou" + - "p_error\030\224\001 \001(\0162D.google.ads.googleads.v1" + - "1.errors.AssetGroupErrorEnum.AssetGroupE" + - "rrorH\000\022l\n\025asset_set_asset_error\030\231\001 \001(\0162J" + - ".google.ads.googleads.v11.errors.AssetSe" + - "tAssetErrorEnum.AssetSetAssetErrorH\000\022i\n\024" + - "asset_set_link_error\030\232\001 \001(\0162H.google.ads" + - ".googleads.v11.errors.AssetSetLinkErrorE" + - "num.AssetSetLinkErrorH\000\022\\\n\017asset_set_err" + - "or\030\230\001 \001(\0162@.google.ads.googleads.v11.err" + - "ors.AssetSetErrorEnum.AssetSetErrorH\000\022W\n" + - "\rbidding_error\030\032 \001(\0162>.google.ads.google" + - "ads.v11.errors.BiddingErrorEnum.BiddingE" + - "rrorH\000\022v\n\030campaign_criterion_error\030\035 \001(\016" + - "2R.google.ads.googleads.v11.errors.Campa" + - "ignCriterionErrorEnum.CampaignCriterionE" + - "rrorH\000\022\207\001\n\036campaign_conversion_goal_erro" + - "r\030\246\001 \001(\0162\\.google.ads.googleads.v11.erro" + - "rs.CampaignConversionGoalErrorEnum.Campa" + - "ignConversionGoalErrorH\000\022z\n\031campaign_cus" + - "tomizer_error\030\240\001 \001(\0162T.google.ads.google" + - "ads.v11.errors.CampaignCustomizerErrorEn" + - "um.CampaignCustomizerErrorH\000\022m\n\025collecti" + - "on_size_error\030\037 \001(\0162L.google.ads.googlea" + - "ds.v11.errors.CollectionSizeErrorEnum.Co" + - "llectionSizeErrorH\000\022\232\001\n%conversion_goal_" + - "campaign_config_error\030\245\001 \001(\0162h.google.ad" + - "s.googleads.v11.errors.ConversionGoalCam" + - "paignConfigErrorEnum.ConversionGoalCampa" + - "ignConfigErrorH\000\022d\n\022country_code_error\030m" + - " \001(\0162F.google.ads.googleads.v11.errors.C" + - "ountryCodeErrorEnum.CountryCodeErrorH\000\022]" + - "\n\017criterion_error\030 \001(\0162B.google.ads.goo" + - "gleads.v11.errors.CriterionErrorEnum.Cri" + - "terionErrorH\000\022\201\001\n\034custom_conversion_goal" + - "_error\030\226\001 \001(\0162X.google.ads.googleads.v11" + - ".errors.CustomConversionGoalErrorEnum.Cu" + - "stomConversionGoalErrorH\000\022z\n\031customer_cu" + - "stomizer_error\030\236\001 \001(\0162T.google.ads.googl" + - "eads.v11.errors.CustomerCustomizerErrorE" + - "num.CustomerCustomizerErrorH\000\022Z\n\016custome" + - "r_error\030Z \001(\0162@.google.ads.googleads.v11" + - ".errors.CustomerErrorEnum.CustomerErrorH" + - "\000\022}\n\032customizer_attribute_error\030\227\001 \001(\0162V" + - ".google.ads.googleads.v11.errors.Customi" + - "zerAttributeErrorEnum.CustomizerAttribut" + - "eErrorH\000\022N\n\ndate_error\030! \001(\01628.google.ad" + - "s.googleads.v11.errors.DateErrorEnum.Dat" + - "eErrorH\000\022^\n\020date_range_error\030\" \001(\0162B.goo" + - "gle.ads.googleads.v11.errors.DateRangeEr" + - "rorEnum.DateRangeErrorH\000\022Z\n\016distinct_err" + - "or\030# \001(\0162@.google.ads.googleads.v11.erro" + - "rs.DistinctErrorEnum.DistinctErrorH\000\022\206\001\n" + - "\036feed_attribute_reference_error\030$ \001(\0162\\." + - "google.ads.googleads.v11.errors.FeedAttr" + - "ibuteReferenceErrorEnum.FeedAttributeRef" + - "erenceErrorH\000\022Z\n\016function_error\030% \001(\0162@." + - "google.ads.googleads.v11.errors.Function" + - "ErrorEnum.FunctionErrorH\000\022p\n\026function_pa" + - "rsing_error\030& \001(\0162N.google.ads.googleads" + - ".v11.errors.FunctionParsingErrorEnum.Fun" + - "ctionParsingErrorH\000\022H\n\010id_error\030\' \001(\01624." + - "google.ads.googleads.v11.errors.IdErrorE" + - "num.IdErrorH\000\022Q\n\013image_error\030( \001(\0162:.goo" + - "gle.ads.googleads.v11.errors.ImageErrorE" + - "num.ImageErrorH\000\022g\n\023language_code_error\030" + - "n \001(\0162H.google.ads.googleads.v11.errors." + - "LanguageCodeErrorEnum.LanguageCodeErrorH" + - "\000\022d\n\022media_bundle_error\030* \001(\0162F.google.a" + - "ds.googleads.v11.errors.MediaBundleError" + - "Enum.MediaBundleErrorH\000\022d\n\022media_upload_" + - "error\030t \001(\0162F.google.ads.googleads.v11.e" + - "rrors.MediaUploadErrorEnum.MediaUploadEr" + - "rorH\000\022^\n\020media_file_error\030V \001(\0162B.google" + - ".ads.googleads.v11.errors.MediaFileError" + - "Enum.MediaFileErrorH\000\022n\n\025merchant_center" + - "_error\030\242\001 \001(\0162L.google.ads.googleads.v11" + - ".errors.MerchantCenterErrorEnum.Merchant" + - "CenterErrorH\000\022`\n\020multiplier_error\030, \001(\0162" + - "D.google.ads.googleads.v11.errors.Multip" + - "lierErrorEnum.MultiplierErrorH\000\022}\n\033new_r" + - "esource_creation_error\030- \001(\0162V.google.ad" + - "s.googleads.v11.errors.NewResourceCreati" + - "onErrorEnum.NewResourceCreationErrorH\000\022[" + - "\n\017not_empty_error\030. \001(\0162@.google.ads.goo" + - "gleads.v11.errors.NotEmptyErrorEnum.NotE" + - "mptyErrorH\000\022N\n\nnull_error\030/ \001(\01628.google" + - ".ads.googleads.v11.errors.NullErrorEnum." + - "NullErrorH\000\022Z\n\016operator_error\0300 \001(\0162@.go" + - "ogle.ads.googleads.v11.errors.OperatorEr" + - "rorEnum.OperatorErrorH\000\022Q\n\013range_error\0301" + - " \001(\0162:.google.ads.googleads.v11.errors.R" + - "angeErrorEnum.RangeErrorH\000\022l\n\024recommenda" + - "tion_error\030: \001(\0162L.google.ads.googleads." + - "v11.errors.RecommendationErrorEnum.Recom" + - "mendationErrorH\000\022a\n\021region_code_error\0303 " + - "\001(\0162D.google.ads.googleads.v11.errors.Re" + - "gionCodeErrorEnum.RegionCodeErrorH\000\022W\n\rs" + - "etting_error\0304 \001(\0162>.google.ads.googlead" + - "s.v11.errors.SettingErrorEnum.SettingErr" + - "orH\000\022g\n\023string_format_error\0305 \001(\0162H.goog" + - "le.ads.googleads.v11.errors.StringFormat" + - "ErrorEnum.StringFormatErrorH\000\022g\n\023string_" + - "length_error\0306 \001(\0162H.google.ads.googlead" + - "s.v11.errors.StringLengthErrorEnum.Strin" + - "gLengthErrorH\000\022\203\001\n\035operation_access_deni" + - "ed_error\0307 \001(\0162Z.google.ads.googleads.v1" + - "1.errors.OperationAccessDeniedErrorEnum." + - "OperationAccessDeniedErrorH\000\022\200\001\n\034resourc" + - "e_access_denied_error\0308 \001(\0162X.google.ads" + - ".googleads.v11.errors.ResourceAccessDeni", - "edErrorEnum.ResourceAccessDeniedErrorH\000\022" + - "\223\001\n#resource_count_limit_exceeded_error\030" + - "9 \001(\0162d.google.ads.googleads.v11.errors." + - "ResourceCountLimitExceededErrorEnum.Reso" + - "urceCountLimitExceededErrorH\000\022\214\001\n youtub" + - "e_video_registration_error\030u \001(\0162`.googl" + - "e.ads.googleads.v11.errors.YoutubeVideoR" + - "egistrationErrorEnum.YoutubeVideoRegistr" + - "ationErrorH\000\022{\n\033ad_group_bid_modifier_er" + - "ror\030; \001(\0162T.google.ads.googleads.v11.err" + - "ors.AdGroupBidModifierErrorEnum.AdGroupB" + - "idModifierErrorH\000\022W\n\rcontext_error\030< \001(\016" + - "2>.google.ads.googleads.v11.errors.Conte" + - "xtErrorEnum.ContextErrorH\000\022Q\n\013field_erro" + - "r\030= \001(\0162:.google.ads.googleads.v11.error" + - "s.FieldErrorEnum.FieldErrorH\000\022^\n\020shared_" + - "set_error\030> \001(\0162B.google.ads.googleads.v" + - "11.errors.SharedSetErrorEnum.SharedSetEr" + - "rorH\000\022p\n\026shared_criterion_error\030? \001(\0162N." + - "google.ads.googleads.v11.errors.SharedCr" + - "iterionErrorEnum.SharedCriterionErrorH\000\022" + - "w\n\031campaign_shared_set_error\030@ \001(\0162R.goo" + - "gle.ads.googleads.v11.errors.CampaignSha" + - "redSetErrorEnum.CampaignSharedSetErrorH\000" + - "\022s\n\027conversion_action_error\030A \001(\0162P.goog" + - "le.ads.googleads.v11.errors.ConversionAc" + - "tionErrorEnum.ConversionActionErrorH\000\022\222\001" + - "\n\"conversion_adjustment_upload_error\030s \001" + - "(\0162d.google.ads.googleads.v11.errors.Con" + - "versionAdjustmentUploadErrorEnum.Convers" + - "ionAdjustmentUploadErrorH\000\022\215\001\n conversio" + - "n_custom_variable_error\030\217\001 \001(\0162`.google." + - "ads.googleads.v11.errors.ConversionCusto" + - "mVariableErrorEnum.ConversionCustomVaria" + - "bleErrorH\000\022s\n\027conversion_upload_error\030o " + - "\001(\0162P.google.ads.googleads.v11.errors.Co" + - "nversionUploadErrorEnum.ConversionUpload" + - "ErrorH\000\022~\n\033conversion_value_rule_error\030\221" + - "\001 \001(\0162V.google.ads.googleads.v11.errors." + - "ConversionValueRuleErrorEnum.ConversionV" + - "alueRuleErrorH\000\022\210\001\n\037conversion_value_rul" + - "e_set_error\030\222\001 \001(\0162\\.google.ads.googlead" + - "s.v11.errors.ConversionValueRuleSetError" + - "Enum.ConversionValueRuleSetErrorH\000\022T\n\014he" + - "ader_error\030B \001(\0162<.google.ads.googleads." + - "v11.errors.HeaderErrorEnum.HeaderErrorH\000" + - "\022Z\n\016database_error\030C \001(\0162@.google.ads.go" + - "ogleads.v11.errors.DatabaseErrorEnum.Dat" + - "abaseErrorH\000\022j\n\024policy_finding_error\030D \001" + - "(\0162J.google.ads.googleads.v11.errors.Pol" + - "icyFindingErrorEnum.PolicyFindingErrorH\000" + - "\022N\n\nenum_error\030F \001(\01628.google.ads.google" + - "ads.v11.errors.EnumErrorEnum.EnumErrorH\000" + - "\022d\n\022keyword_plan_error\030G \001(\0162F.google.ad" + - "s.googleads.v11.errors.KeywordPlanErrorE" + - "num.KeywordPlanErrorH\000\022}\n\033keyword_plan_c" + - "ampaign_error\030H \001(\0162V.google.ads.googlea" + - "ds.v11.errors.KeywordPlanCampaignErrorEn" + - "um.KeywordPlanCampaignErrorH\000\022\224\001\n#keywor" + - "d_plan_campaign_keyword_error\030\204\001 \001(\0162d.g" + - "oogle.ads.googleads.v11.errors.KeywordPl" + - "anCampaignKeywordErrorEnum.KeywordPlanCa" + - "mpaignKeywordErrorH\000\022{\n\033keyword_plan_ad_" + - "group_error\030J \001(\0162T.google.ads.googleads" + - ".v11.errors.KeywordPlanAdGroupErrorEnum." + - "KeywordPlanAdGroupErrorH\000\022\222\001\n#keyword_pl" + - "an_ad_group_keyword_error\030\205\001 \001(\0162b.googl" + - "e.ads.googleads.v11.errors.KeywordPlanAd" + - "GroupKeywordErrorEnum.KeywordPlanAdGroup" + - "KeywordErrorH\000\022q\n\027keyword_plan_idea_erro" + - "r\030L \001(\0162N.google.ads.googleads.v11.error" + - "s.KeywordPlanIdeaErrorEnum.KeywordPlanId" + - "eaErrorH\000\022\203\001\n\035account_budget_proposal_er" + - "ror\030M \001(\0162Z.google.ads.googleads.v11.err" + - "ors.AccountBudgetProposalErrorEnum.Accou" + - "ntBudgetProposalErrorH\000\022[\n\017user_list_err" + - "or\030N \001(\0162@.google.ads.googleads.v11.erro" + - "rs.UserListErrorEnum.UserListErrorH\000\022e\n\022" + - "change_event_error\030\210\001 \001(\0162F.google.ads.g" + - "oogleads.v11.errors.ChangeEventErrorEnum" + - ".ChangeEventErrorH\000\022g\n\023change_status_err" + - "or\030O \001(\0162H.google.ads.googleads.v11.erro" + - "rs.ChangeStatusErrorEnum.ChangeStatusErr" + - "orH\000\022N\n\nfeed_error\030P \001(\01628.google.ads.go" + - "ogleads.v11.errors.FeedErrorEnum.FeedErr" + - "orH\000\022\226\001\n$geo_target_constant_suggestion_" + - "error\030Q \001(\0162f.google.ads.googleads.v11.e" + - "rrors.GeoTargetConstantSuggestionErrorEn" + - "um.GeoTargetConstantSuggestionErrorH\000\022j\n" + - "\024campaign_draft_error\030R \001(\0162J.google.ads" + - ".googleads.v11.errors.CampaignDraftError" + - "Enum.CampaignDraftErrorH\000\022[\n\017feed_item_e" + - "rror\030S \001(\0162@.google.ads.googleads.v11.er" + - "rors.FeedItemErrorEnum.FeedItemErrorH\000\022Q" + - "\n\013label_error\030T \001(\0162:.google.ads.googlea" + - "ds.v11.errors.LabelErrorEnum.LabelErrorH" + - "\000\022g\n\023billing_setup_error\030W \001(\0162H.google." + - "ads.googleads.v11.errors.BillingSetupErr" + - "orEnum.BillingSetupErrorH\000\022z\n\032customer_c" + - "lient_link_error\030X \001(\0162T.google.ads.goog" + - "leads.v11.errors.CustomerClientLinkError" + - "Enum.CustomerClientLinkErrorH\000\022}\n\033custom" + - "er_manager_link_error\030[ \001(\0162V.google.ads" + - ".googleads.v11.errors.CustomerManagerLin" + - "kErrorEnum.CustomerManagerLinkErrorH\000\022d\n" + - "\022feed_mapping_error\030\\ \001(\0162F.google.ads.g" + - "oogleads.v11.errors.FeedMappingErrorEnum" + - ".FeedMappingErrorH\000\022g\n\023customer_feed_err" + - "or\030] \001(\0162H.google.ads.googleads.v11.erro" + - "rs.CustomerFeedErrorEnum.CustomerFeedErr" + - "orH\000\022e\n\023ad_group_feed_error\030^ \001(\0162F.goog" + - "le.ads.googleads.v11.errors.AdGroupFeedE" + - "rrorEnum.AdGroupFeedErrorH\000\022g\n\023campaign_" + - "feed_error\030` \001(\0162H.google.ads.googleads." + - "v11.errors.CampaignFeedErrorEnum.Campaig" + - "nFeedErrorH\000\022m\n\025custom_interest_error\030a " + - "\001(\0162L.google.ads.googleads.v11.errors.Cu" + - "stomInterestErrorEnum.CustomInterestErro" + - "rH\000\022y\n\031campaign_experiment_error\030b \001(\0162T" + - ".google.ads.googleads.v11.errors.Campaig" + - "nExperimentErrorEnum.CampaignExperimentE" + - "rrorH\000\022w\n\031extension_feed_item_error\030d \001(" + - "\0162R.google.ads.googleads.v11.errors.Exte" + - "nsionFeedItemErrorEnum.ExtensionFeedItem" + - "ErrorH\000\022d\n\022ad_parameter_error\030e \001(\0162F.go" + - "ogle.ads.googleads.v11.errors.AdParamete" + - "rErrorEnum.AdParameterErrorH\000\022z\n\032feed_it" + - "em_validation_error\030f \001(\0162T.google.ads.g" + - "oogleads.v11.errors.FeedItemValidationEr" + - "rorEnum.FeedItemValidationErrorH\000\022s\n\027ext" + - "ension_setting_error\030g \001(\0162P.google.ads." + - "googleads.v11.errors.ExtensionSettingErr" + - "orEnum.ExtensionSettingErrorH\000\022f\n\023feed_i" + - "tem_set_error\030\214\001 \001(\0162F.google.ads.google" + - "ads.v11.errors.FeedItemSetErrorEnum.Feed" + - "ItemSetErrorH\000\022s\n\030feed_item_set_link_err" + - "or\030\215\001 \001(\0162N.google.ads.googleads.v11.err" + - "ors.FeedItemSetLinkErrorEnum.FeedItemSet" + - "LinkErrorH\000\022n\n\026feed_item_target_error\030h " + - "\001(\0162L.google.ads.googleads.v11.errors.Fe" + - "edItemTargetErrorEnum.FeedItemTargetErro" + - "rH\000\022p\n\026policy_violation_error\030i \001(\0162N.go" + - "ogle.ads.googleads.v11.errors.PolicyViol" + - "ationErrorEnum.PolicyViolationErrorH\000\022m\n" + - "\025partial_failure_error\030p \001(\0162L.google.ad" + - "s.googleads.v11.errors.PartialFailureErr" + - "orEnum.PartialFailureErrorH\000\022\217\001\n!policy_" + - "validation_parameter_error\030r \001(\0162b.googl" + - "e.ads.googleads.v11.errors.PolicyValidat" + - "ionParameterErrorEnum.PolicyValidationPa" + - "rameterErrorH\000\022^\n\020size_limit_error\030v \001(\016" + - "2B.google.ads.googleads.v11.errors.SizeL" + - "imitErrorEnum.SizeLimitErrorH\000\022{\n\033offlin" + - "e_user_data_job_error\030w \001(\0162T.google.ads" + - ".googleads.v11.errors.OfflineUserDataJob" + - "ErrorEnum.OfflineUserDataJobErrorH\000\022n\n\025n" + - "ot_allowlisted_error\030\211\001 \001(\0162L.google.ads" + - ".googleads.v11.errors.NotAllowlistedErro" + - "rEnum.NotAllowlistedErrorH\000\022d\n\022manager_l" + - "ink_error\030y \001(\0162F.google.ads.googleads.v" + - "11.errors.ManagerLinkErrorEnum.ManagerLi" + - "nkErrorH\000\022g\n\023currency_code_error\030z \001(\0162H" + - ".google.ads.googleads.v11.errors.Currenc" + - "yCodeErrorEnum.CurrencyCodeErrorH\000\022`\n\020ex" + - "periment_error\030{ \001(\0162D.google.ads.google" + - "ads.v11.errors.ExperimentErrorEnum.Exper" + - "imentErrorH\000\022s\n\027access_invitation_error\030" + - "| \001(\0162P.google.ads.googleads.v11.errors." + - "AccessInvitationErrorEnum.AccessInvitati" + - "onErrorH\000\022^\n\020reach_plan_error\030} \001(\0162B.go" + - "ogle.ads.googleads.v11.errors.ReachPlanE" + - "rrorEnum.ReachPlanErrorH\000\022W\n\rinvoice_err" + - "or\030~ \001(\0162>.google.ads.googleads.v11.erro" + - "rs.InvoiceErrorEnum.InvoiceErrorH\000\022p\n\026pa" + - "yments_account_error\030\177 \001(\0162N.google.ads." + - "googleads.v11.errors.PaymentsAccountErro" + - "rEnum.PaymentsAccountErrorH\000\022\\\n\017time_zon" + - "e_error\030\200\001 \001(\0162@.google.ads.googleads.v1" + - "1.errors.TimeZoneErrorEnum.TimeZoneError" + - "H\000\022_\n\020asset_link_error\030\201\001 \001(\0162B.google.a" + - "ds.googleads.v11.errors.AssetLinkErrorEn" + - "um.AssetLinkErrorH\000\022\\\n\017user_data_error\030\202" + - "\001 \001(\0162@.google.ads.googleads.v11.errors." + - "UserDataErrorEnum.UserDataErrorH\000\022\\\n\017bat" + - "ch_job_error\030\203\001 \001(\0162@.google.ads.googlea" + - "ds.v11.errors.BatchJobErrorEnum.BatchJob" + - "ErrorH\000\022e\n\022account_link_error\030\206\001 \001(\0162F.g" + - "oogle.ads.googleads.v11.errors.AccountLi" + - "nkErrorEnum.AccountLinkErrorH\000\022\225\001\n$third" + - "_party_app_analytics_link_error\030\207\001 \001(\0162d" + - ".google.ads.googleads.v11.errors.ThirdPa" + - "rtyAppAnalyticsLinkErrorEnum.ThirdPartyA" + - "ppAnalyticsLinkErrorH\000\022{\n\032customer_user_" + - "access_error\030\212\001 \001(\0162T.google.ads.googlea" + - "ds.v11.errors.CustomerUserAccessErrorEnu" + - "m.CustomerUserAccessErrorH\000\022n\n\025custom_au" + - "dience_error\030\213\001 \001(\0162L.google.ads.googlea" + - "ds.v11.errors.CustomAudienceErrorEnum.Cu" + - "stomAudienceErrorH\000\022[\n\016audience_error\030\244\001" + - " \001(\0162@.google.ads.googleads.v11.errors.A" + - "udienceErrorEnum.AudienceErrorH\000\022k\n\024expe" + - "riment_arm_error\030\234\001 \001(\0162J.google.ads.goo" + - "gleads.v11.errors.ExperimentArmErrorEnum" + - ".ExperimentArmErrorH\000B\014\n\nerror_code\"\263\001\n\r" + - "ErrorLocation\022\\\n\023field_path_elements\030\002 \003" + - "(\0132?.google.ads.googleads.v11.errors.Err" + - "orLocation.FieldPathElement\032D\n\020FieldPath" + - "Element\022\022\n\nfield_name\030\001 \001(\t\022\022\n\005index\030\003 \001" + - "(\005H\000\210\001\001B\010\n\006_index\"\210\003\n\014ErrorDetails\022\036\n\026un" + - "published_error_code\030\001 \001(\t\022Y\n\030policy_vio" + - "lation_details\030\002 \001(\01327.google.ads.google" + - "ads.v11.errors.PolicyViolationDetails\022U\n" + - "\026policy_finding_details\030\003 \001(\01325.google.a" + - "ds.googleads.v11.errors.PolicyFindingDet" + - "ails\022O\n\023quota_error_details\030\004 \001(\01322.goog" + - "le.ads.googleads.v11.errors.QuotaErrorDe" + - "tails\022U\n\026resource_count_details\030\005 \001(\01325." + - "google.ads.googleads.v11.errors.Resource" + - "CountDetails\"\264\001\n\026PolicyViolationDetails\022" + - "#\n\033external_policy_description\030\002 \001(\t\022@\n\003" + - "key\030\004 \001(\01323.google.ads.googleads.v11.com" + - "mon.PolicyViolationKey\022\034\n\024external_polic" + - "y_name\030\005 \001(\t\022\025\n\ris_exemptible\030\006 \001(\010\"g\n\024P" + - "olicyFindingDetails\022O\n\024policy_topic_entr" + - "ies\030\001 \003(\01321.google.ads.googleads.v11.com" + - "mon.PolicyTopicEntry\"\371\001\n\021QuotaErrorDetai" + - "ls\022U\n\nrate_scope\030\001 \001(\0162A.google.ads.goog" + - "leads.v11.errors.QuotaErrorDetails.Quota" + - "RateScope\022\021\n\trate_name\030\002 \001(\t\022.\n\013retry_de" + - "lay\030\003 \001(\0132\031.google.protobuf.Duration\"J\n\016" + - "QuotaRateScope\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNO" + - "WN\020\001\022\013\n\007ACCOUNT\020\002\022\r\n\tDEVELOPER\020\003\"\314\001\n\024Res" + - "ourceCountDetails\022\024\n\014enclosing_id\030\001 \001(\t\022" + - "\032\n\022enclosing_resource\030\005 \001(\t\022\r\n\005limit\030\002 \001" + - "(\005\022[\n\nlimit_type\030\003 \001(\0162G.google.ads.goog" + - "leads.v11.enums.ResourceLimitTypeEnum.Re" + - "sourceLimitType\022\026\n\016existing_count\030\004 \001(\005B" + - "\353\001\n#com.google.ads.googleads.v11.errorsB" + - "\013ErrorsProtoP\001ZEgoogle.golang.org/genpro" + - "to/googleapis/ads/googleads/v11/errors;e" + - "rrors\242\002\003GAA\252\002\037Google.Ads.GoogleAds.V11.E" + - "rrors\312\002\037Google\\Ads\\GoogleAds\\V11\\Errors\352" + - "\002#Google::Ads::GoogleAds::V11::Errorsb\006p" + - "roto3" + "language_code_error.proto\032:google/ads/go" + + "ogleads/v11/errors/list_operation_error." + + "proto\0328google/ads/googleads/v11/errors/m" + + "anager_link_error.proto\0328google/ads/goog" + + "leads/v11/errors/media_bundle_error.prot" + + "o\0326google/ads/googleads/v11/errors/media" + + "_file_error.proto\0328google/ads/googleads/" + + "v11/errors/media_upload_error.proto\032;goo" + + "gle/ads/googleads/v11/errors/merchant_ce" + + "nter_error.proto\0326google/ads/googleads/v" + + "11/errors/multiplier_error.proto\0322google" + + "/ads/googleads/v11/errors/mutate_error.p" + + "roto\032Agoogle/ads/googleads/v11/errors/ne" + + "w_resource_creation_error.proto\032;google/" + + "ads/googleads/v11/errors/not_allowlisted" + + "_error.proto\0325google/ads/googleads/v11/e" + + "rrors/not_empty_error.proto\0320google/ads/" + + "googleads/v11/errors/null_error.proto\032Ag" + + "oogle/ads/googleads/v11/errors/offline_u" + + "ser_data_job_error.proto\032Cgoogle/ads/goo" + + "gleads/v11/errors/operation_access_denie" + + "d_error.proto\0324google/ads/googleads/v11/" + + "errors/operator_error.proto\032;google/ads/" + + "googleads/v11/errors/partial_failure_err" + + "or.proto\032\n\nerror_code\030\001 \001(\0132*.g" + + "oogle.ads.googleads.v11.errors.ErrorCode" + + "\022\017\n\007message\030\002 \001(\t\0227\n\007trigger\030\003 \001(\0132&.goo" + + "gle.ads.googleads.v11.common.Value\022@\n\010lo" + + "cation\030\004 \001(\0132..google.ads.googleads.v11." + + "errors.ErrorLocation\022>\n\007details\030\005 \001(\0132-." + + "google.ads.googleads.v11.errors.ErrorDet" + + "ails\"\221w\n\tErrorCode\022W\n\rrequest_error\030\001 \001(" + + "\0162>.google.ads.googleads.v11.errors.Requ" + + "estErrorEnum.RequestErrorH\000\022p\n\026bidding_s" + + "trategy_error\030\002 \001(\0162N.google.ads.googlea" + + "ds.v11.errors.BiddingStrategyErrorEnum.B" + + "iddingStrategyErrorH\000\022[\n\017url_field_error" + + "\030\003 \001(\0162@.google.ads.googleads.v11.errors" + + ".UrlFieldErrorEnum.UrlFieldErrorH\000\022j\n\024li" + + "st_operation_error\030\004 \001(\0162J.google.ads.go" + + "ogleads.v11.errors.ListOperationErrorEnu" + + "m.ListOperationErrorH\000\022Q\n\013query_error\030\005 " + + "\001(\0162:.google.ads.googleads.v11.errors.Qu" + + "eryErrorEnum.QueryErrorH\000\022T\n\014mutate_erro" + + "r\030\007 \001(\0162<.google.ads.googleads.v11.error" + + "s.MutateErrorEnum.MutateErrorH\000\022^\n\020field" + + "_mask_error\030\010 \001(\0162B.google.ads.googleads" + + ".v11.errors.FieldMaskErrorEnum.FieldMask" + + "ErrorH\000\022i\n\023authorization_error\030\t \001(\0162J.g" + + "oogle.ads.googleads.v11.errors.Authoriza" + + "tionErrorEnum.AuthorizationErrorH\000\022Z\n\016in" + + "ternal_error\030\n \001(\0162@.google.ads.googlead" + + "s.v11.errors.InternalErrorEnum.InternalE" + + "rrorH\000\022Q\n\013quota_error\030\013 \001(\0162:.google.ads" + + ".googleads.v11.errors.QuotaErrorEnum.Quo" + + "taErrorH\000\022H\n\010ad_error\030\014 \001(\01624.google.ads" + + ".googleads.v11.errors.AdErrorEnum.AdErro" + + "rH\000\022X\n\016ad_group_error\030\r \001(\0162>.google.ads" + + ".googleads.v11.errors.AdGroupErrorEnum.A" + + "dGroupErrorH\000\022m\n\025campaign_budget_error\030\016" + + " \001(\0162L.google.ads.googleads.v11.errors.C" + + "ampaignBudgetErrorEnum.CampaignBudgetErr" + + "orH\000\022Z\n\016campaign_error\030\017 \001(\0162@.google.ad" + + "s.googleads.v11.errors.CampaignErrorEnum" + + ".CampaignErrorH\000\022l\n\024authentication_error" + + "\030\021 \001(\0162L.google.ads.googleads.v11.errors" + + ".AuthenticationErrorEnum.AuthenticationE" + + "rrorH\000\022\224\001\n#ad_group_criterion_customizer" + + "_error\030\241\001 \001(\0162d.google.ads.googleads.v11" + + ".errors.AdGroupCriterionCustomizerErrorE" + + "num.AdGroupCriterionCustomizerErrorH\000\022t\n" + + "\030ad_group_criterion_error\030\022 \001(\0162P.google" + + ".ads.googleads.v11.errors.AdGroupCriteri" + + "onErrorEnum.AdGroupCriterionErrorH\000\022x\n\031a" + + "d_group_customizer_error\030\237\001 \001(\0162R.google" + + ".ads.googleads.v11.errors.AdGroupCustomi" + + "zerErrorEnum.AdGroupCustomizerErrorH\000\022g\n" + + "\023ad_customizer_error\030\023 \001(\0162H.google.ads." + + "googleads.v11.errors.AdCustomizerErrorEn" + + "um.AdCustomizerErrorH\000\022_\n\021ad_group_ad_er" + + "ror\030\025 \001(\0162B.google.ads.googleads.v11.err" + + "ors.AdGroupAdErrorEnum.AdGroupAdErrorH\000\022" + + "^\n\020ad_sharing_error\030\030 \001(\0162B.google.ads.g" + + "oogleads.v11.errors.AdSharingErrorEnum.A" + + "dSharingErrorH\000\022K\n\tadx_error\030\031 \001(\01626.goo" + + "gle.ads.googleads.v11.errors.AdxErrorEnu" + + "m.AdxErrorH\000\022Q\n\013asset_error\030k \001(\0162:.goog" + + "le.ads.googleads.v11.errors.AssetErrorEn" + + "um.AssetErrorH\000\022r\n\027asset_group_asset_err" + + "or\030\225\001 \001(\0162N.google.ads.googleads.v11.err" + + "ors.AssetGroupAssetErrorEnum.AssetGroupA" + + "ssetErrorH\000\022\233\001\n&asset_group_listing_grou" + + "p_filter_error\030\233\001 \001(\0162h.google.ads.googl" + + "eads.v11.errors.AssetGroupListingGroupFi" + + "lterErrorEnum.AssetGroupListingGroupFilt" + + "erErrorH\000\022b\n\021asset_group_error\030\224\001 \001(\0162D." + + "google.ads.googleads.v11.errors.AssetGro" + + "upErrorEnum.AssetGroupErrorH\000\022l\n\025asset_s" + + "et_asset_error\030\231\001 \001(\0162J.google.ads.googl" + + "eads.v11.errors.AssetSetAssetErrorEnum.A" + + "ssetSetAssetErrorH\000\022i\n\024asset_set_link_er" + + "ror\030\232\001 \001(\0162H.google.ads.googleads.v11.er" + + "rors.AssetSetLinkErrorEnum.AssetSetLinkE" + + "rrorH\000\022\\\n\017asset_set_error\030\230\001 \001(\0162@.googl" + + "e.ads.googleads.v11.errors.AssetSetError" + + "Enum.AssetSetErrorH\000\022W\n\rbidding_error\030\032 " + + "\001(\0162>.google.ads.googleads.v11.errors.Bi" + + "ddingErrorEnum.BiddingErrorH\000\022v\n\030campaig" + + "n_criterion_error\030\035 \001(\0162R.google.ads.goo" + + "gleads.v11.errors.CampaignCriterionError" + + "Enum.CampaignCriterionErrorH\000\022\207\001\n\036campai" + + "gn_conversion_goal_error\030\246\001 \001(\0162\\.google" + + ".ads.googleads.v11.errors.CampaignConver" + + "sionGoalErrorEnum.CampaignConversionGoal" + + "ErrorH\000\022z\n\031campaign_customizer_error\030\240\001 " + + "\001(\0162T.google.ads.googleads.v11.errors.Ca" + + "mpaignCustomizerErrorEnum.CampaignCustom" + + "izerErrorH\000\022m\n\025collection_size_error\030\037 \001" + + "(\0162L.google.ads.googleads.v11.errors.Col" + + "lectionSizeErrorEnum.CollectionSizeError" + + "H\000\022\232\001\n%conversion_goal_campaign_config_e" + + "rror\030\245\001 \001(\0162h.google.ads.googleads.v11.e" + + "rrors.ConversionGoalCampaignConfigErrorE" + + "num.ConversionGoalCampaignConfigErrorH\000\022" + + "d\n\022country_code_error\030m \001(\0162F.google.ads" + + ".googleads.v11.errors.CountryCodeErrorEn" + + "um.CountryCodeErrorH\000\022]\n\017criterion_error" + + "\030 \001(\0162B.google.ads.googleads.v11.errors" + + ".CriterionErrorEnum.CriterionErrorH\000\022\201\001\n" + + "\034custom_conversion_goal_error\030\226\001 \001(\0162X.g" + + "oogle.ads.googleads.v11.errors.CustomCon" + + "versionGoalErrorEnum.CustomConversionGoa" + + "lErrorH\000\022z\n\031customer_customizer_error\030\236\001" + + " \001(\0162T.google.ads.googleads.v11.errors.C" + + "ustomerCustomizerErrorEnum.CustomerCusto" + + "mizerErrorH\000\022Z\n\016customer_error\030Z \001(\0162@.g" + + "oogle.ads.googleads.v11.errors.CustomerE" + + "rrorEnum.CustomerErrorH\000\022}\n\032customizer_a" + + "ttribute_error\030\227\001 \001(\0162V.google.ads.googl" + + "eads.v11.errors.CustomizerAttributeError" + + "Enum.CustomizerAttributeErrorH\000\022N\n\ndate_" + + "error\030! \001(\01628.google.ads.googleads.v11.e" + + "rrors.DateErrorEnum.DateErrorH\000\022^\n\020date_" + + "range_error\030\" \001(\0162B.google.ads.googleads" + + ".v11.errors.DateRangeErrorEnum.DateRange" + + "ErrorH\000\022Z\n\016distinct_error\030# \001(\0162@.google" + + ".ads.googleads.v11.errors.DistinctErrorE" + + "num.DistinctErrorH\000\022\206\001\n\036feed_attribute_r" + + "eference_error\030$ \001(\0162\\.google.ads.google" + + "ads.v11.errors.FeedAttributeReferenceErr" + + "orEnum.FeedAttributeReferenceErrorH\000\022Z\n\016" + + "function_error\030% \001(\0162@.google.ads.google" + + "ads.v11.errors.FunctionErrorEnum.Functio" + + "nErrorH\000\022p\n\026function_parsing_error\030& \001(\016" + + "2N.google.ads.googleads.v11.errors.Funct" + + "ionParsingErrorEnum.FunctionParsingError" + + "H\000\022H\n\010id_error\030\' \001(\01624.google.ads.google" + + "ads.v11.errors.IdErrorEnum.IdErrorH\000\022Q\n\013" + + "image_error\030( \001(\0162:.google.ads.googleads" + + ".v11.errors.ImageErrorEnum.ImageErrorH\000\022" + + "g\n\023language_code_error\030n \001(\0162H.google.ad" + + "s.googleads.v11.errors.LanguageCodeError" + + "Enum.LanguageCodeErrorH\000\022d\n\022media_bundle" + + "_error\030* \001(\0162F.google.ads.googleads.v11." + + "errors.MediaBundleErrorEnum.MediaBundleE" + + "rrorH\000\022d\n\022media_upload_error\030t \001(\0162F.goo" + + "gle.ads.googleads.v11.errors.MediaUpload" + + "ErrorEnum.MediaUploadErrorH\000\022^\n\020media_fi" + + "le_error\030V \001(\0162B.google.ads.googleads.v1" + + "1.errors.MediaFileErrorEnum.MediaFileErr" + + "orH\000\022n\n\025merchant_center_error\030\242\001 \001(\0162L.g" + + "oogle.ads.googleads.v11.errors.MerchantC" + + "enterErrorEnum.MerchantCenterErrorH\000\022`\n\020" + + "multiplier_error\030, \001(\0162D.google.ads.goog" + + "leads.v11.errors.MultiplierErrorEnum.Mul" + + "tiplierErrorH\000\022}\n\033new_resource_creation_" + + "error\030- \001(\0162V.google.ads.googleads.v11.e" + + "rrors.NewResourceCreationErrorEnum.NewRe" + + "sourceCreationErrorH\000\022[\n\017not_empty_error" + + "\030. \001(\0162@.google.ads.googleads.v11.errors" + + ".NotEmptyErrorEnum.NotEmptyErrorH\000\022N\n\nnu" + + "ll_error\030/ \001(\01628.google.ads.googleads.v1" + + "1.errors.NullErrorEnum.NullErrorH\000\022Z\n\016op" + + "erator_error\0300 \001(\0162@.google.ads.googlead" + + "s.v11.errors.OperatorErrorEnum.OperatorE" + + "rrorH\000\022Q\n\013range_error\0301 \001(\0162:.google.ads" + + ".googleads.v11.errors.RangeErrorEnum.Ran" + + "geErrorH\000\022l\n\024recommendation_error\030: \001(\0162" + + "L.google.ads.googleads.v11.errors.Recomm" + + "endationErrorEnum.RecommendationErrorH\000\022" + + "a\n\021region_code_error\0303 \001(\0162D.google.ads." + + "googleads.v11.errors.RegionCodeErrorEnum" + + ".RegionCodeErrorH\000\022W\n\rsetting_error\0304 \001(" + + "\0162>.google.ads.googleads.v11.errors.Sett" + + "ingErrorEnum.SettingErrorH\000\022g\n\023string_fo" + + "rmat_error\0305 \001(\0162H.google.ads.googleads." + + "v11.errors.StringFormatErrorEnum.StringF" + + "ormatErrorH\000\022g\n\023string_length_error\0306 \001(" + + "\0162H.google.ads.googleads.v11.errors.Stri" + + "ngLengthErrorEnum.StringLengthErrorH\000\022\203\001" + + "\n\035operation_access_denied_error\0307 \001(\0162Z." + + "google.ads.googleads.v11.errors.Operatio" + + "nAccessDeniedErrorEnum.OperationAccessDe" + + "niedErrorH\000\022\200\001\n\034resource_access_denied_e", + "rror\0308 \001(\0162X.google.ads.googleads.v11.er" + + "rors.ResourceAccessDeniedErrorEnum.Resou" + + "rceAccessDeniedErrorH\000\022\223\001\n#resource_coun" + + "t_limit_exceeded_error\0309 \001(\0162d.google.ad" + + "s.googleads.v11.errors.ResourceCountLimi" + + "tExceededErrorEnum.ResourceCountLimitExc" + + "eededErrorH\000\022\214\001\n youtube_video_registrat" + + "ion_error\030u \001(\0162`.google.ads.googleads.v" + + "11.errors.YoutubeVideoRegistrationErrorE" + + "num.YoutubeVideoRegistrationErrorH\000\022{\n\033a" + + "d_group_bid_modifier_error\030; \001(\0162T.googl" + + "e.ads.googleads.v11.errors.AdGroupBidMod" + + "ifierErrorEnum.AdGroupBidModifierErrorH\000" + + "\022W\n\rcontext_error\030< \001(\0162>.google.ads.goo" + + "gleads.v11.errors.ContextErrorEnum.Conte" + + "xtErrorH\000\022Q\n\013field_error\030= \001(\0162:.google." + + "ads.googleads.v11.errors.FieldErrorEnum." + + "FieldErrorH\000\022^\n\020shared_set_error\030> \001(\0162B" + + ".google.ads.googleads.v11.errors.SharedS" + + "etErrorEnum.SharedSetErrorH\000\022p\n\026shared_c" + + "riterion_error\030? \001(\0162N.google.ads.google" + + "ads.v11.errors.SharedCriterionErrorEnum." + + "SharedCriterionErrorH\000\022w\n\031campaign_share" + + "d_set_error\030@ \001(\0162R.google.ads.googleads" + + ".v11.errors.CampaignSharedSetErrorEnum.C" + + "ampaignSharedSetErrorH\000\022s\n\027conversion_ac" + + "tion_error\030A \001(\0162P.google.ads.googleads." + + "v11.errors.ConversionActionErrorEnum.Con" + + "versionActionErrorH\000\022\222\001\n\"conversion_adju" + + "stment_upload_error\030s \001(\0162d.google.ads.g" + + "oogleads.v11.errors.ConversionAdjustment" + + "UploadErrorEnum.ConversionAdjustmentUplo" + + "adErrorH\000\022\215\001\n conversion_custom_variable" + + "_error\030\217\001 \001(\0162`.google.ads.googleads.v11" + + ".errors.ConversionCustomVariableErrorEnu" + + "m.ConversionCustomVariableErrorH\000\022s\n\027con" + + "version_upload_error\030o \001(\0162P.google.ads." + + "googleads.v11.errors.ConversionUploadErr" + + "orEnum.ConversionUploadErrorH\000\022~\n\033conver" + + "sion_value_rule_error\030\221\001 \001(\0162V.google.ad" + + "s.googleads.v11.errors.ConversionValueRu" + + "leErrorEnum.ConversionValueRuleErrorH\000\022\210" + + "\001\n\037conversion_value_rule_set_error\030\222\001 \001(" + + "\0162\\.google.ads.googleads.v11.errors.Conv" + + "ersionValueRuleSetErrorEnum.ConversionVa" + + "lueRuleSetErrorH\000\022T\n\014header_error\030B \001(\0162" + + "<.google.ads.googleads.v11.errors.Header" + + "ErrorEnum.HeaderErrorH\000\022Z\n\016database_erro" + + "r\030C \001(\0162@.google.ads.googleads.v11.error" + + "s.DatabaseErrorEnum.DatabaseErrorH\000\022j\n\024p" + + "olicy_finding_error\030D \001(\0162J.google.ads.g" + + "oogleads.v11.errors.PolicyFindingErrorEn" + + "um.PolicyFindingErrorH\000\022N\n\nenum_error\030F " + + "\001(\01628.google.ads.googleads.v11.errors.En" + + "umErrorEnum.EnumErrorH\000\022d\n\022keyword_plan_" + + "error\030G \001(\0162F.google.ads.googleads.v11.e" + + "rrors.KeywordPlanErrorEnum.KeywordPlanEr" + + "rorH\000\022}\n\033keyword_plan_campaign_error\030H \001" + + "(\0162V.google.ads.googleads.v11.errors.Key" + + "wordPlanCampaignErrorEnum.KeywordPlanCam" + + "paignErrorH\000\022\224\001\n#keyword_plan_campaign_k" + + "eyword_error\030\204\001 \001(\0162d.google.ads.googlea" + + "ds.v11.errors.KeywordPlanCampaignKeyword" + + "ErrorEnum.KeywordPlanCampaignKeywordErro" + + "rH\000\022{\n\033keyword_plan_ad_group_error\030J \001(\016" + + "2T.google.ads.googleads.v11.errors.Keywo" + + "rdPlanAdGroupErrorEnum.KeywordPlanAdGrou" + + "pErrorH\000\022\222\001\n#keyword_plan_ad_group_keywo" + + "rd_error\030\205\001 \001(\0162b.google.ads.googleads.v" + + "11.errors.KeywordPlanAdGroupKeywordError" + + "Enum.KeywordPlanAdGroupKeywordErrorH\000\022q\n" + + "\027keyword_plan_idea_error\030L \001(\0162N.google." + + "ads.googleads.v11.errors.KeywordPlanIdea" + + "ErrorEnum.KeywordPlanIdeaErrorH\000\022\203\001\n\035acc" + + "ount_budget_proposal_error\030M \001(\0162Z.googl" + + "e.ads.googleads.v11.errors.AccountBudget" + + "ProposalErrorEnum.AccountBudgetProposalE" + + "rrorH\000\022[\n\017user_list_error\030N \001(\0162@.google" + + ".ads.googleads.v11.errors.UserListErrorE" + + "num.UserListErrorH\000\022e\n\022change_event_erro" + + "r\030\210\001 \001(\0162F.google.ads.googleads.v11.erro" + + "rs.ChangeEventErrorEnum.ChangeEventError" + + "H\000\022g\n\023change_status_error\030O \001(\0162H.google" + + ".ads.googleads.v11.errors.ChangeStatusEr" + + "rorEnum.ChangeStatusErrorH\000\022N\n\nfeed_erro" + + "r\030P \001(\01628.google.ads.googleads.v11.error" + + "s.FeedErrorEnum.FeedErrorH\000\022\226\001\n$geo_targ" + + "et_constant_suggestion_error\030Q \001(\0162f.goo" + + "gle.ads.googleads.v11.errors.GeoTargetCo" + + "nstantSuggestionErrorEnum.GeoTargetConst" + + "antSuggestionErrorH\000\022j\n\024campaign_draft_e" + + "rror\030R \001(\0162J.google.ads.googleads.v11.er" + + "rors.CampaignDraftErrorEnum.CampaignDraf" + + "tErrorH\000\022[\n\017feed_item_error\030S \001(\0162@.goog" + + "le.ads.googleads.v11.errors.FeedItemErro" + + "rEnum.FeedItemErrorH\000\022Q\n\013label_error\030T \001" + + "(\0162:.google.ads.googleads.v11.errors.Lab" + + "elErrorEnum.LabelErrorH\000\022g\n\023billing_setu" + + "p_error\030W \001(\0162H.google.ads.googleads.v11" + + ".errors.BillingSetupErrorEnum.BillingSet" + + "upErrorH\000\022z\n\032customer_client_link_error\030" + + "X \001(\0162T.google.ads.googleads.v11.errors." + + "CustomerClientLinkErrorEnum.CustomerClie" + + "ntLinkErrorH\000\022}\n\033customer_manager_link_e" + + "rror\030[ \001(\0162V.google.ads.googleads.v11.er" + + "rors.CustomerManagerLinkErrorEnum.Custom" + + "erManagerLinkErrorH\000\022d\n\022feed_mapping_err" + + "or\030\\ \001(\0162F.google.ads.googleads.v11.erro" + + "rs.FeedMappingErrorEnum.FeedMappingError" + + "H\000\022g\n\023customer_feed_error\030] \001(\0162H.google" + + ".ads.googleads.v11.errors.CustomerFeedEr" + + "rorEnum.CustomerFeedErrorH\000\022e\n\023ad_group_" + + "feed_error\030^ \001(\0162F.google.ads.googleads." + + "v11.errors.AdGroupFeedErrorEnum.AdGroupF" + + "eedErrorH\000\022g\n\023campaign_feed_error\030` \001(\0162" + + "H.google.ads.googleads.v11.errors.Campai" + + "gnFeedErrorEnum.CampaignFeedErrorH\000\022m\n\025c" + + "ustom_interest_error\030a \001(\0162L.google.ads." + + "googleads.v11.errors.CustomInterestError" + + "Enum.CustomInterestErrorH\000\022y\n\031campaign_e" + + "xperiment_error\030b \001(\0162T.google.ads.googl" + + "eads.v11.errors.CampaignExperimentErrorE" + + "num.CampaignExperimentErrorH\000\022w\n\031extensi" + + "on_feed_item_error\030d \001(\0162R.google.ads.go" + + "ogleads.v11.errors.ExtensionFeedItemErro" + + "rEnum.ExtensionFeedItemErrorH\000\022d\n\022ad_par" + + "ameter_error\030e \001(\0162F.google.ads.googlead" + + "s.v11.errors.AdParameterErrorEnum.AdPara" + + "meterErrorH\000\022z\n\032feed_item_validation_err" + + "or\030f \001(\0162T.google.ads.googleads.v11.erro" + + "rs.FeedItemValidationErrorEnum.FeedItemV" + + "alidationErrorH\000\022s\n\027extension_setting_er" + + "ror\030g \001(\0162P.google.ads.googleads.v11.err" + + "ors.ExtensionSettingErrorEnum.ExtensionS" + + "ettingErrorH\000\022f\n\023feed_item_set_error\030\214\001 " + + "\001(\0162F.google.ads.googleads.v11.errors.Fe" + + "edItemSetErrorEnum.FeedItemSetErrorH\000\022s\n" + + "\030feed_item_set_link_error\030\215\001 \001(\0162N.googl" + + "e.ads.googleads.v11.errors.FeedItemSetLi" + + "nkErrorEnum.FeedItemSetLinkErrorH\000\022n\n\026fe" + + "ed_item_target_error\030h \001(\0162L.google.ads." + + "googleads.v11.errors.FeedItemTargetError" + + "Enum.FeedItemTargetErrorH\000\022p\n\026policy_vio" + + "lation_error\030i \001(\0162N.google.ads.googlead" + + "s.v11.errors.PolicyViolationErrorEnum.Po" + + "licyViolationErrorH\000\022m\n\025partial_failure_" + + "error\030p \001(\0162L.google.ads.googleads.v11.e" + + "rrors.PartialFailureErrorEnum.PartialFai" + + "lureErrorH\000\022\217\001\n!policy_validation_parame" + + "ter_error\030r \001(\0162b.google.ads.googleads.v" + + "11.errors.PolicyValidationParameterError" + + "Enum.PolicyValidationParameterErrorH\000\022^\n" + + "\020size_limit_error\030v \001(\0162B.google.ads.goo" + + "gleads.v11.errors.SizeLimitErrorEnum.Siz" + + "eLimitErrorH\000\022{\n\033offline_user_data_job_e" + + "rror\030w \001(\0162T.google.ads.googleads.v11.er" + + "rors.OfflineUserDataJobErrorEnum.Offline" + + "UserDataJobErrorH\000\022n\n\025not_allowlisted_er" + + "ror\030\211\001 \001(\0162L.google.ads.googleads.v11.er" + + "rors.NotAllowlistedErrorEnum.NotAllowlis" + + "tedErrorH\000\022d\n\022manager_link_error\030y \001(\0162F" + + ".google.ads.googleads.v11.errors.Manager" + + "LinkErrorEnum.ManagerLinkErrorH\000\022g\n\023curr" + + "ency_code_error\030z \001(\0162H.google.ads.googl" + + "eads.v11.errors.CurrencyCodeErrorEnum.Cu" + + "rrencyCodeErrorH\000\022`\n\020experiment_error\030{ " + + "\001(\0162D.google.ads.googleads.v11.errors.Ex" + + "perimentErrorEnum.ExperimentErrorH\000\022s\n\027a" + + "ccess_invitation_error\030| \001(\0162P.google.ad" + + "s.googleads.v11.errors.AccessInvitationE" + + "rrorEnum.AccessInvitationErrorH\000\022^\n\020reac" + + "h_plan_error\030} \001(\0162B.google.ads.googlead" + + "s.v11.errors.ReachPlanErrorEnum.ReachPla" + + "nErrorH\000\022W\n\rinvoice_error\030~ \001(\0162>.google" + + ".ads.googleads.v11.errors.InvoiceErrorEn" + + "um.InvoiceErrorH\000\022p\n\026payments_account_er" + + "ror\030\177 \001(\0162N.google.ads.googleads.v11.err" + + "ors.PaymentsAccountErrorEnum.PaymentsAcc" + + "ountErrorH\000\022\\\n\017time_zone_error\030\200\001 \001(\0162@." + + "google.ads.googleads.v11.errors.TimeZone" + + "ErrorEnum.TimeZoneErrorH\000\022_\n\020asset_link_" + + "error\030\201\001 \001(\0162B.google.ads.googleads.v11." + + "errors.AssetLinkErrorEnum.AssetLinkError" + + "H\000\022\\\n\017user_data_error\030\202\001 \001(\0162@.google.ad" + + "s.googleads.v11.errors.UserDataErrorEnum" + + ".UserDataErrorH\000\022\\\n\017batch_job_error\030\203\001 \001" + + "(\0162@.google.ads.googleads.v11.errors.Bat" + + "chJobErrorEnum.BatchJobErrorH\000\022e\n\022accoun" + + "t_link_error\030\206\001 \001(\0162F.google.ads.googlea" + + "ds.v11.errors.AccountLinkErrorEnum.Accou" + + "ntLinkErrorH\000\022\225\001\n$third_party_app_analyt" + + "ics_link_error\030\207\001 \001(\0162d.google.ads.googl" + + "eads.v11.errors.ThirdPartyAppAnalyticsLi" + + "nkErrorEnum.ThirdPartyAppAnalyticsLinkEr" + + "rorH\000\022{\n\032customer_user_access_error\030\212\001 \001" + + "(\0162T.google.ads.googleads.v11.errors.Cus" + + "tomerUserAccessErrorEnum.CustomerUserAcc" + + "essErrorH\000\022n\n\025custom_audience_error\030\213\001 \001" + + "(\0162L.google.ads.googleads.v11.errors.Cus" + + "tomAudienceErrorEnum.CustomAudienceError" + + "H\000\022[\n\016audience_error\030\244\001 \001(\0162@.google.ads" + + ".googleads.v11.errors.AudienceErrorEnum." + + "AudienceErrorH\000\022k\n\024experiment_arm_error\030" + + "\234\001 \001(\0162J.google.ads.googleads.v11.errors" + + ".ExperimentArmErrorEnum.ExperimentArmErr" + + "orH\000\022t\n\027audience_insights_error\030\247\001 \001(\0162P" + + ".google.ads.googleads.v11.errors.Audienc" + + "eInsightsErrorEnum.AudienceInsightsError" + + "H\000B\014\n\nerror_code\"\263\001\n\rErrorLocation\022\\\n\023fi" + + "eld_path_elements\030\002 \003(\0132?.google.ads.goo" + + "gleads.v11.errors.ErrorLocation.FieldPat" + + "hElement\032D\n\020FieldPathElement\022\022\n\nfield_na" + + "me\030\001 \001(\t\022\022\n\005index\030\003 \001(\005H\000\210\001\001B\010\n\006_index\"\210" + + "\003\n\014ErrorDetails\022\036\n\026unpublished_error_cod" + + "e\030\001 \001(\t\022Y\n\030policy_violation_details\030\002 \001(" + + "\01327.google.ads.googleads.v11.errors.Poli" + + "cyViolationDetails\022U\n\026policy_finding_det" + + "ails\030\003 \001(\01325.google.ads.googleads.v11.er" + + "rors.PolicyFindingDetails\022O\n\023quota_error" + + "_details\030\004 \001(\01322.google.ads.googleads.v1" + + "1.errors.QuotaErrorDetails\022U\n\026resource_c" + + "ount_details\030\005 \001(\01325.google.ads.googlead" + + "s.v11.errors.ResourceCountDetails\"\264\001\n\026Po" + + "licyViolationDetails\022#\n\033external_policy_" + + "description\030\002 \001(\t\022@\n\003key\030\004 \001(\01323.google." + + "ads.googleads.v11.common.PolicyViolation" + + "Key\022\034\n\024external_policy_name\030\005 \001(\t\022\025\n\ris_" + + "exemptible\030\006 \001(\010\"g\n\024PolicyFindingDetails" + + "\022O\n\024policy_topic_entries\030\001 \003(\01321.google." + + "ads.googleads.v11.common.PolicyTopicEntr" + + "y\"\371\001\n\021QuotaErrorDetails\022U\n\nrate_scope\030\001 " + + "\001(\0162A.google.ads.googleads.v11.errors.Qu" + + "otaErrorDetails.QuotaRateScope\022\021\n\trate_n" + + "ame\030\002 \001(\t\022.\n\013retry_delay\030\003 \001(\0132\031.google." + + "protobuf.Duration\"J\n\016QuotaRateScope\022\017\n\013U" + + "NSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\013\n\007ACCOUNT\020\002\022\r" + + "\n\tDEVELOPER\020\003\"\314\001\n\024ResourceCountDetails\022\024" + + "\n\014enclosing_id\030\001 \001(\t\022\032\n\022enclosing_resour" + + "ce\030\005 \001(\t\022\r\n\005limit\030\002 \001(\005\022[\n\nlimit_type\030\003 " + + "\001(\0162G.google.ads.googleads.v11.enums.Res" + + "ourceLimitTypeEnum.ResourceLimitType\022\026\n\016" + + "existing_count\030\004 \001(\005B\353\001\n#com.google.ads." + + "googleads.v11.errorsB\013ErrorsProtoP\001ZEgoo" + + "gle.golang.org/genproto/googleapis/ads/g" + + "oogleads/v11/errors;errors\242\002\003GAA\252\002\037Googl" + + "e.Ads.GoogleAds.V11.Errors\312\002\037Google\\Ads\\" + + "GoogleAds\\V11\\Errors\352\002#Google::Ads::Goog" + + "leAds::V11::Errorsb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -748,6 +752,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v11.errors.AssetSetErrorProto.getDescriptor(), com.google.ads.googleads.v11.errors.AssetSetLinkErrorProto.getDescriptor(), com.google.ads.googleads.v11.errors.AudienceErrorProto.getDescriptor(), + com.google.ads.googleads.v11.errors.AudienceInsightsErrorProto.getDescriptor(), com.google.ads.googleads.v11.errors.AuthenticationErrorProto.getDescriptor(), com.google.ads.googleads.v11.errors.AuthorizationErrorProto.getDescriptor(), com.google.ads.googleads.v11.errors.BatchJobErrorProto.getDescriptor(), @@ -882,7 +887,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_errors_ErrorCode_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_errors_ErrorCode_descriptor, - new java.lang.String[] { "RequestError", "BiddingStrategyError", "UrlFieldError", "ListOperationError", "QueryError", "MutateError", "FieldMaskError", "AuthorizationError", "InternalError", "QuotaError", "AdError", "AdGroupError", "CampaignBudgetError", "CampaignError", "AuthenticationError", "AdGroupCriterionCustomizerError", "AdGroupCriterionError", "AdGroupCustomizerError", "AdCustomizerError", "AdGroupAdError", "AdSharingError", "AdxError", "AssetError", "AssetGroupAssetError", "AssetGroupListingGroupFilterError", "AssetGroupError", "AssetSetAssetError", "AssetSetLinkError", "AssetSetError", "BiddingError", "CampaignCriterionError", "CampaignConversionGoalError", "CampaignCustomizerError", "CollectionSizeError", "ConversionGoalCampaignConfigError", "CountryCodeError", "CriterionError", "CustomConversionGoalError", "CustomerCustomizerError", "CustomerError", "CustomizerAttributeError", "DateError", "DateRangeError", "DistinctError", "FeedAttributeReferenceError", "FunctionError", "FunctionParsingError", "IdError", "ImageError", "LanguageCodeError", "MediaBundleError", "MediaUploadError", "MediaFileError", "MerchantCenterError", "MultiplierError", "NewResourceCreationError", "NotEmptyError", "NullError", "OperatorError", "RangeError", "RecommendationError", "RegionCodeError", "SettingError", "StringFormatError", "StringLengthError", "OperationAccessDeniedError", "ResourceAccessDeniedError", "ResourceCountLimitExceededError", "YoutubeVideoRegistrationError", "AdGroupBidModifierError", "ContextError", "FieldError", "SharedSetError", "SharedCriterionError", "CampaignSharedSetError", "ConversionActionError", "ConversionAdjustmentUploadError", "ConversionCustomVariableError", "ConversionUploadError", "ConversionValueRuleError", "ConversionValueRuleSetError", "HeaderError", "DatabaseError", "PolicyFindingError", "EnumError", "KeywordPlanError", "KeywordPlanCampaignError", "KeywordPlanCampaignKeywordError", "KeywordPlanAdGroupError", "KeywordPlanAdGroupKeywordError", "KeywordPlanIdeaError", "AccountBudgetProposalError", "UserListError", "ChangeEventError", "ChangeStatusError", "FeedError", "GeoTargetConstantSuggestionError", "CampaignDraftError", "FeedItemError", "LabelError", "BillingSetupError", "CustomerClientLinkError", "CustomerManagerLinkError", "FeedMappingError", "CustomerFeedError", "AdGroupFeedError", "CampaignFeedError", "CustomInterestError", "CampaignExperimentError", "ExtensionFeedItemError", "AdParameterError", "FeedItemValidationError", "ExtensionSettingError", "FeedItemSetError", "FeedItemSetLinkError", "FeedItemTargetError", "PolicyViolationError", "PartialFailureError", "PolicyValidationParameterError", "SizeLimitError", "OfflineUserDataJobError", "NotAllowlistedError", "ManagerLinkError", "CurrencyCodeError", "ExperimentError", "AccessInvitationError", "ReachPlanError", "InvoiceError", "PaymentsAccountError", "TimeZoneError", "AssetLinkError", "UserDataError", "BatchJobError", "AccountLinkError", "ThirdPartyAppAnalyticsLinkError", "CustomerUserAccessError", "CustomAudienceError", "AudienceError", "ExperimentArmError", "ErrorCode", }); + new java.lang.String[] { "RequestError", "BiddingStrategyError", "UrlFieldError", "ListOperationError", "QueryError", "MutateError", "FieldMaskError", "AuthorizationError", "InternalError", "QuotaError", "AdError", "AdGroupError", "CampaignBudgetError", "CampaignError", "AuthenticationError", "AdGroupCriterionCustomizerError", "AdGroupCriterionError", "AdGroupCustomizerError", "AdCustomizerError", "AdGroupAdError", "AdSharingError", "AdxError", "AssetError", "AssetGroupAssetError", "AssetGroupListingGroupFilterError", "AssetGroupError", "AssetSetAssetError", "AssetSetLinkError", "AssetSetError", "BiddingError", "CampaignCriterionError", "CampaignConversionGoalError", "CampaignCustomizerError", "CollectionSizeError", "ConversionGoalCampaignConfigError", "CountryCodeError", "CriterionError", "CustomConversionGoalError", "CustomerCustomizerError", "CustomerError", "CustomizerAttributeError", "DateError", "DateRangeError", "DistinctError", "FeedAttributeReferenceError", "FunctionError", "FunctionParsingError", "IdError", "ImageError", "LanguageCodeError", "MediaBundleError", "MediaUploadError", "MediaFileError", "MerchantCenterError", "MultiplierError", "NewResourceCreationError", "NotEmptyError", "NullError", "OperatorError", "RangeError", "RecommendationError", "RegionCodeError", "SettingError", "StringFormatError", "StringLengthError", "OperationAccessDeniedError", "ResourceAccessDeniedError", "ResourceCountLimitExceededError", "YoutubeVideoRegistrationError", "AdGroupBidModifierError", "ContextError", "FieldError", "SharedSetError", "SharedCriterionError", "CampaignSharedSetError", "ConversionActionError", "ConversionAdjustmentUploadError", "ConversionCustomVariableError", "ConversionUploadError", "ConversionValueRuleError", "ConversionValueRuleSetError", "HeaderError", "DatabaseError", "PolicyFindingError", "EnumError", "KeywordPlanError", "KeywordPlanCampaignError", "KeywordPlanCampaignKeywordError", "KeywordPlanAdGroupError", "KeywordPlanAdGroupKeywordError", "KeywordPlanIdeaError", "AccountBudgetProposalError", "UserListError", "ChangeEventError", "ChangeStatusError", "FeedError", "GeoTargetConstantSuggestionError", "CampaignDraftError", "FeedItemError", "LabelError", "BillingSetupError", "CustomerClientLinkError", "CustomerManagerLinkError", "FeedMappingError", "CustomerFeedError", "AdGroupFeedError", "CampaignFeedError", "CustomInterestError", "CampaignExperimentError", "ExtensionFeedItemError", "AdParameterError", "FeedItemValidationError", "ExtensionSettingError", "FeedItemSetError", "FeedItemSetLinkError", "FeedItemTargetError", "PolicyViolationError", "PartialFailureError", "PolicyValidationParameterError", "SizeLimitError", "OfflineUserDataJobError", "NotAllowlistedError", "ManagerLinkError", "CurrencyCodeError", "ExperimentError", "AccessInvitationError", "ReachPlanError", "InvoiceError", "PaymentsAccountError", "TimeZoneError", "AssetLinkError", "UserDataError", "BatchJobError", "AccountLinkError", "ThirdPartyAppAnalyticsLinkError", "CustomerUserAccessError", "CustomAudienceError", "AudienceError", "ExperimentArmError", "AudienceInsightsError", "ErrorCode", }); internal_static_google_ads_googleads_v11_errors_ErrorLocation_descriptor = getDescriptor().getMessageTypes().get(3); internal_static_google_ads_googleads_v11_errors_ErrorLocation_fieldAccessorTable = new @@ -952,6 +957,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v11.errors.AssetSetErrorProto.getDescriptor(); com.google.ads.googleads.v11.errors.AssetSetLinkErrorProto.getDescriptor(); com.google.ads.googleads.v11.errors.AudienceErrorProto.getDescriptor(); + com.google.ads.googleads.v11.errors.AudienceInsightsErrorProto.getDescriptor(); com.google.ads.googleads.v11.errors.AuthenticationErrorProto.getDescriptor(); com.google.ads.googleads.v11.errors.AuthorizationErrorProto.getDescriptor(); com.google.ads.googleads.v11.errors.BatchJobErrorProto.getDescriptor(); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExperimentErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExperimentErrorEnum.java index 20200a5d32..2c6d56c080 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExperimentErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExperimentErrorEnum.java @@ -114,7 +114,7 @@ public enum ExperimentError /** *
      * The start date of an experiment cannot be set in the past.
-     * Please use a start date in the future.
+     * Use a start date in the future.
      * 
* * CANNOT_SET_START_DATE_IN_PAST = 2; @@ -123,7 +123,7 @@ public enum ExperimentError /** *
      * The end date of an experiment is before its start date.
-     * Please use an end date after the start date.
+     * Use an end date after the start date.
      * 
* * END_DATE_BEFORE_START_DATE = 3; @@ -132,7 +132,7 @@ public enum ExperimentError /** *
      * The start date of an experiment is too far in the future.
-     * Please use a start date no more than 1 year in the future.
+     * Use a start date no more than 1 year in the future.
      * 
* * START_DATE_TOO_FAR_IN_FUTURE = 4; @@ -331,7 +331,7 @@ public enum ExperimentError /** *
      * The start date of an experiment cannot be set in the past.
-     * Please use a start date in the future.
+     * Use a start date in the future.
      * 
* * CANNOT_SET_START_DATE_IN_PAST = 2; @@ -340,7 +340,7 @@ public enum ExperimentError /** *
      * The end date of an experiment is before its start date.
-     * Please use an end date after the start date.
+     * Use an end date after the start date.
      * 
* * END_DATE_BEFORE_START_DATE = 3; @@ -349,7 +349,7 @@ public enum ExperimentError /** *
      * The start date of an experiment is too far in the future.
-     * Please use a start date no more than 1 year in the future.
+     * Use a start date no more than 1 year in the future.
      * 
* * START_DATE_TOO_FAR_IN_FUTURE = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionFeedItemErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionFeedItemErrorEnum.java index 5b2d32277c..98b9e0f064 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionFeedItemErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionFeedItemErrorEnum.java @@ -206,8 +206,8 @@ public enum ExtensionFeedItemError INVALID_DOMESTIC_PHONE_NUMBER_FORMAT(12), /** *
-     * Vanity phone numbers (i.e. those including letters) are not allowed for
-     * call extensions.
+     * Vanity phone numbers (for example, those including letters) are not
+     * allowed for call extensions.
      * 
* * VANITY_PHONE_NUMBER_NOT_ALLOWED = 13; @@ -242,7 +242,7 @@ public enum ExtensionFeedItemError /** *
      * Customer hasn't consented for call recording, which is required for
-     * creating/updating call feed items. Please see
+     * creating/updating call feed items. See
      * https://support.google.com/google-ads/answer/7412639.
      * 
* @@ -357,8 +357,8 @@ public enum ExtensionFeedItemError INVALID_DEVICE_PREFERENCE(30), /** *
-     * Invalid feed item schedule end time (i.e., endHour = 24 and endMinute !=
-     * 0).
+     * Invalid feed item schedule end time (for example, endHour = 24 and
+     * endMinute != 0).
      * 
* * INVALID_SCHEDULE_END = 31; @@ -416,7 +416,7 @@ public enum ExtensionFeedItemError EXTENSION_TYPE_MISMATCH(37), /** *
-     * The oneof field extension i.e. subtype of extension feed item is
+     * The oneof field extension for example, subtype of extension feed item is
      * required.
      * 
* @@ -601,8 +601,8 @@ public enum ExtensionFeedItemError public static final int INVALID_DOMESTIC_PHONE_NUMBER_FORMAT_VALUE = 12; /** *
-     * Vanity phone numbers (i.e. those including letters) are not allowed for
-     * call extensions.
+     * Vanity phone numbers (for example, those including letters) are not
+     * allowed for call extensions.
      * 
* * VANITY_PHONE_NUMBER_NOT_ALLOWED = 13; @@ -637,7 +637,7 @@ public enum ExtensionFeedItemError /** *
      * Customer hasn't consented for call recording, which is required for
-     * creating/updating call feed items. Please see
+     * creating/updating call feed items. See
      * https://support.google.com/google-ads/answer/7412639.
      * 
* @@ -752,8 +752,8 @@ public enum ExtensionFeedItemError public static final int INVALID_DEVICE_PREFERENCE_VALUE = 30; /** *
-     * Invalid feed item schedule end time (i.e., endHour = 24 and endMinute !=
-     * 0).
+     * Invalid feed item schedule end time (for example, endHour = 24 and
+     * endMinute != 0).
      * 
* * INVALID_SCHEDULE_END = 31; @@ -811,7 +811,7 @@ public enum ExtensionFeedItemError public static final int EXTENSION_TYPE_MISMATCH_VALUE = 37; /** *
-     * The oneof field extension i.e. subtype of extension feed item is
+     * The oneof field extension for example, subtype of extension feed item is
      * required.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionSettingErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionSettingErrorEnum.java index f43e85457f..55658d2e1e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionSettingErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/ExtensionSettingErrorEnum.java @@ -312,8 +312,8 @@ public enum ExtensionSettingError INVALID_DOMESTIC_PHONE_NUMBER_FORMAT(25), /** *
-     * Vanity phone numbers (i.e. those including letters) are not allowed for
-     * call extensions.
+     * Vanity phone numbers (for example, those including letters) are not
+     * allowed for call extensions.
      * 
* * VANITY_PHONE_NUMBER_NOT_ALLOWED = 26; @@ -460,7 +460,7 @@ public enum ExtensionSettingError INVALID_DEVICE_PREFERENCE(43), /** *
-     * Invalid feed item schedule end time (i.e., endHour = 24 and
+     * Invalid feed item schedule end time (for example, endHour = 24 and
      * endMinute != 0).
      * 
* @@ -477,8 +477,8 @@ public enum ExtensionSettingError DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE(47), /** *
-     * Overlapping feed item schedule times (e.g., 7-10AM and 8-11AM) are not
-     * allowed.
+     * Overlapping feed item schedule times (for example, 7-10AM and 8-11AM) are
+     * not allowed.
      * 
* * OVERLAPPING_SCHEDULES_NOT_ALLOWED = 48; @@ -629,7 +629,7 @@ public enum ExtensionSettingError /** *
      * Customer hasn't consented for call recording, which is required for
-     * adding/updating call extensions. Please see
+     * adding/updating call extensions. See
      * https://support.google.com/google-ads/answer/7412639.
      * 
* @@ -873,8 +873,8 @@ public enum ExtensionSettingError public static final int INVALID_DOMESTIC_PHONE_NUMBER_FORMAT_VALUE = 25; /** *
-     * Vanity phone numbers (i.e. those including letters) are not allowed for
-     * call extensions.
+     * Vanity phone numbers (for example, those including letters) are not
+     * allowed for call extensions.
      * 
* * VANITY_PHONE_NUMBER_NOT_ALLOWED = 26; @@ -1021,7 +1021,7 @@ public enum ExtensionSettingError public static final int INVALID_DEVICE_PREFERENCE_VALUE = 43; /** *
-     * Invalid feed item schedule end time (i.e., endHour = 24 and
+     * Invalid feed item schedule end time (for example, endHour = 24 and
      * endMinute != 0).
      * 
* @@ -1038,8 +1038,8 @@ public enum ExtensionSettingError public static final int DATE_TIME_MUST_BE_IN_ACCOUNT_TIME_ZONE_VALUE = 47; /** *
-     * Overlapping feed item schedule times (e.g., 7-10AM and 8-11AM) are not
-     * allowed.
+     * Overlapping feed item schedule times (for example, 7-10AM and 8-11AM) are
+     * not allowed.
      * 
* * OVERLAPPING_SCHEDULES_NOT_ALLOWED = 48; @@ -1190,7 +1190,7 @@ public enum ExtensionSettingError /** *
      * Customer hasn't consented for call recording, which is required for
-     * adding/updating call extensions. Please see
+     * adding/updating call extensions. See
      * https://support.google.com/google-ads/answer/7412639.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/FeedItemValidationErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/FeedItemValidationErrorEnum.java index 8f8f3a3646..8ee461656a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/FeedItemValidationErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/FeedItemValidationErrorEnum.java @@ -465,8 +465,8 @@ public enum FeedItemValidationError * Advertisers can link a conversion action with a phone number to indicate * that sufficiently long calls forwarded to that phone number should be * counted as conversions of the specified type. This is an error message - * indicating that the conversion action specified is invalid (e.g., the - * conversion action does not exist within the appropriate Google Ads + * indicating that the conversion action specified is invalid (for example, + * the conversion action does not exist within the appropriate Google Ads * account, or it is a type of conversion not appropriate to phone call * conversions). *
@@ -784,7 +784,7 @@ public enum FeedItemValidationError /** *
      * Consent for call recording, which is required for the use of call
-     * extensions, was not provided by the advertiser. Please see
+     * extensions, was not provided by the advertiser. See
      * https://support.google.com/google-ads/answer/7412639.
      * 
* @@ -1342,8 +1342,8 @@ public enum FeedItemValidationError * Advertisers can link a conversion action with a phone number to indicate * that sufficiently long calls forwarded to that phone number should be * counted as conversions of the specified type. This is an error message - * indicating that the conversion action specified is invalid (e.g., the - * conversion action does not exist within the appropriate Google Ads + * indicating that the conversion action specified is invalid (for example, + * the conversion action does not exist within the appropriate Google Ads * account, or it is a type of conversion not appropriate to phone call * conversions). *
@@ -1661,7 +1661,7 @@ public enum FeedItemValidationError /** *
      * Consent for call recording, which is required for the use of call
-     * extensions, was not provided by the advertiser. Please see
+     * extensions, was not provided by the advertiser. See
      * https://support.google.com/google-ads/answer/7412639.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MediaUploadErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MediaUploadErrorEnum.java index 6ed2cf18c8..fafde8cee8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MediaUploadErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MediaUploadErrorEnum.java @@ -302,7 +302,7 @@ public enum MediaUploadError /** *
      * The media bundle is not compatible with the asset spec product type.
-     * (E.g. Gmail, dynamic remarketing, etc.)
+     * (For example, Gmail, dynamic remarketing, etc.)
      * 
* * MEDIA_BUNDLE_NOT_COMPATIBLE_TO_PRODUCT_TYPE = 25; @@ -599,7 +599,7 @@ public enum MediaUploadError /** *
      * The media bundle is not compatible with the asset spec product type.
-     * (E.g. Gmail, dynamic remarketing, etc.)
+     * (For example, Gmail, dynamic remarketing, etc.)
      * 
* * MEDIA_BUNDLE_NOT_COMPATIBLE_TO_PRODUCT_TYPE = 25; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MultiplierErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MultiplierErrorEnum.java index bfed857020..1145e0edfc 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MultiplierErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/MultiplierErrorEnum.java @@ -145,8 +145,8 @@ public enum MultiplierError MULTIPLIER_NOT_ALLOWED_FOR_BIDDING_STRATEGY(5), /** *
-     * A multiplier cannot be set when there is no base bid (e.g., content max
-     * cpc)
+     * A multiplier cannot be set when there is no base bid (for example,
+     * content max cpc)
      * 
* * MULTIPLIER_NOT_ALLOWED_WHEN_BASE_BID_IS_MISSING = 6; @@ -202,7 +202,8 @@ public enum MultiplierError BID_LESS_THAN_MIN_ALLOWED_BID_WITH_MULTIPLIER(12), /** *
-     * Multiplier type (cpc vs. cpm) needs to match campaign's bidding strategy
+     * Multiplier type (cpc versus cpm) needs to match campaign's bidding
+     * strategy
      * 
* * MULTIPLIER_AND_BIDDING_STRATEGY_TYPE_MISMATCH = 13; @@ -261,8 +262,8 @@ public enum MultiplierError public static final int MULTIPLIER_NOT_ALLOWED_FOR_BIDDING_STRATEGY_VALUE = 5; /** *
-     * A multiplier cannot be set when there is no base bid (e.g., content max
-     * cpc)
+     * A multiplier cannot be set when there is no base bid (for example,
+     * content max cpc)
      * 
* * MULTIPLIER_NOT_ALLOWED_WHEN_BASE_BID_IS_MISSING = 6; @@ -318,7 +319,8 @@ public enum MultiplierError public static final int BID_LESS_THAN_MIN_ALLOWED_BID_WITH_MULTIPLIER_VALUE = 12; /** *
-     * Multiplier type (cpc vs. cpm) needs to match campaign's bidding strategy
+     * Multiplier type (cpc versus cpm) needs to match campaign's bidding
+     * strategy
      * 
* * MULTIPLIER_AND_BIDDING_STRATEGY_TYPE_MISMATCH = 13; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorEnum.java index ac81a6a7fa..69f40bbacf 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorEnum.java @@ -347,8 +347,8 @@ public enum OfflineUserDataJobError ATTRIBUTES_NOT_APPLICABLE_FOR_CUSTOMER_MATCH_USER_LIST(34), /** *
-     * Lifetime value bucket must be a number from 1-10, except for remove
-     * operation where 0 will be accepted.
+     * Lifetime bucket value must be a number from 0 to 10; 0 is only accepted
+     * for remove operations
      * 
* * LIFETIME_VALUE_BUCKET_NOT_IN_RANGE = 35; @@ -398,6 +398,40 @@ public enum OfflineUserDataJobError * INVALID_ITEM_ID = 40; */ INVALID_ITEM_ID(40), + /** + *
+     * First purchase date time cannot be greater than the last purchase date
+     * time.
+     * 
+ * + * FIRST_PURCHASE_TIME_GREATER_THAN_LAST_PURCHASE_TIME = 42; + */ + FIRST_PURCHASE_TIME_GREATER_THAN_LAST_PURCHASE_TIME(42), + /** + *
+     * Provided lifecycle stage is invalid.
+     * 
+ * + * INVALID_LIFECYCLE_STAGE = 43; + */ + INVALID_LIFECYCLE_STAGE(43), + /** + *
+     * The event value of the Customer Match user attribute is invalid.
+     * 
+ * + * INVALID_EVENT_VALUE = 44; + */ + INVALID_EVENT_VALUE(44), + /** + *
+     * All the fields are not present in the EventAttribute of the Customer
+     * Match.
+     * 
+ * + * EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED = 45; + */ + EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED(45), UNRECOGNIZED(-1), ; @@ -653,8 +687,8 @@ public enum OfflineUserDataJobError public static final int ATTRIBUTES_NOT_APPLICABLE_FOR_CUSTOMER_MATCH_USER_LIST_VALUE = 34; /** *
-     * Lifetime value bucket must be a number from 1-10, except for remove
-     * operation where 0 will be accepted.
+     * Lifetime bucket value must be a number from 0 to 10; 0 is only accepted
+     * for remove operations
      * 
* * LIFETIME_VALUE_BUCKET_NOT_IN_RANGE = 35; @@ -704,6 +738,40 @@ public enum OfflineUserDataJobError * INVALID_ITEM_ID = 40; */ public static final int INVALID_ITEM_ID_VALUE = 40; + /** + *
+     * First purchase date time cannot be greater than the last purchase date
+     * time.
+     * 
+ * + * FIRST_PURCHASE_TIME_GREATER_THAN_LAST_PURCHASE_TIME = 42; + */ + public static final int FIRST_PURCHASE_TIME_GREATER_THAN_LAST_PURCHASE_TIME_VALUE = 42; + /** + *
+     * Provided lifecycle stage is invalid.
+     * 
+ * + * INVALID_LIFECYCLE_STAGE = 43; + */ + public static final int INVALID_LIFECYCLE_STAGE_VALUE = 43; + /** + *
+     * The event value of the Customer Match user attribute is invalid.
+     * 
+ * + * INVALID_EVENT_VALUE = 44; + */ + public static final int INVALID_EVENT_VALUE_VALUE = 44; + /** + *
+     * All the fields are not present in the EventAttribute of the Customer
+     * Match.
+     * 
+ * + * EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED = 45; + */ + public static final int EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED_VALUE = 45; public final int getNumber() { @@ -766,6 +834,10 @@ public static OfflineUserDataJobError forNumber(int value) { case 38: return LAST_PURCHASE_TIME_LESS_THAN_ACQUISITION_TIME; case 39: return CUSTOMER_IDENTIFIER_NOT_ALLOWED; case 40: return INVALID_ITEM_ID; + case 42: return FIRST_PURCHASE_TIME_GREATER_THAN_LAST_PURCHASE_TIME; + case 43: return INVALID_LIFECYCLE_STAGE; + case 44: return INVALID_EVENT_VALUE; + case 45: return EVENT_ATTRIBUTE_ALL_FIELDS_ARE_REQUIRED; default: return null; } } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorProto.java index 2a434e1d80..ecc248ce46 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/OfflineUserDataJobErrorProto.java @@ -30,8 +30,8 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\nAgoogle/ads/googleads/v11/errors/offlin" + "e_user_data_job_error.proto\022\037google.ads." + - "googleads.v11.errors\"\262\t\n\033OfflineUserData" + - "JobErrorEnum\"\222\t\n\027OfflineUserDataJobError" + + "googleads.v11.errors\"\316\n\n\033OfflineUserData" + + "JobErrorEnum\"\256\n\n\027OfflineUserDataJobError" + "\022\017\n\013UNSPECIFIED\020\000\022\013\n\007UNKNOWN\020\001\022\030\n\024INVALI" + "D_USER_LIST_ID\020\003\022\032\n\026INVALID_USER_LIST_TY" + "PE\020\004\022 \n\034NOT_ON_ALLOWLIST_FOR_USER_ID\020!\022 " + @@ -60,14 +60,18 @@ public static void registerAllExtensions( "BUTES\020$\022\033\n\027FUTURE_TIME_NOT_ALLOWED\020%\0221\n-" + "LAST_PURCHASE_TIME_LESS_THAN_ACQUISITION" + "_TIME\020&\022#\n\037CUSTOMER_IDENTIFIER_NOT_ALLOW" + - "ED\020\'\022\023\n\017INVALID_ITEM_ID\020(B\374\001\n#com.google" + - ".ads.googleads.v11.errorsB\034OfflineUserDa" + - "taJobErrorProtoP\001ZEgoogle.golang.org/gen" + - "proto/googleapis/ads/googleads/v11/error" + - "s;errors\242\002\003GAA\252\002\037Google.Ads.GoogleAds.V1" + - "1.Errors\312\002\037Google\\Ads\\GoogleAds\\V11\\Erro" + - "rs\352\002#Google::Ads::GoogleAds::V11::Errors" + - "b\006proto3" + "ED\020\'\022\023\n\017INVALID_ITEM_ID\020(\0227\n3FIRST_PURCH" + + "ASE_TIME_GREATER_THAN_LAST_PURCHASE_TIME" + + "\020*\022\033\n\027INVALID_LIFECYCLE_STAGE\020+\022\027\n\023INVAL" + + "ID_EVENT_VALUE\020,\022+\n\'EVENT_ATTRIBUTE_ALL_" + + "FIELDS_ARE_REQUIRED\020-B\374\001\n#com.google.ads" + + ".googleads.v11.errorsB\034OfflineUserDataJo" + + "bErrorProtoP\001ZEgoogle.golang.org/genprot" + + "o/googleapis/ads/googleads/v11/errors;er" + + "rors\242\002\003GAA\252\002\037Google.Ads.GoogleAds.V11.Er" + + "rors\312\002\037Google\\Ads\\GoogleAds\\V11\\Errors\352\002" + + "#Google::Ads::GoogleAds::V11::Errorsb\006pr" + + "oto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/QueryErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/QueryErrorEnum.java index a5fb7bf662..42ba5d119f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/QueryErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/QueryErrorEnum.java @@ -145,7 +145,7 @@ public enum QueryError BAD_FIELD_NAME(12), /** *
-     * Limit value is invalid (i.e. not a number)
+     * Limit value is invalid (for example, not a number)
      * 
* * BAD_LIMIT_VALUE = 15; @@ -327,8 +327,8 @@ public enum QueryError MISALIGNED_DATE_FOR_FILTER(64), /** *
-     * Value passed was not a string when it should have been. I.e., it was a
-     * number or unquoted literal.
+     * Value passed was not a string when it should have been. For example, it
+     * was a number or unquoted literal.
      * 
* * INVALID_STRING_VALUE = 57; @@ -622,7 +622,7 @@ public enum QueryError public static final int BAD_FIELD_NAME_VALUE = 12; /** *
-     * Limit value is invalid (i.e. not a number)
+     * Limit value is invalid (for example, not a number)
      * 
* * BAD_LIMIT_VALUE = 15; @@ -804,8 +804,8 @@ public enum QueryError public static final int MISALIGNED_DATE_FOR_FILTER_VALUE = 64; /** *
-     * Value passed was not a string when it should have been. I.e., it was a
-     * number or unquoted literal.
+     * Value passed was not a string when it should have been. For example, it
+     * was a number or unquoted literal.
      * 
* * INVALID_STRING_VALUE = 57; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/RecommendationErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/RecommendationErrorEnum.java index e87b570bb7..43c3dadcd6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/RecommendationErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/RecommendationErrorEnum.java @@ -113,8 +113,8 @@ public enum RecommendationError UNKNOWN(1), /** *
-     * The specified budget amount is too low e.g. lower than minimum currency
-     * unit or lower than ad group minimum cost-per-click.
+     * The specified budget amount is too low for example, lower than minimum
+     * currency unit or lower than ad group minimum cost-per-click.
      * 
* * BUDGET_AMOUNT_TOO_SMALL = 2; @@ -130,8 +130,8 @@ public enum RecommendationError BUDGET_AMOUNT_TOO_LARGE(3), /** *
-     * The specified budget amount is not a valid amount. e.g. not a multiple
-     * of minimum currency unit.
+     * The specified budget amount is not a valid amount, for example, not a
+     * multiple of minimum currency unit.
      * 
* * INVALID_BUDGET_AMOUNT = 4; @@ -147,8 +147,8 @@ public enum RecommendationError POLICY_ERROR(5), /** *
-     * The specified bid amount is not valid. e.g. too many fractional digits,
-     * or negative amount.
+     * The specified bid amount is not valid, for example, too many fractional
+     * digits, or negative amount.
      * 
* * INVALID_BID_AMOUNT = 6; @@ -248,8 +248,8 @@ public enum RecommendationError public static final int UNKNOWN_VALUE = 1; /** *
-     * The specified budget amount is too low e.g. lower than minimum currency
-     * unit or lower than ad group minimum cost-per-click.
+     * The specified budget amount is too low for example, lower than minimum
+     * currency unit or lower than ad group minimum cost-per-click.
      * 
* * BUDGET_AMOUNT_TOO_SMALL = 2; @@ -265,8 +265,8 @@ public enum RecommendationError public static final int BUDGET_AMOUNT_TOO_LARGE_VALUE = 3; /** *
-     * The specified budget amount is not a valid amount. e.g. not a multiple
-     * of minimum currency unit.
+     * The specified budget amount is not a valid amount, for example, not a
+     * multiple of minimum currency unit.
      * 
* * INVALID_BUDGET_AMOUNT = 4; @@ -282,8 +282,8 @@ public enum RecommendationError public static final int POLICY_ERROR_VALUE = 5; /** *
-     * The specified bid amount is not valid. e.g. too many fractional digits,
-     * or negative amount.
+     * The specified bid amount is not valid, for example, too many fractional
+     * digits, or negative amount.
      * 
* * INVALID_BID_AMOUNT = 6; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/SettingErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/SettingErrorEnum.java index d580070d7c..9651c956d8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/SettingErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/SettingErrorEnum.java @@ -210,7 +210,7 @@ public enum SettingError /** *
      * Switching from observation setting to targeting setting is not allowed
-     * for Customer Match lists. Please see
+     * for Customer Match lists. See
      * https://support.google.com/google-ads/answer/6299717.
      * 
* @@ -335,7 +335,7 @@ public enum SettingError /** *
      * Switching from observation setting to targeting setting is not allowed
-     * for Customer Match lists. Please see
+     * for Customer Match lists. See
      * https://support.google.com/google-ads/answer/6299717.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UrlFieldErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UrlFieldErrorEnum.java index d100fbee64..91ee281928 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UrlFieldErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UrlFieldErrorEnum.java @@ -129,9 +129,9 @@ public enum UrlFieldError INVALID_TAG_IN_TRACKING_URL_TEMPLATE(3), /** *
-     * The tracking url template must contain at least one tag (e.g. {lpurl}),
-     * This applies only to tracking url template associated with website ads or
-     * product ads.
+     * The tracking url template must contain at least one tag (for example,
+     * {lpurl}), This applies only to tracking url template associated with
+     * website ads or product ads.
      * 
* * MISSING_TRACKING_URL_TEMPLATE_TAG = 4; @@ -182,7 +182,7 @@ public enum UrlFieldError /** *
      * The tracking url template contains nested occurrences of the same
-     * conditional tag (i.e. {ifmobile:{ifmobile:x}}).
+     * conditional tag (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_TRACKING_URL_TEMPLATE_TAG = 10; @@ -207,7 +207,7 @@ public enum UrlFieldError /** *
      * The final url contains nested occurrences of the same conditional tag
-     * (i.e. {ifmobile:{ifmobile:x}}).
+     * (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_FINAL_URL_TAG = 13; @@ -273,7 +273,7 @@ public enum UrlFieldError /** *
      * The final mobile url contains nested occurrences of the same conditional
-     * tag (i.e. {ifmobile:{ifmobile:x}}).
+     * tag (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_FINAL_MOBILE_URL_TAG = 21; @@ -339,7 +339,7 @@ public enum UrlFieldError /** *
      * The final app url contains nested occurrences of the same conditional tag
-     * (i.e. {ifmobile:{ifmobile:x}}).
+     * (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_FINAL_APP_URL_TAG = 29; @@ -363,7 +363,8 @@ public enum UrlFieldError INVALID_OSTYPE(31), /** *
-     * The protocol given for an app url is not valid. (E.g. "android-app://")
+     * The protocol given for an app url is not valid. (For example,
+     * "android-app://")
      * 
* * INVALID_PROTOCOL_FOR_APP_URL = 32; @@ -413,7 +414,7 @@ public enum UrlFieldError /** *
      * The custom parameter contains nested occurrences of the same conditional
-     * tag (i.e. {ifmobile:{ifmobile:x}}).
+     * tag (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_URL_CUSTOM_PARAMETER_TAG = 42; @@ -461,7 +462,7 @@ public enum UrlFieldError INVALID_TAG_IN_URL(46), /** *
-     * The url must contain at least one tag (e.g. {lpurl}).
+     * The url must contain at least one tag (for example, {lpurl}).
      * 
* * MISSING_URL_TAG = 47; @@ -502,8 +503,8 @@ public enum UrlFieldError INVALID_TAG_IN_FINAL_URL_SUFFIX(51), /** *
-     * The top level domain is invalid, e.g. not a public top level domain
-     * listed in publicsuffix.org.
+     * The top level domain is invalid, for example, not a public top level
+     * domain listed in publicsuffix.org.
      * 
* * INVALID_TOP_LEVEL_DOMAIN = 53; @@ -586,9 +587,9 @@ public enum UrlFieldError public static final int INVALID_TAG_IN_TRACKING_URL_TEMPLATE_VALUE = 3; /** *
-     * The tracking url template must contain at least one tag (e.g. {lpurl}),
-     * This applies only to tracking url template associated with website ads or
-     * product ads.
+     * The tracking url template must contain at least one tag (for example,
+     * {lpurl}), This applies only to tracking url template associated with
+     * website ads or product ads.
      * 
* * MISSING_TRACKING_URL_TEMPLATE_TAG = 4; @@ -639,7 +640,7 @@ public enum UrlFieldError /** *
      * The tracking url template contains nested occurrences of the same
-     * conditional tag (i.e. {ifmobile:{ifmobile:x}}).
+     * conditional tag (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_TRACKING_URL_TEMPLATE_TAG = 10; @@ -664,7 +665,7 @@ public enum UrlFieldError /** *
      * The final url contains nested occurrences of the same conditional tag
-     * (i.e. {ifmobile:{ifmobile:x}}).
+     * (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_FINAL_URL_TAG = 13; @@ -730,7 +731,7 @@ public enum UrlFieldError /** *
      * The final mobile url contains nested occurrences of the same conditional
-     * tag (i.e. {ifmobile:{ifmobile:x}}).
+     * tag (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_FINAL_MOBILE_URL_TAG = 21; @@ -796,7 +797,7 @@ public enum UrlFieldError /** *
      * The final app url contains nested occurrences of the same conditional tag
-     * (i.e. {ifmobile:{ifmobile:x}}).
+     * (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_FINAL_APP_URL_TAG = 29; @@ -820,7 +821,8 @@ public enum UrlFieldError public static final int INVALID_OSTYPE_VALUE = 31; /** *
-     * The protocol given for an app url is not valid. (E.g. "android-app://")
+     * The protocol given for an app url is not valid. (For example,
+     * "android-app://")
      * 
* * INVALID_PROTOCOL_FOR_APP_URL = 32; @@ -870,7 +872,7 @@ public enum UrlFieldError /** *
      * The custom parameter contains nested occurrences of the same conditional
-     * tag (i.e. {ifmobile:{ifmobile:x}}).
+     * tag (for example, {ifmobile:{ifmobile:x}}).
      * 
* * REDUNDANT_NESTED_URL_CUSTOM_PARAMETER_TAG = 42; @@ -918,7 +920,7 @@ public enum UrlFieldError public static final int INVALID_TAG_IN_URL_VALUE = 46; /** *
-     * The url must contain at least one tag (e.g. {lpurl}).
+     * The url must contain at least one tag (for example, {lpurl}).
      * 
* * MISSING_URL_TAG = 47; @@ -959,8 +961,8 @@ public enum UrlFieldError public static final int INVALID_TAG_IN_FINAL_URL_SUFFIX_VALUE = 51; /** *
-     * The top level domain is invalid, e.g. not a public top level domain
-     * listed in publicsuffix.org.
+     * The top level domain is invalid, for example, not a public top level
+     * domain listed in publicsuffix.org.
      * 
* * INVALID_TOP_LEVEL_DOMAIN = 53; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UserListErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UserListErrorEnum.java index f9e969a7dc..6d920ee1e8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UserListErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/UserListErrorEnum.java @@ -295,7 +295,7 @@ public enum UserListError /** *
      * Advertiser needs to be on the allow-list to use remarketing lists created
-     * from advertiser uploaded data (e.g., Customer Match lists).
+     * from advertiser uploaded data (for example, Customer Match lists).
      * 
* * ADVERTISER_NOT_ON_ALLOWLIST_FOR_USING_UPLOADED_DATA = 37; @@ -529,7 +529,7 @@ public enum UserListError /** *
      * Advertiser needs to be on the allow-list to use remarketing lists created
-     * from advertiser uploaded data (e.g., Customer Match lists).
+     * from advertiser uploaded data (for example, Customer Match lists).
      * 
* * ADVERTISER_NOT_ON_ALLOWLIST_FOR_USING_UPLOADED_DATA = 37; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/YoutubeVideoRegistrationErrorEnum.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/YoutubeVideoRegistrationErrorEnum.java index d4d1cf22b5..88fe1ca9f4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/YoutubeVideoRegistrationErrorEnum.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/errors/YoutubeVideoRegistrationErrorEnum.java @@ -121,7 +121,7 @@ public enum YoutubeVideoRegistrationError VIDEO_NOT_FOUND(2), /** *
-     * Video to be registered is not accessible (e.g. private).
+     * Video to be registered is not accessible (for example, private).
      * 
* * VIDEO_NOT_ACCESSIBLE = 3; @@ -129,7 +129,7 @@ public enum YoutubeVideoRegistrationError VIDEO_NOT_ACCESSIBLE(3), /** *
-     * Video to be registered is not eligible (e.g. mature content).
+     * Video to be registered is not eligible (for example, mature content).
      * 
* * VIDEO_NOT_ELIGIBLE = 4; @@ -164,7 +164,7 @@ public enum YoutubeVideoRegistrationError public static final int VIDEO_NOT_FOUND_VALUE = 2; /** *
-     * Video to be registered is not accessible (e.g. private).
+     * Video to be registered is not accessible (for example, private).
      * 
* * VIDEO_NOT_ACCESSIBLE = 3; @@ -172,7 +172,7 @@ public enum YoutubeVideoRegistrationError public static final int VIDEO_NOT_ACCESSIBLE_VALUE = 3; /** *
-     * Video to be registered is not eligible (e.g. mature content).
+     * Video to be registered is not eligible (for example, mature content).
      * 
* * VIDEO_NOT_ELIGIBLE = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategy.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategy.java index 20a19c466a..aed24b52c0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategy.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategy.java @@ -1889,8 +1889,8 @@ public interface TargetImpressionShareOrBuilder extends /** *
-     * The desired fraction of ads to be shown in the targeted location in
-     * micros. E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in
+     * micros. For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 2; @@ -1899,8 +1899,8 @@ public interface TargetImpressionShareOrBuilder extends boolean hasLocationFractionMicros(); /** *
-     * The desired fraction of ads to be shown in the targeted location in
-     * micros. E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in
+     * micros. For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 2; @@ -2066,8 +2066,8 @@ private TargetImpressionShare( private long locationFractionMicros_; /** *
-     * The desired fraction of ads to be shown in the targeted location in
-     * micros. E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in
+     * micros. For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 2; @@ -2079,8 +2079,8 @@ public boolean hasLocationFractionMicros() { } /** *
-     * The desired fraction of ads to be shown in the targeted location in
-     * micros. E.g. 1% equals 10,000.
+     * The chosen fraction of ads to be shown in the targeted location in
+     * micros. For example, 1% equals 10,000.
      * 
* * optional int64 location_fraction_micros = 2; @@ -2562,8 +2562,8 @@ public Builder clearLocation() { private long locationFractionMicros_ ; /** *
-       * The desired fraction of ads to be shown in the targeted location in
-       * micros. E.g. 1% equals 10,000.
+       * The chosen fraction of ads to be shown in the targeted location in
+       * micros. For example, 1% equals 10,000.
        * 
* * optional int64 location_fraction_micros = 2; @@ -2575,8 +2575,8 @@ public boolean hasLocationFractionMicros() { } /** *
-       * The desired fraction of ads to be shown in the targeted location in
-       * micros. E.g. 1% equals 10,000.
+       * The chosen fraction of ads to be shown in the targeted location in
+       * micros. For example, 1% equals 10,000.
        * 
* * optional int64 location_fraction_micros = 2; @@ -2588,8 +2588,8 @@ public long getLocationFractionMicros() { } /** *
-       * The desired fraction of ads to be shown in the targeted location in
-       * micros. E.g. 1% equals 10,000.
+       * The chosen fraction of ads to be shown in the targeted location in
+       * micros. For example, 1% equals 10,000.
        * 
* * optional int64 location_fraction_micros = 2; @@ -2604,8 +2604,8 @@ public Builder setLocationFractionMicros(long value) { } /** *
-       * The desired fraction of ads to be shown in the targeted location in
-       * micros. E.g. 1% equals 10,000.
+       * The chosen fraction of ads to be shown in the targeted location in
+       * micros. For example, 1% equals 10,000.
        * 
* * optional int64 location_fraction_micros = 2; @@ -2739,7 +2739,7 @@ public interface TargetRoasOrBuilder extends /** *
-     * Output only. The desired revenue (based on conversion data) per unit of spend.
+     * Output only. The chosen revenue (based on conversion data) per unit of spend.
      * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2748,7 +2748,7 @@ public interface TargetRoasOrBuilder extends boolean hasTargetRoas(); /** *
-     * Output only. The desired revenue (based on conversion data) per unit of spend.
+     * Output only. The chosen revenue (based on conversion data) per unit of spend.
      * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2851,7 +2851,7 @@ private TargetRoas( private double targetRoas_; /** *
-     * Output only. The desired revenue (based on conversion data) per unit of spend.
+     * Output only. The chosen revenue (based on conversion data) per unit of spend.
      * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2863,7 +2863,7 @@ public boolean hasTargetRoas() { } /** *
-     * Output only. The desired revenue (based on conversion data) per unit of spend.
+     * Output only. The chosen revenue (based on conversion data) per unit of spend.
      * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3198,7 +3198,7 @@ public Builder mergeFrom( private double targetRoas_ ; /** *
-       * Output only. The desired revenue (based on conversion data) per unit of spend.
+       * Output only. The chosen revenue (based on conversion data) per unit of spend.
        * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3210,7 +3210,7 @@ public boolean hasTargetRoas() { } /** *
-       * Output only. The desired revenue (based on conversion data) per unit of spend.
+       * Output only. The chosen revenue (based on conversion data) per unit of spend.
        * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3222,7 +3222,7 @@ public double getTargetRoas() { } /** *
-       * Output only. The desired revenue (based on conversion data) per unit of spend.
+       * Output only. The chosen revenue (based on conversion data) per unit of spend.
        * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3237,7 +3237,7 @@ public Builder setTargetRoas(double value) { } /** *
-       * Output only. The desired revenue (based on conversion data) per unit of spend.
+       * Output only. The chosen revenue (based on conversion data) per unit of spend.
        * 
* * optional double target_roas = 1 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4463,7 +4463,7 @@ public com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetCp public static final int TARGET_IMPRESSION_SHARE_FIELD_NUMBER = 10; /** *
-   * Output only. A bidding strategy that automatically optimizes towards a desired
+   * Output only. A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -4476,7 +4476,7 @@ public boolean hasTargetImpressionShare() { } /** *
-   * Output only. A bidding strategy that automatically optimizes towards a desired
+   * Output only. A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -4492,7 +4492,7 @@ public com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetIm } /** *
-   * Output only. A bidding strategy that automatically optimizes towards a desired
+   * Output only. A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -6205,7 +6205,7 @@ public com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetCp com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetImpressionShare, com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetImpressionShare.Builder, com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetImpressionShareOrBuilder> targetImpressionShareBuilder_; /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6218,7 +6218,7 @@ public boolean hasTargetImpressionShare() { } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6241,7 +6241,7 @@ public com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetIm } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6262,7 +6262,7 @@ public Builder setTargetImpressionShare(com.google.ads.googleads.v11.resources.A } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6281,7 +6281,7 @@ public Builder setTargetImpressionShare( } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6309,7 +6309,7 @@ public Builder mergeTargetImpressionShare(com.google.ads.googleads.v11.resources } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6333,7 +6333,7 @@ public Builder clearTargetImpressionShare() { } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6344,7 +6344,7 @@ public com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetIm } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -6363,7 +6363,7 @@ public com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetIm } /** *
-     * Output only. A bidding strategy that automatically optimizes towards a desired
+     * Output only. A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategyOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategyOrBuilder.java index 8eea1948d2..d19f853fba 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategyOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccessibleBiddingStrategyOrBuilder.java @@ -202,7 +202,7 @@ public interface AccessibleBiddingStrategyOrBuilder extends /** *
-   * Output only. A bidding strategy that automatically optimizes towards a desired
+   * Output only. A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -212,7 +212,7 @@ public interface AccessibleBiddingStrategyOrBuilder extends boolean hasTargetImpressionShare(); /** *
-   * Output only. A bidding strategy that automatically optimizes towards a desired
+   * Output only. A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -222,7 +222,7 @@ public interface AccessibleBiddingStrategyOrBuilder extends com.google.ads.googleads.v11.resources.AccessibleBiddingStrategy.TargetImpressionShare getTargetImpressionShare(); /** *
-   * Output only. A bidding strategy that automatically optimizes towards a desired
+   * Output only. A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudget.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudget.java index 1517b516f6..034f0d6c63 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudget.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudget.java @@ -11,8 +11,8 @@ * approval, if any, are found in 'pending_proposal'. Effective details about * the budget are found in fields prefixed 'approved_', 'adjusted_' and those * without a prefix. Since some effective details may differ from what the user - * had originally requested (e.g. spending limit), these differences are - * juxtaposed via 'proposed_', 'approved_', and possibly 'adjusted_' fields. + * had originally requested (for example, spending limit), these differences are + * juxtaposed through 'proposed_', 'approved_', and possibly 'adjusted_' fields. * This resource is mutated using AccountBudgetProposal and cannot be mutated * directly. A budget may have at most one pending proposal at any given time. * It is read through pending_proposal. @@ -282,7 +282,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends /** *
-     * Output only. The type of this proposal, e.g. END to end the budget associated
+     * Output only. The type of this proposal, for example, END to end the budget associated
      * with this proposal.
      * 
* @@ -292,7 +292,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends int getProposalTypeValue(); /** *
-     * Output only. The type of this proposal, e.g. END to end the budget associated
+     * Output only. The type of this proposal, for example, END to end the budget associated
      * with this proposal.
      * 
* @@ -483,7 +483,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends /** *
-     * Output only. The end time as a well-defined type, e.g. FOREVER.
+     * Output only. The end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -492,7 +492,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends boolean hasEndTimeType(); /** *
-     * Output only. The end time as a well-defined type, e.g. FOREVER.
+     * Output only. The end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -501,7 +501,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends int getEndTimeTypeValue(); /** *
-     * Output only. The end time as a well-defined type, e.g. FOREVER.
+     * Output only. The end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -532,7 +532,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends /** *
-     * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The spending limit as a well-defined type, for example, INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -541,7 +541,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends boolean hasSpendingLimitType(); /** *
-     * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The spending limit as a well-defined type, for example, INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -550,7 +550,7 @@ public interface PendingAccountBudgetProposalOrBuilder extends int getSpendingLimitTypeValue(); /** *
-     * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The spending limit as a well-defined type, for example, INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -870,7 +870,7 @@ public java.lang.String getAccountBudgetProposal() { private int proposalType_; /** *
-     * Output only. The type of this proposal, e.g. END to end the budget associated
+     * Output only. The type of this proposal, for example, END to end the budget associated
      * with this proposal.
      * 
* @@ -882,7 +882,7 @@ public java.lang.String getAccountBudgetProposal() { } /** *
-     * Output only. The type of this proposal, e.g. END to end the budget associated
+     * Output only. The type of this proposal, for example, END to end the budget associated
      * with this proposal.
      * 
* @@ -1258,7 +1258,7 @@ public java.lang.String getEndDateTime() { public static final int END_TIME_TYPE_FIELD_NUMBER = 6; /** *
-     * Output only. The end time as a well-defined type, e.g. FOREVER.
+     * Output only. The end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1269,7 +1269,7 @@ public boolean hasEndTimeType() { } /** *
-     * Output only. The end time as a well-defined type, e.g. FOREVER.
+     * Output only. The end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1283,7 +1283,7 @@ public int getEndTimeTypeValue() { } /** *
-     * Output only. The end time as a well-defined type, e.g. FOREVER.
+     * Output only. The end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1333,7 +1333,7 @@ public long getSpendingLimitMicros() { public static final int SPENDING_LIMIT_TYPE_FIELD_NUMBER = 8; /** *
-     * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The spending limit as a well-defined type, for example, INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1344,7 +1344,7 @@ public boolean hasSpendingLimitType() { } /** *
-     * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The spending limit as a well-defined type, for example, INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1358,7 +1358,7 @@ public int getSpendingLimitTypeValue() { } /** *
-     * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The spending limit as a well-defined type, for example, INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2118,7 +2118,7 @@ public Builder setAccountBudgetProposalBytes( private int proposalType_ = 0; /** *
-       * Output only. The type of this proposal, e.g. END to end the budget associated
+       * Output only. The type of this proposal, for example, END to end the budget associated
        * with this proposal.
        * 
* @@ -2130,7 +2130,7 @@ public Builder setAccountBudgetProposalBytes( } /** *
-       * Output only. The type of this proposal, e.g. END to end the budget associated
+       * Output only. The type of this proposal, for example, END to end the budget associated
        * with this proposal.
        * 
* @@ -2146,7 +2146,7 @@ public Builder setProposalTypeValue(int value) { } /** *
-       * Output only. The type of this proposal, e.g. END to end the budget associated
+       * Output only. The type of this proposal, for example, END to end the budget associated
        * with this proposal.
        * 
* @@ -2161,7 +2161,7 @@ public com.google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountB } /** *
-       * Output only. The type of this proposal, e.g. END to end the budget associated
+       * Output only. The type of this proposal, for example, END to end the budget associated
        * with this proposal.
        * 
* @@ -2180,7 +2180,7 @@ public Builder setProposalType(com.google.ads.googleads.v11.enums.AccountBudgetP } /** *
-       * Output only. The type of this proposal, e.g. END to end the budget associated
+       * Output only. The type of this proposal, for example, END to end the budget associated
        * with this proposal.
        * 
* @@ -2864,7 +2864,7 @@ public Builder setEndDateTimeBytes( /** *
-       * Output only. The end time as a well-defined type, e.g. FOREVER.
+       * Output only. The end time as a well-defined type, for example, FOREVER.
        * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2876,7 +2876,7 @@ public boolean hasEndTimeType() { } /** *
-       * Output only. The end time as a well-defined type, e.g. FOREVER.
+       * Output only. The end time as a well-defined type, for example, FOREVER.
        * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2891,7 +2891,7 @@ public int getEndTimeTypeValue() { } /** *
-       * Output only. The end time as a well-defined type, e.g. FOREVER.
+       * Output only. The end time as a well-defined type, for example, FOREVER.
        * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2906,7 +2906,7 @@ public Builder setEndTimeTypeValue(int value) { } /** *
-       * Output only. The end time as a well-defined type, e.g. FOREVER.
+       * Output only. The end time as a well-defined type, for example, FOREVER.
        * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2924,7 +2924,7 @@ public com.google.ads.googleads.v11.enums.TimeTypeEnum.TimeType getEndTimeType() } /** *
-       * Output only. The end time as a well-defined type, e.g. FOREVER.
+       * Output only. The end time as a well-defined type, for example, FOREVER.
        * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2942,7 +2942,7 @@ public Builder setEndTimeType(com.google.ads.googleads.v11.enums.TimeTypeEnum.Ti } /** *
-       * Output only. The end time as a well-defined type, e.g. FOREVER.
+       * Output only. The end time as a well-defined type, for example, FOREVER.
        * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType end_time_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3020,7 +3020,7 @@ public Builder clearSpendingLimitMicros() { /** *
-       * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+       * Output only. The spending limit as a well-defined type, for example, INFINITE.
        * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3032,7 +3032,7 @@ public boolean hasSpendingLimitType() { } /** *
-       * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+       * Output only. The spending limit as a well-defined type, for example, INFINITE.
        * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3047,7 +3047,7 @@ public int getSpendingLimitTypeValue() { } /** *
-       * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+       * Output only. The spending limit as a well-defined type, for example, INFINITE.
        * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3062,7 +3062,7 @@ public Builder setSpendingLimitTypeValue(int value) { } /** *
-       * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+       * Output only. The spending limit as a well-defined type, for example, INFINITE.
        * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3080,7 +3080,7 @@ public com.google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitTyp } /** *
-       * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+       * Output only. The spending limit as a well-defined type, for example, INFINITE.
        * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3098,7 +3098,7 @@ public Builder setSpendingLimitType(com.google.ads.googleads.v11.enums.SpendingL } /** *
-       * Output only. The spending limit as a well-defined type, e.g. INFINITE.
+       * Output only. The spending limit as a well-defined type, for example, INFINITE.
        * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType spending_limit_type = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3985,7 +3985,7 @@ public java.lang.String getProposedEndDateTime() { public static final int PROPOSED_END_TIME_TYPE_FIELD_NUMBER = 9; /** *
-   * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+   * Output only. The proposed end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3996,7 +3996,7 @@ public boolean hasProposedEndTimeType() { } /** *
-   * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+   * Output only. The proposed end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4010,7 +4010,7 @@ public int getProposedEndTimeTypeValue() { } /** *
-   * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+   * Output only. The proposed end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4093,7 +4093,7 @@ public java.lang.String getApprovedEndDateTime() { public static final int APPROVED_END_TIME_TYPE_FIELD_NUMBER = 11; /** *
-   * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4104,7 +4104,7 @@ public boolean hasApprovedEndTimeType() { } /** *
-   * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4118,7 +4118,7 @@ public int getApprovedEndTimeTypeValue() { } /** *
-   * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4168,7 +4168,8 @@ public long getProposedSpendingLimitMicros() { public static final int PROPOSED_SPENDING_LIMIT_TYPE_FIELD_NUMBER = 13; /** *
-   * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4179,7 +4180,8 @@ public boolean hasProposedSpendingLimitType() { } /** *
-   * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4193,7 +4195,8 @@ public int getProposedSpendingLimitTypeValue() { } /** *
-   * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4247,8 +4250,9 @@ public long getApprovedSpendingLimitMicros() { public static final int APPROVED_SPENDING_LIMIT_TYPE_FIELD_NUMBER = 15; /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-   * will only be populated if the approved spending limit is INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.  This will only be populated if the approved spending limit is
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4259,8 +4263,9 @@ public boolean hasApprovedSpendingLimitType() { } /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-   * will only be populated if the approved spending limit is INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.  This will only be populated if the approved spending limit is
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4274,8 +4279,9 @@ public int getApprovedSpendingLimitTypeValue() { } /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-   * will only be populated if the approved spending limit is INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.  This will only be populated if the approved spending limit is
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4339,10 +4345,10 @@ public long getAdjustedSpendingLimitMicros() { public static final int ADJUSTED_SPENDING_LIMIT_TYPE_FIELD_NUMBER = 17; /** *
-   * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-   * This will only be populated if the adjusted spending limit is INFINITE,
-   * which is guaranteed to be true if the approved spending limit is
-   * INFINITE.
+   * Output only. The adjusted spending limit as a well-defined type, for example,
+   * INFINITE. This will only be populated if the adjusted spending limit is
+   * INFINITE, which is guaranteed to be true if the approved spending limit
+   * is INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4353,10 +4359,10 @@ public boolean hasAdjustedSpendingLimitType() { } /** *
-   * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-   * This will only be populated if the adjusted spending limit is INFINITE,
-   * which is guaranteed to be true if the approved spending limit is
-   * INFINITE.
+   * Output only. The adjusted spending limit as a well-defined type, for example,
+   * INFINITE. This will only be populated if the adjusted spending limit is
+   * INFINITE, which is guaranteed to be true if the approved spending limit
+   * is INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4370,10 +4376,10 @@ public int getAdjustedSpendingLimitTypeValue() { } /** *
-   * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-   * This will only be populated if the adjusted spending limit is INFINITE,
-   * which is guaranteed to be true if the approved spending limit is
-   * INFINITE.
+   * Output only. The adjusted spending limit as a well-defined type, for example,
+   * INFINITE. This will only be populated if the adjusted spending limit is
+   * INFINITE, which is guaranteed to be true if the approved spending limit
+   * is INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4910,8 +4916,8 @@ protected Builder newBuilderForType( * approval, if any, are found in 'pending_proposal'. Effective details about * the budget are found in fields prefixed 'approved_', 'adjusted_' and those * without a prefix. Since some effective details may differ from what the user - * had originally requested (e.g. spending limit), these differences are - * juxtaposed via 'proposed_', 'approved_', and possibly 'adjusted_' fields. + * had originally requested (for example, spending limit), these differences are + * juxtaposed through 'proposed_', 'approved_', and possibly 'adjusted_' fields. * This resource is mutated using AccountBudgetProposal and cannot be mutated * directly. A budget may have at most one pending proposal at any given time. * It is read through pending_proposal. @@ -6665,7 +6671,7 @@ public Builder setProposedEndDateTimeBytes( /** *
-     * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+     * Output only. The proposed end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6677,7 +6683,7 @@ public boolean hasProposedEndTimeType() { } /** *
-     * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+     * Output only. The proposed end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6692,7 +6698,7 @@ public int getProposedEndTimeTypeValue() { } /** *
-     * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+     * Output only. The proposed end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6707,7 +6713,7 @@ public Builder setProposedEndTimeTypeValue(int value) { } /** *
-     * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+     * Output only. The proposed end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6725,7 +6731,7 @@ public com.google.ads.googleads.v11.enums.TimeTypeEnum.TimeType getProposedEndTi } /** *
-     * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+     * Output only. The proposed end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6743,7 +6749,7 @@ public Builder setProposedEndTimeType(com.google.ads.googleads.v11.enums.TimeTyp } /** *
-     * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+     * Output only. The proposed end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6881,7 +6887,7 @@ public Builder setApprovedEndDateTimeBytes( /** *
-     * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6893,7 +6899,7 @@ public boolean hasApprovedEndTimeType() { } /** *
-     * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6908,7 +6914,7 @@ public int getApprovedEndTimeTypeValue() { } /** *
-     * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6923,7 +6929,7 @@ public Builder setApprovedEndTimeTypeValue(int value) { } /** *
-     * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6941,7 +6947,7 @@ public com.google.ads.googleads.v11.enums.TimeTypeEnum.TimeType getApprovedEndTi } /** *
-     * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6959,7 +6965,7 @@ public Builder setApprovedEndTimeType(com.google.ads.googleads.v11.enums.TimeTyp } /** *
-     * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7037,7 +7043,8 @@ public Builder clearProposedSpendingLimitMicros() { /** *
-     * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7049,7 +7056,8 @@ public boolean hasProposedSpendingLimitType() { } /** *
-     * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7064,7 +7072,8 @@ public int getProposedSpendingLimitTypeValue() { } /** *
-     * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7079,7 +7088,8 @@ public Builder setProposedSpendingLimitTypeValue(int value) { } /** *
-     * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7097,7 +7107,8 @@ public com.google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitTyp } /** *
-     * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7115,7 +7126,8 @@ public Builder setProposedSpendingLimitType(com.google.ads.googleads.v11.enums.S } /** *
-     * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7201,8 +7213,9 @@ public Builder clearApprovedSpendingLimitMicros() { /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-     * will only be populated if the approved spending limit is INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.  This will only be populated if the approved spending limit is
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7214,8 +7227,9 @@ public boolean hasApprovedSpendingLimitType() { } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-     * will only be populated if the approved spending limit is INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.  This will only be populated if the approved spending limit is
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7230,8 +7244,9 @@ public int getApprovedSpendingLimitTypeValue() { } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-     * will only be populated if the approved spending limit is INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.  This will only be populated if the approved spending limit is
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7246,8 +7261,9 @@ public Builder setApprovedSpendingLimitTypeValue(int value) { } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-     * will only be populated if the approved spending limit is INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.  This will only be populated if the approved spending limit is
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7265,8 +7281,9 @@ public com.google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitTyp } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-     * will only be populated if the approved spending limit is INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.  This will only be populated if the approved spending limit is
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7284,8 +7301,9 @@ public Builder setApprovedSpendingLimitType(com.google.ads.googleads.v11.enums.S } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-     * will only be populated if the approved spending limit is INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.  This will only be populated if the approved spending limit is
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7391,10 +7409,10 @@ public Builder clearAdjustedSpendingLimitMicros() { /** *
-     * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-     * This will only be populated if the adjusted spending limit is INFINITE,
-     * which is guaranteed to be true if the approved spending limit is
-     * INFINITE.
+     * Output only. The adjusted spending limit as a well-defined type, for example,
+     * INFINITE. This will only be populated if the adjusted spending limit is
+     * INFINITE, which is guaranteed to be true if the approved spending limit
+     * is INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7406,10 +7424,10 @@ public boolean hasAdjustedSpendingLimitType() { } /** *
-     * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-     * This will only be populated if the adjusted spending limit is INFINITE,
-     * which is guaranteed to be true if the approved spending limit is
-     * INFINITE.
+     * Output only. The adjusted spending limit as a well-defined type, for example,
+     * INFINITE. This will only be populated if the adjusted spending limit is
+     * INFINITE, which is guaranteed to be true if the approved spending limit
+     * is INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7424,10 +7442,10 @@ public int getAdjustedSpendingLimitTypeValue() { } /** *
-     * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-     * This will only be populated if the adjusted spending limit is INFINITE,
-     * which is guaranteed to be true if the approved spending limit is
-     * INFINITE.
+     * Output only. The adjusted spending limit as a well-defined type, for example,
+     * INFINITE. This will only be populated if the adjusted spending limit is
+     * INFINITE, which is guaranteed to be true if the approved spending limit
+     * is INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7442,10 +7460,10 @@ public Builder setAdjustedSpendingLimitTypeValue(int value) { } /** *
-     * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-     * This will only be populated if the adjusted spending limit is INFINITE,
-     * which is guaranteed to be true if the approved spending limit is
-     * INFINITE.
+     * Output only. The adjusted spending limit as a well-defined type, for example,
+     * INFINITE. This will only be populated if the adjusted spending limit is
+     * INFINITE, which is guaranteed to be true if the approved spending limit
+     * is INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7463,10 +7481,10 @@ public com.google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitTyp } /** *
-     * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-     * This will only be populated if the adjusted spending limit is INFINITE,
-     * which is guaranteed to be true if the approved spending limit is
-     * INFINITE.
+     * Output only. The adjusted spending limit as a well-defined type, for example,
+     * INFINITE. This will only be populated if the adjusted spending limit is
+     * INFINITE, which is guaranteed to be true if the approved spending limit
+     * is INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -7484,10 +7502,10 @@ public Builder setAdjustedSpendingLimitType(com.google.ads.googleads.v11.enums.S } /** *
-     * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-     * This will only be populated if the adjusted spending limit is INFINITE,
-     * which is guaranteed to be true if the approved spending limit is
-     * INFINITE.
+     * Output only. The adjusted spending limit as a well-defined type, for example,
+     * INFINITE. This will only be populated if the adjusted spending limit is
+     * INFINITE, which is guaranteed to be true if the approved spending limit
+     * is INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetOrBuilder.java index 38b80bfbaa..ba05d3cf15 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetOrBuilder.java @@ -348,7 +348,7 @@ public interface AccountBudgetOrBuilder extends /** *
-   * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+   * Output only. The proposed end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -357,7 +357,7 @@ public interface AccountBudgetOrBuilder extends boolean hasProposedEndTimeType(); /** *
-   * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+   * Output only. The proposed end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -366,7 +366,7 @@ public interface AccountBudgetOrBuilder extends int getProposedEndTimeTypeValue(); /** *
-   * Output only. The proposed end time as a well-defined type, e.g. FOREVER.
+   * Output only. The proposed end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -405,7 +405,7 @@ public interface AccountBudgetOrBuilder extends /** *
-   * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -414,7 +414,7 @@ public interface AccountBudgetOrBuilder extends boolean hasApprovedEndTimeType(); /** *
-   * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -423,7 +423,7 @@ public interface AccountBudgetOrBuilder extends int getApprovedEndTimeTypeValue(); /** *
-   * Output only. The approved end time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -454,7 +454,8 @@ public interface AccountBudgetOrBuilder extends /** *
-   * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -463,7 +464,8 @@ public interface AccountBudgetOrBuilder extends boolean hasProposedSpendingLimitType(); /** *
-   * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -472,7 +474,8 @@ public interface AccountBudgetOrBuilder extends int getProposedSpendingLimitTypeValue(); /** *
-   * Output only. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 13 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -507,8 +510,9 @@ public interface AccountBudgetOrBuilder extends /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-   * will only be populated if the approved spending limit is INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.  This will only be populated if the approved spending limit is
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -517,8 +521,9 @@ public interface AccountBudgetOrBuilder extends boolean hasApprovedSpendingLimitType(); /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-   * will only be populated if the approved spending limit is INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.  This will only be populated if the approved spending limit is
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -527,8 +532,9 @@ public interface AccountBudgetOrBuilder extends int getApprovedSpendingLimitTypeValue(); /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.  This
-   * will only be populated if the approved spending limit is INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.  This will only be populated if the approved spending limit is
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -573,10 +579,10 @@ public interface AccountBudgetOrBuilder extends /** *
-   * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-   * This will only be populated if the adjusted spending limit is INFINITE,
-   * which is guaranteed to be true if the approved spending limit is
-   * INFINITE.
+   * Output only. The adjusted spending limit as a well-defined type, for example,
+   * INFINITE. This will only be populated if the adjusted spending limit is
+   * INFINITE, which is guaranteed to be true if the approved spending limit
+   * is INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -585,10 +591,10 @@ public interface AccountBudgetOrBuilder extends boolean hasAdjustedSpendingLimitType(); /** *
-   * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-   * This will only be populated if the adjusted spending limit is INFINITE,
-   * which is guaranteed to be true if the approved spending limit is
-   * INFINITE.
+   * Output only. The adjusted spending limit as a well-defined type, for example,
+   * INFINITE. This will only be populated if the adjusted spending limit is
+   * INFINITE, which is guaranteed to be true if the approved spending limit
+   * is INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -597,10 +603,10 @@ public interface AccountBudgetOrBuilder extends int getAdjustedSpendingLimitTypeValue(); /** *
-   * Output only. The adjusted spending limit as a well-defined type, e.g. INFINITE.
-   * This will only be populated if the adjusted spending limit is INFINITE,
-   * which is guaranteed to be true if the approved spending limit is
-   * INFINITE.
+   * Output only. The adjusted spending limit as a well-defined type, for example,
+   * INFINITE. This will only be populated if the adjusted spending limit is
+   * INFINITE, which is guaranteed to be true if the approved spending limit
+   * is INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType adjusted_spending_limit_type = 17 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposal.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposal.java index 46055089ef..e8809a7a3e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposal.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposal.java @@ -9,8 +9,8 @@ * All fields prefixed with 'proposed' may not necessarily be applied directly. * For example, proposed spending limits may be adjusted before their * application. This is true if the 'proposed' field has an 'approved' - * counterpart, e.g. spending limits. - * Please note that the proposal type (proposal_type) changes which fields are + * counterpart, for example, spending limits. + * Note that the proposal type (proposal_type) changes which fields are * required and which must remain empty. *
* @@ -639,8 +639,8 @@ public java.lang.String getAccountBudget() { private int proposalType_; /** *
-   * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-   * proposal.
+   * Immutable. The type of this proposal, for example, END to end the budget associated
+   * with this proposal.
    * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -651,8 +651,8 @@ public java.lang.String getAccountBudget() { } /** *
-   * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-   * proposal.
+   * Immutable. The type of this proposal, for example, END to end the budget associated
+   * with this proposal.
    * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1114,7 +1114,7 @@ public java.lang.String getProposedStartDateTime() { public static final int PROPOSED_START_TIME_TYPE_FIELD_NUMBER = 7; /** *
-   * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+   * Immutable. The proposed start date time as a well-defined type, for example, NOW.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1125,7 +1125,7 @@ public boolean hasProposedStartTimeType() { } /** *
-   * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+   * Immutable. The proposed start date time as a well-defined type, for example, NOW.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1139,7 +1139,7 @@ public int getProposedStartTimeTypeValue() { } /** *
-   * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+   * Immutable. The proposed start date time as a well-defined type, for example, NOW.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1222,7 +1222,7 @@ public java.lang.String getProposedEndDateTime() { public static final int PROPOSED_END_TIME_TYPE_FIELD_NUMBER = 9; /** *
-   * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+   * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1233,7 +1233,7 @@ public boolean hasProposedEndTimeType() { } /** *
-   * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+   * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1247,7 +1247,7 @@ public int getProposedEndTimeTypeValue() { } /** *
-   * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+   * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1330,7 +1330,7 @@ public java.lang.String getApprovedEndDateTime() { public static final int APPROVED_END_TIME_TYPE_FIELD_NUMBER = 22; /** *
-   * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1341,7 +1341,7 @@ public boolean hasApprovedEndTimeType() { } /** *
-   * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1355,7 +1355,7 @@ public int getApprovedEndTimeTypeValue() { } /** *
-   * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1405,7 +1405,8 @@ public long getProposedSpendingLimitMicros() { public static final int PROPOSED_SPENDING_LIMIT_TYPE_FIELD_NUMBER = 11; /** *
-   * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Immutable. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1416,7 +1417,8 @@ public boolean hasProposedSpendingLimitType() { } /** *
-   * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Immutable. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1430,7 +1432,8 @@ public int getProposedSpendingLimitTypeValue() { } /** *
-   * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Immutable. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1480,7 +1483,8 @@ public long getApprovedSpendingLimitMicros() { public static final int APPROVED_SPENDING_LIMIT_TYPE_FIELD_NUMBER = 24; /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1491,7 +1495,8 @@ public boolean hasApprovedSpendingLimitType() { } /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1505,7 +1510,8 @@ public int getApprovedSpendingLimitTypeValue() { } /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2036,8 +2042,8 @@ protected Builder newBuilderForType( * All fields prefixed with 'proposed' may not necessarily be applied directly. * For example, proposed spending limits may be adjusted before their * application. This is true if the 'proposed' field has an 'approved' - * counterpart, e.g. spending limits. - * Please note that the proposal type (proposal_type) changes which fields are + * counterpart, for example, spending limits. + * Note that the proposal type (proposal_type) changes which fields are * required and which must remain empty. *
* @@ -2876,8 +2882,8 @@ public Builder setAccountBudgetBytes( private int proposalType_ = 0; /** *
-     * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-     * proposal.
+     * Immutable. The type of this proposal, for example, END to end the budget associated
+     * with this proposal.
      * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2888,8 +2894,8 @@ public Builder setAccountBudgetBytes( } /** *
-     * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-     * proposal.
+     * Immutable. The type of this proposal, for example, END to end the budget associated
+     * with this proposal.
      * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2904,8 +2910,8 @@ public Builder setProposalTypeValue(int value) { } /** *
-     * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-     * proposal.
+     * Immutable. The type of this proposal, for example, END to end the budget associated
+     * with this proposal.
      * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2919,8 +2925,8 @@ public com.google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountB } /** *
-     * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-     * proposal.
+     * Immutable. The type of this proposal, for example, END to end the budget associated
+     * with this proposal.
      * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2938,8 +2944,8 @@ public Builder setProposalType(com.google.ads.googleads.v11.enums.AccountBudgetP } /** *
-     * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-     * proposal.
+     * Immutable. The type of this proposal, for example, END to end the budget associated
+     * with this proposal.
      * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3808,7 +3814,7 @@ public Builder setProposedStartDateTimeBytes( /** *
-     * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+     * Immutable. The proposed start date time as a well-defined type, for example, NOW.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3820,7 +3826,7 @@ public boolean hasProposedStartTimeType() { } /** *
-     * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+     * Immutable. The proposed start date time as a well-defined type, for example, NOW.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3835,7 +3841,7 @@ public int getProposedStartTimeTypeValue() { } /** *
-     * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+     * Immutable. The proposed start date time as a well-defined type, for example, NOW.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3850,7 +3856,7 @@ public Builder setProposedStartTimeTypeValue(int value) { } /** *
-     * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+     * Immutable. The proposed start date time as a well-defined type, for example, NOW.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3868,7 +3874,7 @@ public com.google.ads.googleads.v11.enums.TimeTypeEnum.TimeType getProposedStart } /** *
-     * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+     * Immutable. The proposed start date time as a well-defined type, for example, NOW.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -3886,7 +3892,7 @@ public Builder setProposedStartTimeType(com.google.ads.googleads.v11.enums.TimeT } /** *
-     * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+     * Immutable. The proposed start date time as a well-defined type, for example, NOW.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4024,7 +4030,7 @@ public Builder setProposedEndDateTimeBytes( /** *
-     * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+     * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4036,7 +4042,7 @@ public boolean hasProposedEndTimeType() { } /** *
-     * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+     * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4051,7 +4057,7 @@ public int getProposedEndTimeTypeValue() { } /** *
-     * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+     * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4066,7 +4072,7 @@ public Builder setProposedEndTimeTypeValue(int value) { } /** *
-     * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+     * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4084,7 +4090,7 @@ public com.google.ads.googleads.v11.enums.TimeTypeEnum.TimeType getProposedEndTi } /** *
-     * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+     * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4102,7 +4108,7 @@ public Builder setProposedEndTimeType(com.google.ads.googleads.v11.enums.TimeTyp } /** *
-     * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+     * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4240,7 +4246,7 @@ public Builder setApprovedEndDateTimeBytes( /** *
-     * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4252,7 +4258,7 @@ public boolean hasApprovedEndTimeType() { } /** *
-     * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4267,7 +4273,7 @@ public int getApprovedEndTimeTypeValue() { } /** *
-     * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4282,7 +4288,7 @@ public Builder setApprovedEndTimeTypeValue(int value) { } /** *
-     * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4300,7 +4306,7 @@ public com.google.ads.googleads.v11.enums.TimeTypeEnum.TimeType getApprovedEndTi } /** *
-     * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4318,7 +4324,7 @@ public Builder setApprovedEndTimeType(com.google.ads.googleads.v11.enums.TimeTyp } /** *
-     * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+     * Output only. The approved end date time as a well-defined type, for example, FOREVER.
      * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4396,7 +4402,8 @@ public Builder clearProposedSpendingLimitMicros() { /** *
-     * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Immutable. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4408,7 +4415,8 @@ public boolean hasProposedSpendingLimitType() { } /** *
-     * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Immutable. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4423,7 +4431,8 @@ public int getProposedSpendingLimitTypeValue() { } /** *
-     * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Immutable. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4438,7 +4447,8 @@ public Builder setProposedSpendingLimitTypeValue(int value) { } /** *
-     * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Immutable. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4456,7 +4466,8 @@ public com.google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitTyp } /** *
-     * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Immutable. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4474,7 +4485,8 @@ public Builder setProposedSpendingLimitType(com.google.ads.googleads.v11.enums.S } /** *
-     * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+     * Immutable. The proposed spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -4552,7 +4564,8 @@ public Builder clearApprovedSpendingLimitMicros() { /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4564,7 +4577,8 @@ public boolean hasApprovedSpendingLimitType() { } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4579,7 +4593,8 @@ public int getApprovedSpendingLimitTypeValue() { } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4594,7 +4609,8 @@ public Builder setApprovedSpendingLimitTypeValue(int value) { } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4612,7 +4628,8 @@ public com.google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitTyp } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4630,7 +4647,8 @@ public Builder setApprovedSpendingLimitType(com.google.ads.googleads.v11.enums.S } /** *
-     * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+     * Output only. The approved spending limit as a well-defined type, for example,
+     * INFINITE.
      * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposalOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposalOrBuilder.java index 9e628eeecd..99e029cc1f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposalOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AccountBudgetProposalOrBuilder.java @@ -113,8 +113,8 @@ public interface AccountBudgetProposalOrBuilder extends /** *
-   * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-   * proposal.
+   * Immutable. The type of this proposal, for example, END to end the budget associated
+   * with this proposal.
    * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -123,8 +123,8 @@ public interface AccountBudgetProposalOrBuilder extends int getProposalTypeValue(); /** *
-   * Immutable. The type of this proposal, e.g. END to end the budget associated with this
-   * proposal.
+   * Immutable. The type of this proposal, for example, END to end the budget associated
+   * with this proposal.
    * 
* * .google.ads.googleads.v11.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType proposal_type = 4 [(.google.api.field_behavior) = IMMUTABLE]; @@ -364,7 +364,7 @@ public interface AccountBudgetProposalOrBuilder extends /** *
-   * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+   * Immutable. The proposed start date time as a well-defined type, for example, NOW.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -373,7 +373,7 @@ public interface AccountBudgetProposalOrBuilder extends boolean hasProposedStartTimeType(); /** *
-   * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+   * Immutable. The proposed start date time as a well-defined type, for example, NOW.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -382,7 +382,7 @@ public interface AccountBudgetProposalOrBuilder extends int getProposedStartTimeTypeValue(); /** *
-   * Immutable. The proposed start date time as a well-defined type, e.g. NOW.
+   * Immutable. The proposed start date time as a well-defined type, for example, NOW.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_start_time_type = 7 [(.google.api.field_behavior) = IMMUTABLE]; @@ -421,7 +421,7 @@ public interface AccountBudgetProposalOrBuilder extends /** *
-   * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+   * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -430,7 +430,7 @@ public interface AccountBudgetProposalOrBuilder extends boolean hasProposedEndTimeType(); /** *
-   * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+   * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -439,7 +439,7 @@ public interface AccountBudgetProposalOrBuilder extends int getProposedEndTimeTypeValue(); /** *
-   * Immutable. The proposed end date time as a well-defined type, e.g. FOREVER.
+   * Immutable. The proposed end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType proposed_end_time_type = 9 [(.google.api.field_behavior) = IMMUTABLE]; @@ -478,7 +478,7 @@ public interface AccountBudgetProposalOrBuilder extends /** *
-   * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -487,7 +487,7 @@ public interface AccountBudgetProposalOrBuilder extends boolean hasApprovedEndTimeType(); /** *
-   * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -496,7 +496,7 @@ public interface AccountBudgetProposalOrBuilder extends int getApprovedEndTimeTypeValue(); /** *
-   * Output only. The approved end date time as a well-defined type, e.g. FOREVER.
+   * Output only. The approved end date time as a well-defined type, for example, FOREVER.
    * 
* * .google.ads.googleads.v11.enums.TimeTypeEnum.TimeType approved_end_time_type = 22 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -527,7 +527,8 @@ public interface AccountBudgetProposalOrBuilder extends /** *
-   * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Immutable. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -536,7 +537,8 @@ public interface AccountBudgetProposalOrBuilder extends boolean hasProposedSpendingLimitType(); /** *
-   * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Immutable. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -545,7 +547,8 @@ public interface AccountBudgetProposalOrBuilder extends int getProposedSpendingLimitTypeValue(); /** *
-   * Immutable. The proposed spending limit as a well-defined type, e.g. INFINITE.
+   * Immutable. The proposed spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType proposed_spending_limit_type = 11 [(.google.api.field_behavior) = IMMUTABLE]; @@ -576,7 +579,8 @@ public interface AccountBudgetProposalOrBuilder extends /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -585,7 +589,8 @@ public interface AccountBudgetProposalOrBuilder extends boolean hasApprovedSpendingLimitType(); /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -594,7 +599,8 @@ public interface AccountBudgetProposalOrBuilder extends int getApprovedSpendingLimitTypeValue(); /** *
-   * Output only. The approved spending limit as a well-defined type, e.g. INFINITE.
+   * Output only. The approved spending limit as a well-defined type, for example,
+   * INFINITE.
    * 
* * .google.ads.googleads.v11.enums.SpendingLimitTypeEnum.SpendingLimitType approved_spending_limit_type = 24 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Ad.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Ad.java index 8806bf6678..832ed41f46 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Ad.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Ad.java @@ -1014,7 +1014,7 @@ public java.lang.String getFinalUrlSuffix() { *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -1027,7 +1027,7 @@ public java.util.List getUr *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -1041,7 +1041,7 @@ public java.util.List getUr *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -1054,7 +1054,7 @@ public int getUrlCustomParametersCount() { *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -1067,7 +1067,7 @@ public com.google.ads.googleads.v11.common.CustomParameter getUrlCustomParameter *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -1203,8 +1203,8 @@ public boolean getAddedByGoogleAds() { * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. *
* @@ -1219,8 +1219,8 @@ public boolean getAddedByGoogleAds() { * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. *
* @@ -4872,7 +4872,7 @@ private void ensureUrlCustomParametersIsMutable() { *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -4888,7 +4888,7 @@ public java.util.List getUr *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -4904,7 +4904,7 @@ public int getUrlCustomParametersCount() { *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -4920,7 +4920,7 @@ public com.google.ads.googleads.v11.common.CustomParameter getUrlCustomParameter *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -4943,7 +4943,7 @@ public Builder setUrlCustomParameters( *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -4963,7 +4963,7 @@ public Builder setUrlCustomParameters( *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -4985,7 +4985,7 @@ public Builder addUrlCustomParameters(com.google.ads.googleads.v11.common.Custom *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5008,7 +5008,7 @@ public Builder addUrlCustomParameters( *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5028,7 +5028,7 @@ public Builder addUrlCustomParameters( *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5048,7 +5048,7 @@ public Builder addUrlCustomParameters( *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5069,7 +5069,7 @@ public Builder addAllUrlCustomParameters( *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5088,7 +5088,7 @@ public Builder clearUrlCustomParameters() { *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5107,7 +5107,7 @@ public Builder removeUrlCustomParameters(int index) { *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5120,7 +5120,7 @@ public com.google.ads.googleads.v11.common.CustomParameter.Builder getUrlCustomP *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5136,7 +5136,7 @@ public com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustom *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5153,7 +5153,7 @@ public com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustom *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5166,7 +5166,7 @@ public com.google.ads.googleads.v11.common.CustomParameter.Builder addUrlCustomP *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5180,7 +5180,7 @@ public com.google.ads.googleads.v11.common.CustomParameter.Builder addUrlCustomP *
      * The list of mappings that can be used to substitute custom parameter tags
      * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-     * For mutates, please use url custom parameter operations.
+     * For mutates, use url custom parameter operations.
      * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -5458,8 +5458,8 @@ public Builder clearAddedByGoogleAds() { * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. *
* @@ -5474,8 +5474,8 @@ public Builder clearAddedByGoogleAds() { * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. *
* @@ -5494,8 +5494,8 @@ public Builder setDevicePreferenceValue(int value) { * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. *
* @@ -5513,8 +5513,8 @@ public com.google.ads.googleads.v11.enums.DeviceEnum.Device getDevicePreference( * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. *
* @@ -5536,8 +5536,8 @@ public Builder setDevicePreference(com.google.ads.googleads.v11.enums.DeviceEnum * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. *
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroup.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroup.java index 1bd6c7b2b0..61e8326267 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroup.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroup.java @@ -5998,8 +5998,8 @@ public int getExcludedParentAssetFieldTypesValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType excluded_parent_asset_field_types = 54; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of excludedParentAssetFieldTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for excludedParentAssetFieldTypes to set. * @return This builder for chaining. */ public Builder setExcludedParentAssetFieldTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupAdAssetView.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupAdAssetView.java index 76f2498a29..0de614013a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupAdAssetView.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupAdAssetView.java @@ -6,7 +6,8 @@ /** *
  * A link between an AdGroupAd and an Asset.
- * Currently we only support AdGroupAdAssetView for AppAds.
+ * Currently we only support AdGroupAdAssetView for AppAds and Responsive Search
+ * Ads.
  * 
* * Protobuf type {@code google.ads.googleads.v11.resources.AdGroupAdAssetView} @@ -677,7 +678,8 @@ protected Builder newBuilderForType( /** *
    * A link between an AdGroupAd and an Asset.
-   * Currently we only support AdGroupAdAssetView for AppAds.
+   * Currently we only support AdGroupAdAssetView for AppAds and Responsive Search
+   * Ads.
    * 
* * Protobuf type {@code google.ads.googleads.v11.resources.AdGroupAdAssetView} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifier.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifier.java index 2516418130..d63aca4667 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifier.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifier.java @@ -543,7 +543,7 @@ public java.lang.String getBaseAdGroup() { public static final int HOTEL_DATE_SELECTION_TYPE_FIELD_NUMBER = 5; /** *
-   * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+   * Immutable. Criterion for hotel date selection (default dates versus user selected).
    * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -555,7 +555,7 @@ public boolean hasHotelDateSelectionType() { } /** *
-   * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+   * Immutable. Criterion for hotel date selection (default dates versus user selected).
    * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -570,7 +570,7 @@ public com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfo getHotelDa } /** *
-   * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+   * Immutable. Criterion for hotel date selection (default dates versus user selected).
    * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2030,7 +2030,7 @@ public Builder clearBidModifierSource() { com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfo, com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfo.Builder, com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfoOrBuilder> hotelDateSelectionTypeBuilder_; /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2042,7 +2042,7 @@ public boolean hasHotelDateSelectionType() { } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2064,7 +2064,7 @@ public com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfo getHotelDa } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2084,7 +2084,7 @@ public Builder setHotelDateSelectionType(com.google.ads.googleads.v11.common.Hot } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2102,7 +2102,7 @@ public Builder setHotelDateSelectionType( } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2129,7 +2129,7 @@ public Builder mergeHotelDateSelectionType(com.google.ads.googleads.v11.common.H } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2152,7 +2152,7 @@ public Builder clearHotelDateSelectionType() { } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2162,7 +2162,7 @@ public com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfo.Builder ge } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -2180,7 +2180,7 @@ public com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfoOrBuilder g } /** *
-     * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+     * Immutable. Criterion for hotel date selection (default dates versus user selected).
      * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifierOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifierOrBuilder.java index 698eb732a7..4e2d002052 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifierOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupBidModifierOrBuilder.java @@ -166,7 +166,7 @@ public interface AdGroupBidModifierOrBuilder extends /** *
-   * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+   * Immutable. Criterion for hotel date selection (default dates versus user selected).
    * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -175,7 +175,7 @@ public interface AdGroupBidModifierOrBuilder extends boolean hasHotelDateSelectionType(); /** *
-   * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+   * Immutable. Criterion for hotel date selection (default dates versus user selected).
    * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; @@ -184,7 +184,7 @@ public interface AdGroupBidModifierOrBuilder extends com.google.ads.googleads.v11.common.HotelDateSelectionTypeInfo getHotelDateSelectionType(); /** *
-   * Immutable. Criterion for hotel date selection (default dates vs. user selected).
+   * Immutable. Criterion for hotel date selection (default dates versus user selected).
    * 
* * .google.ads.googleads.v11.common.HotelDateSelectionTypeInfo hotel_date_selection_type = 5 [(.google.api.field_behavior) = IMMUTABLE]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupFeed.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupFeed.java index 1def37f414..a157310d3f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupFeed.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdGroupFeed.java @@ -1401,8 +1401,8 @@ public int getPlaceholderTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 4; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of placeholderTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for placeholderTypes to set. * @return This builder for chaining. */ public Builder setPlaceholderTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdOrBuilder.java index b32b3bfe6f..3aec997c12 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdOrBuilder.java @@ -251,7 +251,7 @@ com.google.ads.googleads.v11.common.FinalAppUrlOrBuilder getFinalAppUrlsOrBuilde *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -262,7 +262,7 @@ com.google.ads.googleads.v11.common.FinalAppUrlOrBuilder getFinalAppUrlsOrBuilde *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -272,7 +272,7 @@ com.google.ads.googleads.v11.common.FinalAppUrlOrBuilder getFinalAppUrlsOrBuilde *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -282,7 +282,7 @@ com.google.ads.googleads.v11.common.FinalAppUrlOrBuilder getFinalAppUrlsOrBuilde *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -293,7 +293,7 @@ com.google.ads.googleads.v11.common.FinalAppUrlOrBuilder getFinalAppUrlsOrBuilde *
    * The list of mappings that can be used to substitute custom parameter tags
    * in a `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
-   * For mutates, please use url custom parameter operations.
+   * For mutates, use url custom parameter operations.
    * 
* * repeated .google.ads.googleads.v11.common.CustomParameter url_custom_parameters = 10; @@ -379,8 +379,8 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. * * @@ -393,8 +393,8 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet * The device preference for the ad. You can only specify a preference for * mobile devices. When this preference is set the ad will be preferred over * other ads when being displayed on a mobile device. The ad can still be - * displayed on other device types, e.g. if no other ads are available. - * If unspecified (no device preference), all devices are targeted. + * displayed on other device types, for example, if no other ads are + * available. If unspecified (no device preference), all devices are targeted. * This is only supported by some ad types. * * diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdParameter.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdParameter.java index 717c3c24a0..596725d6ab 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdParameter.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AdParameter.java @@ -10,7 +10,7 @@ * be a maximum of two AdParameters per ad group criterion. (One with * parameter_index = 1 and one with parameter_index = 2.) * In the ad the parameters are referenced by a placeholder of the form - * "{param#:value}". E.g. "{param1:$17}" + * "{param#:value}". For example, "{param1:$17}" * * * Protobuf type {@code google.ads.googleads.v11.resources.AdParameter} @@ -556,7 +556,7 @@ protected Builder newBuilderForType( * be a maximum of two AdParameters per ad group criterion. (One with * parameter_index = 1 and one with parameter_index = 2.) * In the ad the parameters are referenced by a placeholder of the form - * "{param#:value}". E.g. "{param1:$17}" + * "{param#:value}". For example, "{param1:$17}" * * * Protobuf type {@code google.ads.googleads.v11.resources.AdParameter} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroup.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroup.java index f51e43b9ad..3293384740 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroup.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroup.java @@ -30,6 +30,7 @@ private AssetGroup() { status_ = 0; path1_ = ""; path2_ = ""; + adStrength_ = 0; } @java.lang.Override @@ -122,6 +123,12 @@ private AssetGroup( id_ = input.readInt64(); break; } + case 80: { + int rawValue = input.readEnum(); + + adStrength_ = rawValue; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -560,6 +567,33 @@ public java.lang.String getPath2() { } } + public static final int AD_STRENGTH_FIELD_NUMBER = 10; + private int adStrength_; + /** + *
+   * Output only. Overall ad strength of this asset group.
+   * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for adStrength. + */ + @java.lang.Override public int getAdStrengthValue() { + return adStrength_; + } + /** + *
+   * Output only. Overall ad strength of this asset group.
+   * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The adStrength. + */ + @java.lang.Override public com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength getAdStrength() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength result = com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength.valueOf(adStrength_); + return result == null ? com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength.UNRECOGNIZED : result; + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -601,6 +635,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (id_ != 0L) { output.writeInt64(9, id_); } + if (adStrength_ != com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength.UNSPECIFIED.getNumber()) { + output.writeEnum(10, adStrength_); + } unknownFields.writeTo(output); } @@ -649,6 +686,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeInt64Size(9, id_); } + if (adStrength_ != com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(10, adStrength_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -681,6 +722,7 @@ public boolean equals(final java.lang.Object obj) { .equals(other.getPath1())) return false; if (!getPath2() .equals(other.getPath2())) return false; + if (adStrength_ != other.adStrength_) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -715,6 +757,8 @@ public int hashCode() { hash = (53 * hash) + getPath1().hashCode(); hash = (37 * hash) + PATH2_FIELD_NUMBER; hash = (53 * hash) + getPath2().hashCode(); + hash = (37 * hash) + AD_STRENGTH_FIELD_NUMBER; + hash = (53 * hash) + adStrength_; hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -872,6 +916,8 @@ public Builder clear() { path2_ = ""; + adStrength_ = 0; + return this; } @@ -916,6 +962,7 @@ public com.google.ads.googleads.v11.resources.AssetGroup buildPartial() { result.status_ = status_; result.path1_ = path1_; result.path2_ = path2_; + result.adStrength_ = adStrength_; onBuilt(); return result; } @@ -1010,6 +1057,9 @@ public Builder mergeFrom(com.google.ads.googleads.v11.resources.AssetGroup other path2_ = other.path2_; onChanged(); } + if (other.adStrength_ != 0) { + setAdStrengthValue(other.getAdStrengthValue()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1985,6 +2035,80 @@ public Builder setPath2Bytes( onChanged(); return this; } + + private int adStrength_ = 0; + /** + *
+     * Output only. Overall ad strength of this asset group.
+     * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for adStrength. + */ + @java.lang.Override public int getAdStrengthValue() { + return adStrength_; + } + /** + *
+     * Output only. Overall ad strength of this asset group.
+     * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for adStrength to set. + * @return This builder for chaining. + */ + public Builder setAdStrengthValue(int value) { + + adStrength_ = value; + onChanged(); + return this; + } + /** + *
+     * Output only. Overall ad strength of this asset group.
+     * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The adStrength. + */ + @java.lang.Override + public com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength getAdStrength() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength result = com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength.valueOf(adStrength_); + return result == null ? com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength.UNRECOGNIZED : result; + } + /** + *
+     * Output only. Overall ad strength of this asset group.
+     * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The adStrength to set. + * @return This builder for chaining. + */ + public Builder setAdStrength(com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength value) { + if (value == null) { + throw new NullPointerException(); + } + + adStrength_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
+     * Output only. Overall ad strength of this asset group.
+     * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearAdStrength() { + + adStrength_ = 0; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAsset.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAsset.java index e9414f2ece..25ad8e6a7c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAsset.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAsset.java @@ -288,8 +288,8 @@ public java.lang.String getAsset() { private int fieldType_; /** *
-   * The description of the placement of the asset within the asset group. E.g.:
-   * HEADLINE, YOUTUBE_VIDEO etc
+   * The description of the placement of the asset within the asset group. For
+   * example: HEADLINE, YOUTUBE_VIDEO etc
    * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; @@ -300,8 +300,8 @@ public java.lang.String getAsset() { } /** *
-   * The description of the placement of the asset within the asset group. E.g.:
-   * HEADLINE, YOUTUBE_VIDEO etc
+   * The description of the placement of the asset within the asset group. For
+   * example: HEADLINE, YOUTUBE_VIDEO etc
    * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; @@ -1125,8 +1125,8 @@ public Builder setAssetBytes( private int fieldType_ = 0; /** *
-     * The description of the placement of the asset within the asset group. E.g.:
-     * HEADLINE, YOUTUBE_VIDEO etc
+     * The description of the placement of the asset within the asset group. For
+     * example: HEADLINE, YOUTUBE_VIDEO etc
      * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; @@ -1137,8 +1137,8 @@ public Builder setAssetBytes( } /** *
-     * The description of the placement of the asset within the asset group. E.g.:
-     * HEADLINE, YOUTUBE_VIDEO etc
+     * The description of the placement of the asset within the asset group. For
+     * example: HEADLINE, YOUTUBE_VIDEO etc
      * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; @@ -1153,8 +1153,8 @@ public Builder setFieldTypeValue(int value) { } /** *
-     * The description of the placement of the asset within the asset group. E.g.:
-     * HEADLINE, YOUTUBE_VIDEO etc
+     * The description of the placement of the asset within the asset group. For
+     * example: HEADLINE, YOUTUBE_VIDEO etc
      * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; @@ -1168,8 +1168,8 @@ public com.google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType getF } /** *
-     * The description of the placement of the asset within the asset group. E.g.:
-     * HEADLINE, YOUTUBE_VIDEO etc
+     * The description of the placement of the asset within the asset group. For
+     * example: HEADLINE, YOUTUBE_VIDEO etc
      * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; @@ -1187,8 +1187,8 @@ public Builder setFieldType(com.google.ads.googleads.v11.enums.AssetFieldTypeEnu } /** *
-     * The description of the placement of the asset within the asset group. E.g.:
-     * HEADLINE, YOUTUBE_VIDEO etc
+     * The description of the placement of the asset within the asset group. For
+     * example: HEADLINE, YOUTUBE_VIDEO etc
      * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAssetOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAssetOrBuilder.java index d686ff12fc..4b2fa505bf 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAssetOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupAssetOrBuilder.java @@ -73,8 +73,8 @@ public interface AssetGroupAssetOrBuilder extends /** *
-   * The description of the placement of the asset within the asset group. E.g.:
-   * HEADLINE, YOUTUBE_VIDEO etc
+   * The description of the placement of the asset within the asset group. For
+   * example: HEADLINE, YOUTUBE_VIDEO etc
    * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; @@ -83,8 +83,8 @@ public interface AssetGroupAssetOrBuilder extends int getFieldTypeValue(); /** *
-   * The description of the placement of the asset within the asset group. E.g.:
-   * HEADLINE, YOUTUBE_VIDEO etc
+   * The description of the placement of the asset within the asset group. For
+   * example: HEADLINE, YOUTUBE_VIDEO etc
    * 
* * .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType field_type = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupOrBuilder.java index eda47742e9..74f355add2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupOrBuilder.java @@ -241,4 +241,23 @@ public interface AssetGroupOrBuilder extends */ com.google.protobuf.ByteString getPath2Bytes(); + + /** + *
+   * Output only. Overall ad strength of this asset group.
+   * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for adStrength. + */ + int getAdStrengthValue(); + /** + *
+   * Output only. Overall ad strength of this asset group.
+   * 
+ * + * .google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength ad_strength = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The adStrength. + */ + com.google.ads.googleads.v11.enums.AdStrengthEnum.AdStrength getAdStrength(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupProto.java index b0c67d9050..62bf559466 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/AssetGroupProto.java @@ -30,31 +30,36 @@ public static void registerAllExtensions( java.lang.String[] descriptorData = { "\n4google/ads/googleads/v11/resources/ass" + "et_group.proto\022\"google.ads.googleads.v11" + - ".resources\0327google/ads/googleads/v11/enu" + - "ms/asset_group_status.proto\032\037google/api/" + - "field_behavior.proto\032\031google/api/resourc" + - "e.proto\"\265\003\n\nAssetGroup\022B\n\rresource_name\030" + - "\001 \001(\tB+\340A\005\372A%\n#googleads.googleapis.com/" + - "AssetGroup\022\017\n\002id\030\t \001(\003B\003\340A\003\022;\n\010campaign\030" + - "\002 \001(\tB)\340A\005\372A#\n!googleads.googleapis.com/" + - "Campaign\022\021\n\004name\030\003 \001(\tB\003\340A\002\022\022\n\nfinal_url" + - "s\030\004 \003(\t\022\031\n\021final_mobile_urls\030\005 \003(\t\022U\n\006st" + - "atus\030\006 \001(\0162E.google.ads.googleads.v11.en" + - "ums.AssetGroupStatusEnum.AssetGroupStatu" + - "s\022\r\n\005path1\030\007 \001(\t\022\r\n\005path2\030\010 \001(\t:^\352A[\n#go" + - "ogleads.googleapis.com/AssetGroup\0224custo" + - "mers/{customer_id}/assetGroups/{asset_gr" + - "oup_id}B\201\002\n&com.google.ads.googleads.v11" + - ".resourcesB\017AssetGroupProtoP\001ZKgoogle.go" + - "lang.org/genproto/googleapis/ads/googlea" + - "ds/v11/resources;resources\242\002\003GAA\252\002\"Googl" + - "e.Ads.GoogleAds.V11.Resources\312\002\"Google\\A" + - "ds\\GoogleAds\\V11\\Resources\352\002&Google::Ads" + - "::GoogleAds::V11::Resourcesb\006proto3" + ".resources\0320google/ads/googleads/v11/enu" + + "ms/ad_strength.proto\0327google/ads/googlea" + + "ds/v11/enums/asset_group_status.proto\032\037g" + + "oogle/api/field_behavior.proto\032\031google/a" + + "pi/resource.proto\"\212\004\n\nAssetGroup\022B\n\rreso" + + "urce_name\030\001 \001(\tB+\340A\005\372A%\n#googleads.googl" + + "eapis.com/AssetGroup\022\017\n\002id\030\t \001(\003B\003\340A\003\022;\n" + + "\010campaign\030\002 \001(\tB)\340A\005\372A#\n!googleads.googl" + + "eapis.com/Campaign\022\021\n\004name\030\003 \001(\tB\003\340A\002\022\022\n" + + "\nfinal_urls\030\004 \003(\t\022\031\n\021final_mobile_urls\030\005" + + " \003(\t\022U\n\006status\030\006 \001(\0162E.google.ads.google" + + "ads.v11.enums.AssetGroupStatusEnum.Asset" + + "GroupStatus\022\r\n\005path1\030\007 \001(\t\022\r\n\005path2\030\010 \001(" + + "\t\022S\n\013ad_strength\030\n \001(\01629.google.ads.goog" + + "leads.v11.enums.AdStrengthEnum.AdStrengt" + + "hB\003\340A\003:^\352A[\n#googleads.googleapis.com/As" + + "setGroup\0224customers/{customer_id}/assetG" + + "roups/{asset_group_id}B\201\002\n&com.google.ad" + + "s.googleads.v11.resourcesB\017AssetGroupPro" + + "toP\001ZKgoogle.golang.org/genproto/googlea" + + "pis/ads/googleads/v11/resources;resource" + + "s\242\002\003GAA\252\002\"Google.Ads.GoogleAds.V11.Resou" + + "rces\312\002\"Google\\Ads\\GoogleAds\\V11\\Resource" + + "s\352\002&Google::Ads::GoogleAds::V11::Resourc" + + "esb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, new com.google.protobuf.Descriptors.FileDescriptor[] { + com.google.ads.googleads.v11.enums.AdStrengthProto.getDescriptor(), com.google.ads.googleads.v11.enums.AssetGroupStatusProto.getDescriptor(), com.google.api.FieldBehaviorProto.getDescriptor(), com.google.api.ResourceProto.getDescriptor(), @@ -64,7 +69,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_resources_AssetGroup_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_resources_AssetGroup_descriptor, - new java.lang.String[] { "ResourceName", "Id", "Campaign", "Name", "FinalUrls", "FinalMobileUrls", "Status", "Path1", "Path2", }); + new java.lang.String[] { "ResourceName", "Id", "Campaign", "Name", "FinalUrls", "FinalMobileUrls", "Status", "Path1", "Path2", "AdStrength", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); @@ -72,6 +77,7 @@ public static void registerAllExtensions( registry.add(com.google.api.ResourceProto.resourceReference); com.google.protobuf.Descriptors.FileDescriptor .internalUpdateFileDescriptor(descriptor, registry); + com.google.ads.googleads.v11.enums.AdStrengthProto.getDescriptor(); com.google.ads.googleads.v11.enums.AssetGroupStatusProto.getDescriptor(); com.google.api.FieldBehaviorProto.getDescriptor(); com.google.api.ResourceProto.getDescriptor(); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Audience.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Audience.java index 538ec50380..99bfab5ea9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Audience.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Audience.java @@ -5,7 +5,7 @@ /** *
- * Audience is an effective targeting option that allows you to
+ * Audience is an effective targeting option that lets you
  * intersect different segment attributes, such as detailed demographics and
  * affinities, to create audiences that represent sections of your target
  * segments.
@@ -664,7 +664,7 @@ protected Builder newBuilderForType(
   }
   /**
    * 
-   * Audience is an effective targeting option that allows you to
+   * Audience is an effective targeting option that lets you
    * intersect different segment attributes, such as detailed demographics and
    * affinities, to create audiences that represent sections of your target
    * segments.
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingDataExclusion.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingDataExclusion.java
index 61f7946b0c..a5878a0212 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingDataExclusion.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingDataExclusion.java
@@ -2209,8 +2209,8 @@ public int getDevicesValue(int index) {
      * 
* * repeated .google.ads.googleads.v11.enums.DeviceEnum.Device devices = 9; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of devices at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for devices to set. * @return This builder for chaining. */ public Builder setDevicesValue( @@ -2633,8 +2633,8 @@ public int getAdvertisingChannelTypesValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType advertising_channel_types = 11; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of advertisingChannelTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for advertisingChannelTypes to set. * @return This builder for chaining. */ public Builder setAdvertisingChannelTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingSeasonalityAdjustment.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingSeasonalityAdjustment.java index 9797ffdd03..556af38251 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingSeasonalityAdjustment.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingSeasonalityAdjustment.java @@ -2257,8 +2257,8 @@ public int getDevicesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.DeviceEnum.Device devices = 9; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of devices at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for devices to set. * @return This builder for chaining. */ public Builder setDevicesValue( @@ -2730,8 +2730,8 @@ public int getAdvertisingChannelTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType advertising_channel_types = 12; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of advertisingChannelTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for advertisingChannelTypes to set. * @return This builder for chaining. */ public Builder setAdvertisingChannelTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategy.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategy.java index cb03321805..8dce602656 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategy.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategy.java @@ -875,7 +875,7 @@ public com.google.ads.googleads.v11.common.TargetCpaOrBuilder getTargetCpaOrBuil public static final int TARGET_IMPRESSION_SHARE_FIELD_NUMBER = 48; /** *
-   * A bidding strategy that automatically optimizes towards a desired
+   * A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -888,7 +888,7 @@ public boolean hasTargetImpressionShare() { } /** *
-   * A bidding strategy that automatically optimizes towards a desired
+   * A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -904,7 +904,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShare getTargetImpres } /** *
-   * A bidding strategy that automatically optimizes towards a desired
+   * A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -3299,7 +3299,7 @@ public com.google.ads.googleads.v11.common.TargetCpaOrBuilder getTargetCpaOrBuil com.google.ads.googleads.v11.common.TargetImpressionShare, com.google.ads.googleads.v11.common.TargetImpressionShare.Builder, com.google.ads.googleads.v11.common.TargetImpressionShareOrBuilder> targetImpressionShareBuilder_; /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3312,7 +3312,7 @@ public boolean hasTargetImpressionShare() { } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3335,7 +3335,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShare getTargetImpres } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3356,7 +3356,7 @@ public Builder setTargetImpressionShare(com.google.ads.googleads.v11.common.Targ } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3375,7 +3375,7 @@ public Builder setTargetImpressionShare( } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3403,7 +3403,7 @@ public Builder mergeTargetImpressionShare(com.google.ads.googleads.v11.common.Ta } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3427,7 +3427,7 @@ public Builder clearTargetImpressionShare() { } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3438,7 +3438,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShare.Builder getTarg } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* @@ -3457,7 +3457,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShareOrBuilder getTar } /** *
-     * A bidding strategy that automatically optimizes towards a desired
+     * A bidding strategy that automatically optimizes towards a chosen
      * percentage of impressions.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategyOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategyOrBuilder.java index be310338a3..b49c4a5f43 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategyOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BiddingStrategyOrBuilder.java @@ -373,7 +373,7 @@ public interface BiddingStrategyOrBuilder extends /** *
-   * A bidding strategy that automatically optimizes towards a desired
+   * A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -383,7 +383,7 @@ public interface BiddingStrategyOrBuilder extends boolean hasTargetImpressionShare(); /** *
-   * A bidding strategy that automatically optimizes towards a desired
+   * A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* @@ -393,7 +393,7 @@ public interface BiddingStrategyOrBuilder extends com.google.ads.googleads.v11.common.TargetImpressionShare getTargetImpressionShare(); /** *
-   * A bidding strategy that automatically optimizes towards a desired
+   * A bidding strategy that automatically optimizes towards a chosen
    * percentage of impressions.
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BillingSetup.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BillingSetup.java index a37d931750..7d069a3693 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BillingSetup.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/BillingSetup.java @@ -159,7 +159,8 @@ public interface PaymentsAccountInfoOrBuilder extends *
      * Output only. A 16 digit id used to identify the payments account associated with the
      * billing setup.
-     * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+     * This must be passed as a string with dashes, for example,
+     * "1234-5678-9012-3456".
      * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -170,7 +171,8 @@ public interface PaymentsAccountInfoOrBuilder extends *
      * Output only. A 16 digit id used to identify the payments account associated with the
      * billing setup.
-     * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+     * This must be passed as a string with dashes, for example,
+     * "1234-5678-9012-3456".
      * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -181,7 +183,8 @@ public interface PaymentsAccountInfoOrBuilder extends *
      * Output only. A 16 digit id used to identify the payments account associated with the
      * billing setup.
-     * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+     * This must be passed as a string with dashes, for example,
+     * "1234-5678-9012-3456".
      * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -232,7 +235,8 @@ public interface PaymentsAccountInfoOrBuilder extends *
      * Immutable. A 12 digit id used to identify the payments profile associated with the
      * billing setup.
-     * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+     * This must be passed in as a string with dashes, for example,
+     * "1234-5678-9012".
      * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -243,7 +247,8 @@ public interface PaymentsAccountInfoOrBuilder extends *
      * Immutable. A 12 digit id used to identify the payments profile associated with the
      * billing setup.
-     * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+     * This must be passed in as a string with dashes, for example,
+     * "1234-5678-9012".
      * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -254,7 +259,8 @@ public interface PaymentsAccountInfoOrBuilder extends *
      * Immutable. A 12 digit id used to identify the payments profile associated with the
      * billing setup.
-     * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+     * This must be passed in as a string with dashes, for example,
+     * "1234-5678-9012".
      * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -294,8 +300,8 @@ public interface PaymentsAccountInfoOrBuilder extends /** *
-     * Output only. A secondary payments profile id present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile id present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -304,8 +310,8 @@ public interface PaymentsAccountInfoOrBuilder extends boolean hasSecondaryPaymentsProfileId(); /** *
-     * Output only. A secondary payments profile id present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile id present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -314,8 +320,8 @@ public interface PaymentsAccountInfoOrBuilder extends java.lang.String getSecondaryPaymentsProfileId(); /** *
-     * Output only. A secondary payments profile id present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile id present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -450,7 +456,8 @@ private PaymentsAccountInfo( *
      * Output only. A 16 digit id used to identify the payments account associated with the
      * billing setup.
-     * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+     * This must be passed as a string with dashes, for example,
+     * "1234-5678-9012-3456".
      * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -464,7 +471,8 @@ public boolean hasPaymentsAccountId() { *
      * Output only. A 16 digit id used to identify the payments account associated with the
      * billing setup.
-     * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+     * This must be passed as a string with dashes, for example,
+     * "1234-5678-9012-3456".
      * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -487,7 +495,8 @@ public java.lang.String getPaymentsAccountId() { *
      * Output only. A 16 digit id used to identify the payments account associated with the
      * billing setup.
-     * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+     * This must be passed as a string with dashes, for example,
+     * "1234-5678-9012-3456".
      * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -581,7 +590,8 @@ public java.lang.String getPaymentsAccountName() { *
      * Immutable. A 12 digit id used to identify the payments profile associated with the
      * billing setup.
-     * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+     * This must be passed in as a string with dashes, for example,
+     * "1234-5678-9012".
      * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -595,7 +605,8 @@ public boolean hasPaymentsProfileId() { *
      * Immutable. A 12 digit id used to identify the payments profile associated with the
      * billing setup.
-     * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+     * This must be passed in as a string with dashes, for example,
+     * "1234-5678-9012".
      * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -618,7 +629,8 @@ public java.lang.String getPaymentsProfileId() { *
      * Immutable. A 12 digit id used to identify the payments profile associated with the
      * billing setup.
-     * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+     * This must be passed in as a string with dashes, for example,
+     * "1234-5678-9012".
      * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -701,8 +713,8 @@ public java.lang.String getPaymentsProfileName() { private volatile java.lang.Object secondaryPaymentsProfileId_; /** *
-     * Output only. A secondary payments profile id present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile id present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -714,8 +726,8 @@ public boolean hasSecondaryPaymentsProfileId() { } /** *
-     * Output only. A secondary payments profile id present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile id present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -736,8 +748,8 @@ public java.lang.String getSecondaryPaymentsProfileId() { } /** *
-     * Output only. A secondary payments profile id present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile id present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1186,7 +1198,8 @@ public Builder mergeFrom( *
        * Output only. A 16 digit id used to identify the payments account associated with the
        * billing setup.
-       * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+       * This must be passed as a string with dashes, for example,
+       * "1234-5678-9012-3456".
        * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1199,7 +1212,8 @@ public boolean hasPaymentsAccountId() { *
        * Output only. A 16 digit id used to identify the payments account associated with the
        * billing setup.
-       * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+       * This must be passed as a string with dashes, for example,
+       * "1234-5678-9012-3456".
        * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1221,7 +1235,8 @@ public java.lang.String getPaymentsAccountId() { *
        * Output only. A 16 digit id used to identify the payments account associated with the
        * billing setup.
-       * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+       * This must be passed as a string with dashes, for example,
+       * "1234-5678-9012-3456".
        * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1244,7 +1259,8 @@ public java.lang.String getPaymentsAccountId() { *
        * Output only. A 16 digit id used to identify the payments account associated with the
        * billing setup.
-       * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+       * This must be passed as a string with dashes, for example,
+       * "1234-5678-9012-3456".
        * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1265,7 +1281,8 @@ public Builder setPaymentsAccountId( *
        * Output only. A 16 digit id used to identify the payments account associated with the
        * billing setup.
-       * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+       * This must be passed as a string with dashes, for example,
+       * "1234-5678-9012-3456".
        * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1281,7 +1298,8 @@ public Builder clearPaymentsAccountId() { *
        * Output only. A 16 digit id used to identify the payments account associated with the
        * billing setup.
-       * This must be passed as a string with dashes, e.g. "1234-5678-9012-3456".
+       * This must be passed as a string with dashes, for example,
+       * "1234-5678-9012-3456".
        * 
* * optional string payments_account_id = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1430,7 +1448,8 @@ public Builder setPaymentsAccountNameBytes( *
        * Immutable. A 12 digit id used to identify the payments profile associated with the
        * billing setup.
-       * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+       * This must be passed in as a string with dashes, for example,
+       * "1234-5678-9012".
        * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1443,7 +1462,8 @@ public boolean hasPaymentsProfileId() { *
        * Immutable. A 12 digit id used to identify the payments profile associated with the
        * billing setup.
-       * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+       * This must be passed in as a string with dashes, for example,
+       * "1234-5678-9012".
        * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1465,7 +1485,8 @@ public java.lang.String getPaymentsProfileId() { *
        * Immutable. A 12 digit id used to identify the payments profile associated with the
        * billing setup.
-       * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+       * This must be passed in as a string with dashes, for example,
+       * "1234-5678-9012".
        * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1488,7 +1509,8 @@ public java.lang.String getPaymentsProfileId() { *
        * Immutable. A 12 digit id used to identify the payments profile associated with the
        * billing setup.
-       * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+       * This must be passed in as a string with dashes, for example,
+       * "1234-5678-9012".
        * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1509,7 +1531,8 @@ public Builder setPaymentsProfileId( *
        * Immutable. A 12 digit id used to identify the payments profile associated with the
        * billing setup.
-       * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+       * This must be passed in as a string with dashes, for example,
+       * "1234-5678-9012".
        * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1525,7 +1548,8 @@ public Builder clearPaymentsProfileId() { *
        * Immutable. A 12 digit id used to identify the payments profile associated with the
        * billing setup.
-       * This must be passed in as a string with dashes, e.g. "1234-5678-9012".
+       * This must be passed in as a string with dashes, for example,
+       * "1234-5678-9012".
        * 
* * optional string payments_profile_id = 8 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1654,8 +1678,8 @@ public Builder setPaymentsProfileNameBytes( private java.lang.Object secondaryPaymentsProfileId_ = ""; /** *
-       * Output only. A secondary payments profile id present in uncommon situations, e.g.
-       * when a sequential liability agreement has been arranged.
+       * Output only. A secondary payments profile id present in uncommon situations, for
+       * example, when a sequential liability agreement has been arranged.
        * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1666,8 +1690,8 @@ public boolean hasSecondaryPaymentsProfileId() { } /** *
-       * Output only. A secondary payments profile id present in uncommon situations, e.g.
-       * when a sequential liability agreement has been arranged.
+       * Output only. A secondary payments profile id present in uncommon situations, for
+       * example, when a sequential liability agreement has been arranged.
        * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1687,8 +1711,8 @@ public java.lang.String getSecondaryPaymentsProfileId() { } /** *
-       * Output only. A secondary payments profile id present in uncommon situations, e.g.
-       * when a sequential liability agreement has been arranged.
+       * Output only. A secondary payments profile id present in uncommon situations, for
+       * example, when a sequential liability agreement has been arranged.
        * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1709,8 +1733,8 @@ public java.lang.String getSecondaryPaymentsProfileId() { } /** *
-       * Output only. A secondary payments profile id present in uncommon situations, e.g.
-       * when a sequential liability agreement has been arranged.
+       * Output only. A secondary payments profile id present in uncommon situations, for
+       * example, when a sequential liability agreement has been arranged.
        * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1729,8 +1753,8 @@ public Builder setSecondaryPaymentsProfileId( } /** *
-       * Output only. A secondary payments profile id present in uncommon situations, e.g.
-       * when a sequential liability agreement has been arranged.
+       * Output only. A secondary payments profile id present in uncommon situations, for
+       * example, when a sequential liability agreement has been arranged.
        * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1744,8 +1768,8 @@ public Builder clearSecondaryPaymentsProfileId() { } /** *
-       * Output only. A secondary payments profile id present in uncommon situations, e.g.
-       * when a sequential liability agreement has been arranged.
+       * Output only. A secondary payments profile id present in uncommon situations, for
+       * example, when a sequential liability agreement has been arranged.
        * 
* * optional string secondary_payments_profile_id = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSetting.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSetting.java index 390ffc8391..cdefd350b2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSetting.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSetting.java @@ -109,7 +109,7 @@ private CallReportingSetting( private boolean callReportingEnabled_; /** *
-   * Enable reporting of phone call events by redirecting them via Google
+   * Enable reporting of phone call events by redirecting them through Google
    * System.
    * 
* @@ -122,7 +122,7 @@ public boolean hasCallReportingEnabled() { } /** *
-   * Enable reporting of phone call events by redirecting them via Google
+   * Enable reporting of phone call events by redirecting them through Google
    * System.
    * 
* @@ -599,7 +599,7 @@ public Builder mergeFrom( private boolean callReportingEnabled_ ; /** *
-     * Enable reporting of phone call events by redirecting them via Google
+     * Enable reporting of phone call events by redirecting them through Google
      * System.
      * 
* @@ -612,7 +612,7 @@ public boolean hasCallReportingEnabled() { } /** *
-     * Enable reporting of phone call events by redirecting them via Google
+     * Enable reporting of phone call events by redirecting them through Google
      * System.
      * 
* @@ -625,7 +625,7 @@ public boolean getCallReportingEnabled() { } /** *
-     * Enable reporting of phone call events by redirecting them via Google
+     * Enable reporting of phone call events by redirecting them through Google
      * System.
      * 
* @@ -641,7 +641,7 @@ public Builder setCallReportingEnabled(boolean value) { } /** *
-     * Enable reporting of phone call events by redirecting them via Google
+     * Enable reporting of phone call events by redirecting them through Google
      * System.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSettingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSettingOrBuilder.java index 53cfc2f887..7603fc3079 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSettingOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CallReportingSettingOrBuilder.java @@ -9,7 +9,7 @@ public interface CallReportingSettingOrBuilder extends /** *
-   * Enable reporting of phone call events by redirecting them via Google
+   * Enable reporting of phone call events by redirecting them through Google
    * System.
    * 
* @@ -19,7 +19,7 @@ public interface CallReportingSettingOrBuilder extends boolean hasCallReportingEnabled(); /** *
-   * Enable reporting of phone call events by redirecting them via Google
+   * Enable reporting of phone call events by redirecting them through Google
    * System.
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Campaign.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Campaign.java index 2aeb9edf1e..a797a52cfe 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Campaign.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Campaign.java @@ -24,6 +24,7 @@ private Campaign() { name_ = ""; status_ = 0; servingStatus_ = 0; + biddingStrategySystemStatus_ = 0; adServingOptimizationStatus_ = 0; advertisingChannelType_ = 0; advertisingChannelSubType_ = 0; @@ -651,6 +652,12 @@ private Campaign( break; } + case 624: { + int rawValue = input.readEnum(); + + biddingStrategySystemStatus_ = rawValue; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -3207,8 +3214,8 @@ public interface DynamicSearchAdsSettingOrBuilder extends /** *
-     * Required. The Internet domain name that this setting represents, e.g., "google.com"
-     * or "www.google.com".
+     * Required. The Internet domain name that this setting represents, for example,
+     * "google.com" or "www.google.com".
      * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -3217,8 +3224,8 @@ public interface DynamicSearchAdsSettingOrBuilder extends java.lang.String getDomainName(); /** *
-     * Required. The Internet domain name that this setting represents, e.g., "google.com"
-     * or "www.google.com".
+     * Required. The Internet domain name that this setting represents, for example,
+     * "google.com" or "www.google.com".
      * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -3229,7 +3236,8 @@ public interface DynamicSearchAdsSettingOrBuilder extends /** *
-     * Required. The language code specifying the language of the domain, e.g., "en".
+     * Required. The language code specifying the language of the domain, for example,
+     * "en".
      * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -3238,7 +3246,8 @@ public interface DynamicSearchAdsSettingOrBuilder extends java.lang.String getLanguageCode(); /** *
-     * Required. The language code specifying the language of the domain, e.g., "en".
+     * Required. The language code specifying the language of the domain, for example,
+     * "en".
      * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -3428,8 +3437,8 @@ private DynamicSearchAdsSetting( private volatile java.lang.Object domainName_; /** *
-     * Required. The Internet domain name that this setting represents, e.g., "google.com"
-     * or "www.google.com".
+     * Required. The Internet domain name that this setting represents, for example,
+     * "google.com" or "www.google.com".
      * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -3450,8 +3459,8 @@ public java.lang.String getDomainName() { } /** *
-     * Required. The Internet domain name that this setting represents, e.g., "google.com"
-     * or "www.google.com".
+     * Required. The Internet domain name that this setting represents, for example,
+     * "google.com" or "www.google.com".
      * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -3476,7 +3485,8 @@ public java.lang.String getDomainName() { private volatile java.lang.Object languageCode_; /** *
-     * Required. The language code specifying the language of the domain, e.g., "en".
+     * Required. The language code specifying the language of the domain, for example,
+     * "en".
      * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -3497,7 +3507,8 @@ public java.lang.String getLanguageCode() { } /** *
-     * Required. The language code specifying the language of the domain, e.g., "en".
+     * Required. The language code specifying the language of the domain, for example,
+     * "en".
      * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -3986,8 +3997,8 @@ public Builder mergeFrom( private java.lang.Object domainName_ = ""; /** *
-       * Required. The Internet domain name that this setting represents, e.g., "google.com"
-       * or "www.google.com".
+       * Required. The Internet domain name that this setting represents, for example,
+       * "google.com" or "www.google.com".
        * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -4007,8 +4018,8 @@ public java.lang.String getDomainName() { } /** *
-       * Required. The Internet domain name that this setting represents, e.g., "google.com"
-       * or "www.google.com".
+       * Required. The Internet domain name that this setting represents, for example,
+       * "google.com" or "www.google.com".
        * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -4029,8 +4040,8 @@ public java.lang.String getDomainName() { } /** *
-       * Required. The Internet domain name that this setting represents, e.g., "google.com"
-       * or "www.google.com".
+       * Required. The Internet domain name that this setting represents, for example,
+       * "google.com" or "www.google.com".
        * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -4049,8 +4060,8 @@ public Builder setDomainName( } /** *
-       * Required. The Internet domain name that this setting represents, e.g., "google.com"
-       * or "www.google.com".
+       * Required. The Internet domain name that this setting represents, for example,
+       * "google.com" or "www.google.com".
        * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -4064,8 +4075,8 @@ public Builder clearDomainName() { } /** *
-       * Required. The Internet domain name that this setting represents, e.g., "google.com"
-       * or "www.google.com".
+       * Required. The Internet domain name that this setting represents, for example,
+       * "google.com" or "www.google.com".
        * 
* * string domain_name = 6 [(.google.api.field_behavior) = REQUIRED]; @@ -4087,7 +4098,8 @@ public Builder setDomainNameBytes( private java.lang.Object languageCode_ = ""; /** *
-       * Required. The language code specifying the language of the domain, e.g., "en".
+       * Required. The language code specifying the language of the domain, for example,
+       * "en".
        * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -4107,7 +4119,8 @@ public java.lang.String getLanguageCode() { } /** *
-       * Required. The language code specifying the language of the domain, e.g., "en".
+       * Required. The language code specifying the language of the domain, for example,
+       * "en".
        * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -4128,7 +4141,8 @@ public java.lang.String getLanguageCode() { } /** *
-       * Required. The language code specifying the language of the domain, e.g., "en".
+       * Required. The language code specifying the language of the domain, for example,
+       * "en".
        * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -4147,7 +4161,8 @@ public Builder setLanguageCode( } /** *
-       * Required. The language code specifying the language of the domain, e.g., "en".
+       * Required. The language code specifying the language of the domain, for example,
+       * "en".
        * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -4161,7 +4176,8 @@ public Builder clearLanguageCode() { } /** *
-       * Required. The language code specifying the language of the domain, e.g., "en".
+       * Required. The language code specifying the language of the domain, for example,
+       * "en".
        * 
* * string language_code = 7 [(.google.api.field_behavior) = REQUIRED]; @@ -4466,7 +4482,7 @@ public interface ShoppingSettingOrBuilder extends * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -4479,7 +4495,7 @@ public interface ShoppingSettingOrBuilder extends * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -4492,7 +4508,7 @@ public interface ShoppingSettingOrBuilder extends * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -4506,7 +4522,7 @@ public interface ShoppingSettingOrBuilder extends * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -4520,7 +4536,7 @@ public interface ShoppingSettingOrBuilder extends * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -4749,7 +4765,7 @@ public long getMerchantId() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -4765,7 +4781,7 @@ public boolean hasSalesCountry() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -4790,7 +4806,7 @@ public java.lang.String getSalesCountry() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -4818,7 +4834,7 @@ public java.lang.String getSalesCountry() { * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -4844,7 +4860,7 @@ public java.lang.String getFeedLabel() { * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -5449,7 +5465,7 @@ public Builder clearMerchantId() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -5464,7 +5480,7 @@ public boolean hasSalesCountry() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -5488,7 +5504,7 @@ public java.lang.String getSalesCountry() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -5513,7 +5529,7 @@ public java.lang.String getSalesCountry() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -5536,7 +5552,7 @@ public Builder setSalesCountry( * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -5554,7 +5570,7 @@ public Builder clearSalesCountry() { * Only one of feed_label or sales_country can be set. * Field is immutable except for clearing. * Once this field is cleared, you must use feed_label if you - * wish to set the sales country. + * want to set the sales country. * * * optional string sales_country = 6; @@ -5579,7 +5595,7 @@ public Builder setSalesCountryBytes( * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -5604,7 +5620,7 @@ public java.lang.String getFeedLabel() { * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -5630,7 +5646,7 @@ public java.lang.String getFeedLabel() { * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -5654,7 +5670,7 @@ public Builder setFeedLabel( * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -5673,7 +5689,7 @@ public Builder clearFeedLabel() { * Feed label of products to include in the campaign. * Only one of feed_label or sales_country can be set. * If used instead of sales_country, the feed_label field accepts country - * codes in the same format i.e. 'XX'. + * codes in the same format for example: 'XX'. * Otherwise can be any string used for feed label in Google Merchant * Center. * @@ -10982,8 +10998,8 @@ public int getOptimizationGoalTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.OptimizationGoalTypeEnum.OptimizationGoalType optimization_goal_types = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of optimizationGoalTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for optimizationGoalTypes to set. * @return This builder for chaining. */ public Builder setOptimizationGoalTypesValue( @@ -13658,6 +13674,33 @@ public java.lang.String getName() { return result == null ? com.google.ads.googleads.v11.enums.CampaignServingStatusEnum.CampaignServingStatus.UNRECOGNIZED : result; } + public static final int BIDDING_STRATEGY_SYSTEM_STATUS_FIELD_NUMBER = 78; + private int biddingStrategySystemStatus_; + /** + *
+   * Output only. The system status of the campaign's bidding strategy.
+   * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for biddingStrategySystemStatus. + */ + @java.lang.Override public int getBiddingStrategySystemStatusValue() { + return biddingStrategySystemStatus_; + } + /** + *
+   * Output only. The system status of the campaign's bidding strategy.
+   * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The biddingStrategySystemStatus. + */ + @java.lang.Override public com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus getBiddingStrategySystemStatus() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus result = com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus.valueOf(biddingStrategySystemStatus_); + return result == null ? com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus.UNRECOGNIZED : result; + } + public static final int AD_SERVING_OPTIMIZATION_STATUS_FIELD_NUMBER = 8; private int adServingOptimizationStatus_; /** @@ -14720,7 +14763,9 @@ public java.lang.String getCampaignGroup() { /** *
    * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-   * format.
+   * format. On create, defaults to 2037-12-30, which means the campaign will
+   * run indefinitely. To set an existing campaign to run indefinitely, set this
+   * field to 2037-12-30.
    * 
* * optional string end_date = 64; @@ -14733,7 +14778,9 @@ public boolean hasEndDate() { /** *
    * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-   * format.
+   * format. On create, defaults to 2037-12-30, which means the campaign will
+   * run indefinitely. To set an existing campaign to run indefinitely, set this
+   * field to 2037-12-30.
    * 
* * optional string end_date = 64; @@ -14755,7 +14802,9 @@ public java.lang.String getEndDate() { /** *
    * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-   * format.
+   * format. On create, defaults to 2037-12-30, which means the campaign will
+   * run indefinitely. To set an existing campaign to run indefinitely, set this
+   * field to 2037-12-30.
    * 
* * optional string end_date = 64; @@ -15755,7 +15804,7 @@ public com.google.ads.googleads.v11.common.TargetCpaOrBuilder getTargetCpaOrBuil /** *
    * Target Impression Share bidding strategy. An automated bidding strategy
-   * that sets bids to achieve a desired percentage of impressions.
+   * that sets bids to achieve a chosen percentage of impressions.
    * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -15768,7 +15817,7 @@ public boolean hasTargetImpressionShare() { /** *
    * Target Impression Share bidding strategy. An automated bidding strategy
-   * that sets bids to achieve a desired percentage of impressions.
+   * that sets bids to achieve a chosen percentage of impressions.
    * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -15784,7 +15833,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShare getTargetImpres /** *
    * Target Impression Share bidding strategy. An automated bidding strategy
-   * that sets bids to achieve a desired percentage of impressions.
+   * that sets bids to achieve a chosen percentage of impressions.
    * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -16168,6 +16217,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (performanceMaxUpgrade_ != null) { output.writeMessage(77, getPerformanceMaxUpgrade()); } + if (biddingStrategySystemStatus_ != com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus.UNSPECIFIED.getNumber()) { + output.writeEnum(78, biddingStrategySystemStatus_); + } unknownFields.writeTo(output); } @@ -16402,6 +16454,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(77, getPerformanceMaxUpgrade()); } + if (biddingStrategySystemStatus_ != com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(78, biddingStrategySystemStatus_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -16431,6 +16487,7 @@ public boolean equals(final java.lang.Object obj) { } if (status_ != other.status_) return false; if (servingStatus_ != other.servingStatus_) return false; + if (biddingStrategySystemStatus_ != other.biddingStrategySystemStatus_) return false; if (adServingOptimizationStatus_ != other.adServingOptimizationStatus_) return false; if (advertisingChannelType_ != other.advertisingChannelType_) return false; if (advertisingChannelSubType_ != other.advertisingChannelSubType_) return false; @@ -16660,6 +16717,8 @@ public int hashCode() { hash = (53 * hash) + status_; hash = (37 * hash) + SERVING_STATUS_FIELD_NUMBER; hash = (53 * hash) + servingStatus_; + hash = (37 * hash) + BIDDING_STRATEGY_SYSTEM_STATUS_FIELD_NUMBER; + hash = (53 * hash) + biddingStrategySystemStatus_; hash = (37 * hash) + AD_SERVING_OPTIMIZATION_STATUS_FIELD_NUMBER; hash = (53 * hash) + adServingOptimizationStatus_; hash = (37 * hash) + ADVERTISING_CHANNEL_TYPE_FIELD_NUMBER; @@ -17004,6 +17063,8 @@ public Builder clear() { servingStatus_ = 0; + biddingStrategySystemStatus_ = 0; + adServingOptimizationStatus_ = 0; advertisingChannelType_ = 0; @@ -17191,6 +17252,7 @@ public com.google.ads.googleads.v11.resources.Campaign buildPartial() { result.name_ = name_; result.status_ = status_; result.servingStatus_ = servingStatus_; + result.biddingStrategySystemStatus_ = biddingStrategySystemStatus_; result.adServingOptimizationStatus_ = adServingOptimizationStatus_; result.advertisingChannelType_ = advertisingChannelType_; result.advertisingChannelSubType_ = advertisingChannelSubType_; @@ -17508,6 +17570,9 @@ public Builder mergeFrom(com.google.ads.googleads.v11.resources.Campaign other) if (other.servingStatus_ != 0) { setServingStatusValue(other.getServingStatusValue()); } + if (other.biddingStrategySystemStatus_ != 0) { + setBiddingStrategySystemStatusValue(other.getBiddingStrategySystemStatusValue()); + } if (other.adServingOptimizationStatus_ != 0) { setAdServingOptimizationStatusValue(other.getAdServingOptimizationStatusValue()); } @@ -18247,6 +18312,80 @@ public Builder clearServingStatus() { return this; } + private int biddingStrategySystemStatus_ = 0; + /** + *
+     * Output only. The system status of the campaign's bidding strategy.
+     * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for biddingStrategySystemStatus. + */ + @java.lang.Override public int getBiddingStrategySystemStatusValue() { + return biddingStrategySystemStatus_; + } + /** + *
+     * Output only. The system status of the campaign's bidding strategy.
+     * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The enum numeric value on the wire for biddingStrategySystemStatus to set. + * @return This builder for chaining. + */ + public Builder setBiddingStrategySystemStatusValue(int value) { + + biddingStrategySystemStatus_ = value; + onChanged(); + return this; + } + /** + *
+     * Output only. The system status of the campaign's bidding strategy.
+     * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The biddingStrategySystemStatus. + */ + @java.lang.Override + public com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus getBiddingStrategySystemStatus() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus result = com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus.valueOf(biddingStrategySystemStatus_); + return result == null ? com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus.UNRECOGNIZED : result; + } + /** + *
+     * Output only. The system status of the campaign's bidding strategy.
+     * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @param value The biddingStrategySystemStatus to set. + * @return This builder for chaining. + */ + public Builder setBiddingStrategySystemStatus(com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus value) { + if (value == null) { + throw new NullPointerException(); + } + + biddingStrategySystemStatus_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
+     * Output only. The system status of the campaign's bidding strategy.
+     * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return This builder for chaining. + */ + public Builder clearBiddingStrategySystemStatus() { + + biddingStrategySystemStatus_ = 0; + onChanged(); + return this; + } + private int adServingOptimizationStatus_ = 0; /** *
@@ -21561,7 +21700,9 @@ public Builder setCampaignGroupBytes(
     /**
      * 
      * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-     * format.
+     * format. On create, defaults to 2037-12-30, which means the campaign will
+     * run indefinitely. To set an existing campaign to run indefinitely, set this
+     * field to 2037-12-30.
      * 
* * optional string end_date = 64; @@ -21573,7 +21714,9 @@ public boolean hasEndDate() { /** *
      * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-     * format.
+     * format. On create, defaults to 2037-12-30, which means the campaign will
+     * run indefinitely. To set an existing campaign to run indefinitely, set this
+     * field to 2037-12-30.
      * 
* * optional string end_date = 64; @@ -21594,7 +21737,9 @@ public java.lang.String getEndDate() { /** *
      * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-     * format.
+     * format. On create, defaults to 2037-12-30, which means the campaign will
+     * run indefinitely. To set an existing campaign to run indefinitely, set this
+     * field to 2037-12-30.
      * 
* * optional string end_date = 64; @@ -21616,7 +21761,9 @@ public java.lang.String getEndDate() { /** *
      * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-     * format.
+     * format. On create, defaults to 2037-12-30, which means the campaign will
+     * run indefinitely. To set an existing campaign to run indefinitely, set this
+     * field to 2037-12-30.
      * 
* * optional string end_date = 64; @@ -21636,7 +21783,9 @@ public Builder setEndDate( /** *
      * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-     * format.
+     * format. On create, defaults to 2037-12-30, which means the campaign will
+     * run indefinitely. To set an existing campaign to run indefinitely, set this
+     * field to 2037-12-30.
      * 
* * optional string end_date = 64; @@ -21651,7 +21800,9 @@ public Builder clearEndDate() { /** *
      * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-     * format.
+     * format. On create, defaults to 2037-12-30, which means the campaign will
+     * run indefinitely. To set an existing campaign to run indefinitely, set this
+     * field to 2037-12-30.
      * 
* * optional string end_date = 64; @@ -23127,8 +23278,8 @@ public int getExcludedParentAssetFieldTypesValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.AssetFieldTypeEnum.AssetFieldType excluded_parent_asset_field_types = 69; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of excludedParentAssetFieldTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for excludedParentAssetFieldTypes to set. * @return This builder for chaining. */ public Builder setExcludedParentAssetFieldTypesValue( @@ -25046,7 +25197,7 @@ public com.google.ads.googleads.v11.common.TargetCpaOrBuilder getTargetCpaOrBuil /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25059,7 +25210,7 @@ public boolean hasTargetImpressionShare() { /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25082,7 +25233,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShare getTargetImpres /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25103,7 +25254,7 @@ public Builder setTargetImpressionShare(com.google.ads.googleads.v11.common.Targ /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25122,7 +25273,7 @@ public Builder setTargetImpressionShare( /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25150,7 +25301,7 @@ public Builder mergeTargetImpressionShare(com.google.ads.googleads.v11.common.Ta /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25174,7 +25325,7 @@ public Builder clearTargetImpressionShare() { /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25185,7 +25336,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShare.Builder getTarg /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -25204,7 +25355,7 @@ public com.google.ads.googleads.v11.common.TargetImpressionShareOrBuilder getTar /** *
      * Target Impression Share bidding strategy. An automated bidding strategy
-     * that sets bids to achieve a desired percentage of impressions.
+     * that sets bids to achieve a chosen percentage of impressions.
      * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignFeed.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignFeed.java index 21d4000884..0c04327820 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignFeed.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignFeed.java @@ -1401,8 +1401,8 @@ public int getPlaceholderTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 4; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of placeholderTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for placeholderTypes to set. * @return This builder for chaining. */ public Builder setPlaceholderTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignOrBuilder.java index a7f0209c85..1e1b0e48f6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignOrBuilder.java @@ -131,6 +131,25 @@ public interface CampaignOrBuilder extends */ com.google.ads.googleads.v11.enums.CampaignServingStatusEnum.CampaignServingStatus getServingStatus(); + /** + *
+   * Output only. The system status of the campaign's bidding strategy.
+   * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for biddingStrategySystemStatus. + */ + int getBiddingStrategySystemStatusValue(); + /** + *
+   * Output only. The system status of the campaign's bidding strategy.
+   * 
+ * + * .google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus bidding_strategy_system_status = 78 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The biddingStrategySystemStatus. + */ + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus getBiddingStrategySystemStatus(); + /** *
    * The ad serving optimization status of the campaign.
@@ -833,7 +852,9 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet
   /**
    * 
    * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-   * format.
+   * format. On create, defaults to 2037-12-30, which means the campaign will
+   * run indefinitely. To set an existing campaign to run indefinitely, set this
+   * field to 2037-12-30.
    * 
* * optional string end_date = 64; @@ -843,7 +864,9 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet /** *
    * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-   * format.
+   * format. On create, defaults to 2037-12-30, which means the campaign will
+   * run indefinitely. To set an existing campaign to run indefinitely, set this
+   * field to 2037-12-30.
    * 
* * optional string end_date = 64; @@ -853,7 +876,9 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet /** *
    * The last day of the campaign in serving customer's timezone in YYYY-MM-DD
-   * format.
+   * format. On create, defaults to 2037-12-30, which means the campaign will
+   * run indefinitely. To set an existing campaign to run indefinitely, set this
+   * field to 2037-12-30.
    * 
* * optional string end_date = 64; @@ -1516,7 +1541,7 @@ com.google.ads.googleads.v11.common.FrequencyCapEntryOrBuilder getFrequencyCapsO /** *
    * Target Impression Share bidding strategy. An automated bidding strategy
-   * that sets bids to achieve a desired percentage of impressions.
+   * that sets bids to achieve a chosen percentage of impressions.
    * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -1526,7 +1551,7 @@ com.google.ads.googleads.v11.common.FrequencyCapEntryOrBuilder getFrequencyCapsO /** *
    * Target Impression Share bidding strategy. An automated bidding strategy
-   * that sets bids to achieve a desired percentage of impressions.
+   * that sets bids to achieve a chosen percentage of impressions.
    * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; @@ -1536,7 +1561,7 @@ com.google.ads.googleads.v11.common.FrequencyCapEntryOrBuilder getFrequencyCapsO /** *
    * Target Impression Share bidding strategy. An automated bidding strategy
-   * that sets bids to achieve a desired percentage of impressions.
+   * that sets bids to achieve a chosen percentage of impressions.
    * 
* * .google.ads.googleads.v11.common.TargetImpressionShare target_impression_share = 48; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignProto.java index a94688dec7..7528056ae3 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignProto.java @@ -121,224 +121,229 @@ public static void registerAllExtensions( "_campaign_app_store.proto\032Lgoogle/ads/go" + "ogleads/v11/enums/app_campaign_bidding_s" + "trategy_goal_type.proto\0325google/ads/goog" + - "leads/v11/enums/asset_field_type.proto\032:" + + "leads/v11/enums/asset_field_type.proto\032C" + "google/ads/googleads/v11/enums/bidding_s" + - "trategy_type.proto\032=google/ads/googleads" + - "/v11/enums/brand_safety_suitability.prot" + - "o\032=google/ads/googleads/v11/enums/campai" + - "gn_experiment_type.proto\032\n\006labels\030= \003(\tB.\340A\003\372A(\n&googleads." + - "googleapis.com/CampaignLabel\022o\n\017experime" + - "nt_type\030\021 \001(\0162Q.google.ads.googleads.v11" + - ".enums.CampaignExperimentTypeEnum.Campai" + - "gnExperimentTypeB\003\340A\003\022E\n\rbase_campaign\0308" + - " \001(\tB)\340A\003\372A#\n!googleads.googleapis.com/C" + - "ampaignH\005\210\001\001\022J\n\017campaign_budget\030> \001(\tB,\372" + - "A)\n\'googleads.googleapis.com/CampaignBud" + - "getH\006\210\001\001\022o\n\025bidding_strategy_type\030\026 \001(\0162" + - "K.google.ads.googleads.v11.enums.Bidding" + - "StrategyTypeEnum.BiddingStrategyTypeB\003\340A" + - "\003\022_\n\033accessible_bidding_strategy\030G \001(\tB:" + - "\340A\003\372A4\n2googleads.googleapis.com/Accessi" + - "bleBiddingStrategy\022\027\n\nstart_date\030? \001(\tH\007" + - "\210\001\001\022H\n\016campaign_group\030L \001(\tB+\372A(\n&google" + - "ads.googleapis.com/CampaignGroupH\010\210\001\001\022\025\n" + - "\010end_date\030@ \001(\tH\t\210\001\001\022\035\n\020final_url_suffix" + - "\030A \001(\tH\n\210\001\001\022J\n\016frequency_caps\030( \003(\01322.go" + - "ogle.ads.googleads.v11.common.FrequencyC" + - "apEntry\022~\n\036video_brand_safety_suitabilit" + - "y\030* \001(\0162Q.google.ads.googleads.v11.enums" + - ".BrandSafetySuitabilityEnum.BrandSafetyS" + - "uitabilityB\003\340A\003\022P\n\rvanity_pharma\030, \001(\01329" + - ".google.ads.googleads.v11.resources.Camp" + - "aign.VanityPharma\022b\n\026selective_optimizat" + - "ion\030- \001(\0132B.google.ads.googleads.v11.res" + - "ources.Campaign.SelectiveOptimization\022g\n" + - "\031optimization_goal_setting\0306 \001(\0132D.googl" + - "e.ads.googleads.v11.resources.Campaign.O" + - "ptimizationGoalSetting\022[\n\020tracking_setti" + - "ng\030. \001(\0132<.google.ads.googleads.v11.reso" + - "urces.Campaign.TrackingSettingB\003\340A\003\022Q\n\014p" + - "ayment_mode\0304 \001(\0162;.google.ads.googleads" + - ".v11.enums.PaymentModeEnum.PaymentMode\022$" + - "\n\022optimization_score\030B \001(\001B\003\340A\003H\013\210\001\001\022l\n!" + - "excluded_parent_asset_field_types\030E \003(\0162" + - "A.google.ads.googleads.v11.enums.AssetFi" + - "eldTypeEnum.AssetFieldType\022\"\n\025url_expans" + - "ion_opt_out\030H \001(\010H\014\210\001\001\022h\n\027performance_ma" + - "x_upgrade\030M \001(\0132B.google.ads.googleads.v" + - "11.resources.Campaign.PerformanceMaxUpgr" + - "adeB\003\340A\003\022I\n\020bidding_strategy\030C \001(\tB-\372A*\n" + - "(googleads.googleapis.com/BiddingStrateg" + - "yH\000\022A\n\ncommission\0301 \001(\0132+.google.ads.goo" + - "gleads.v11.common.CommissionH\000\022@\n\nmanual" + - "_cpa\030J \001(\0132*.google.ads.googleads.v11.co" + - "mmon.ManualCpaH\000\022@\n\nmanual_cpc\030\030 \001(\0132*.g" + - "oogle.ads.googleads.v11.common.ManualCpc" + - "H\000\022@\n\nmanual_cpm\030\031 \001(\0132*.google.ads.goog" + - "leads.v11.common.ManualCpmH\000\022E\n\nmanual_c" + - "pv\030% \001(\0132*.google.ads.googleads.v11.comm" + - "on.ManualCpvB\003\340A\003H\000\022T\n\024maximize_conversi" + - "ons\030\036 \001(\01324.google.ads.googleads.v11.com" + - "mon.MaximizeConversionsH\000\022]\n\031maximize_co" + - "nversion_value\030\037 \001(\01328.google.ads.google" + - "ads.v11.common.MaximizeConversionValueH\000" + - "\022@\n\ntarget_cpa\030\032 \001(\0132*.google.ads.google" + - "ads.v11.common.TargetCpaH\000\022Y\n\027target_imp" + - "ression_share\0300 \001(\01326.google.ads.googlea" + - "ds.v11.common.TargetImpressionShareH\000\022B\n" + - "\013target_roas\030\035 \001(\0132+.google.ads.googlead" + - "s.v11.common.TargetRoasH\000\022D\n\014target_spen" + - "d\030\033 \001(\0132,.google.ads.googleads.v11.commo" + - "n.TargetSpendH\000\022B\n\013percent_cpc\030\" \001(\0132+.g" + - "oogle.ads.googleads.v11.common.PercentCp" + - "cH\000\022@\n\ntarget_cpm\030) \001(\0132*.google.ads.goo" + - "gleads.v11.common.TargetCpmH\000\032\237\002\n\025Perfor" + - "manceMaxUpgrade\022K\n\030performance_max_campa" + - "ign\030\001 \001(\tB)\340A\003\372A#\n!googleads.googleapis." + - "com/Campaign\022G\n\024pre_upgrade_campaign\030\002 \001" + - "(\tB)\340A\003\372A#\n!googleads.googleapis.com/Cam" + - "paign\022p\n\006status\030\003 \001(\0162[.google.ads.googl" + - "eads.v11.enums.PerformanceMaxUpgradeStat" + - "usEnum.PerformanceMaxUpgradeStatusB\003\340A\003\032" + - "\231\002\n\017NetworkSettings\022!\n\024target_google_sea" + - "rch\030\005 \001(\010H\000\210\001\001\022\"\n\025target_search_network\030" + - "\006 \001(\010H\001\210\001\001\022#\n\026target_content_network\030\007 \001" + - "(\010H\002\210\001\001\022*\n\035target_partner_search_network" + - "\030\010 \001(\010H\003\210\001\001B\027\n\025_target_google_searchB\030\n\026" + - "_target_search_networkB\031\n\027_target_conten" + - "t_networkB \n\036_target_partner_search_netw" + - "ork\032I\n\020HotelSettingInfo\022!\n\017hotel_center_" + - "id\030\002 \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_hotel_center_id\032\302" + - "\001\n\027DynamicSearchAdsSetting\022\030\n\013domain_nam" + - "e\030\006 \001(\tB\003\340A\002\022\032\n\rlanguage_code\030\007 \001(\tB\003\340A\002" + - "\022#\n\026use_supplied_urls_only\030\010 \001(\010H\000\210\001\001\0221\n" + - "\005feeds\030\t \003(\tB\"\372A\037\n\035googleads.googleapis." + - "com/FeedB\031\n\027_use_supplied_urls_only\032\210\002\n\017" + - "ShoppingSetting\022\035\n\013merchant_id\030\005 \001(\003B\003\340A" + - "\005H\000\210\001\001\022\032\n\rsales_country\030\006 \001(\tH\001\210\001\001\022\022\n\nfe" + - "ed_label\030\n \001(\t\022\036\n\021campaign_priority\030\007 \001(" + - "\005H\002\210\001\001\022\031\n\014enable_local\030\010 \001(\010H\003\210\001\001\022\"\n\025use" + - "_vehicle_inventory\030\t \001(\010B\003\340A\005B\016\n\014_mercha" + - "nt_idB\020\n\016_sales_countryB\024\n\022_campaign_pri" + - "orityB\017\n\r_enable_local\032B\n\017TrackingSettin" + - "g\022\036\n\014tracking_url\030\002 \001(\tB\003\340A\003H\000\210\001\001B\017\n\r_tr" + - "acking_url\032\374\001\n\024GeoTargetTypeSetting\022q\n\030p" + - "ositive_geo_target_type\030\001 \001(\0162O.google.a" + - "ds.googleads.v11.enums.PositiveGeoTarget" + - "TypeEnum.PositiveGeoTargetType\022q\n\030negati" + - "ve_geo_target_type\030\002 \001(\0162O.google.ads.go" + - "ogleads.v11.enums.NegativeGeoTargetTypeE" + - "num.NegativeGeoTargetType\032\177\n\024LocalCampai" + - "gnSetting\022g\n\024location_source_type\030\001 \001(\0162" + - "I.google.ads.googleads.v11.enums.Locatio" + - "nSourceTypeEnum.LocationSourceType\032\256\002\n\022A" + - "ppCampaignSetting\022\215\001\n\032bidding_strategy_g" + - "oal_type\030\001 \001(\0162i.google.ads.googleads.v1" + - "1.enums.AppCampaignBiddingStrategyGoalTy" + - "peEnum.AppCampaignBiddingStrategyGoalTyp" + - "e\022\030\n\006app_id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022c\n\tapp_store" + - "\030\003 \001(\0162K.google.ads.googleads.v11.enums." + - "AppCampaignAppStoreEnum.AppCampaignAppSt" + - "oreB\003\340A\005B\t\n\007_app_id\032\365\001\n\014VanityPharma\022\201\001\n" + - "\036vanity_pharma_display_url_mode\030\001 \001(\0162Y." + - "google.ads.googleads.v11.enums.VanityPha" + - "rmaDisplayUrlModeEnum.VanityPharmaDispla" + - "yUrlMode\022a\n\022vanity_pharma_text\030\002 \001(\0162E.g" + - "oogle.ads.googleads.v11.enums.VanityPhar" + - "maTextEnum.VanityPharmaText\032c\n\025Selective" + - "Optimization\022J\n\022conversion_actions\030\002 \003(\t" + - "B.\372A+\n)googleads.googleapis.com/Conversi" + - "onAction\032\211\001\n\027OptimizationGoalSetting\022n\n\027" + - "optimization_goal_types\030\001 \003(\0162M.google.a" + - "ds.googleads.v11.enums.OptimizationGoalT" + - "ypeEnum.OptimizationGoalType\032R\n\017Audience" + - "Setting\022&\n\024use_audience_grouped\030\001 \001(\010B\003\340" + - "A\005H\000\210\001\001B\027\n\025_use_audience_grouped\032p\n\035Loca" + - "lServicesCampaignSettings\022O\n\rcategory_bi" + - "ds\030\001 \003(\01328.google.ads.googleads.v11.reso" + - "urces.Campaign.CategoryBid\032u\n\013CategoryBi" + - "d\022\030\n\013category_id\030\001 \001(\tH\000\210\001\001\022\"\n\025manual_cp" + - "a_bid_micros\030\002 \001(\003H\001\210\001\001B\016\n\014_category_idB" + - "\030\n\026_manual_cpa_bid_micros:W\352AT\n!googlead" + - "s.googleapis.com/Campaign\022/customers/{cu" + - "stomer_id}/campaigns/{campaign_id}B\033\n\031ca" + - "mpaign_bidding_strategyB\005\n\003_idB\007\n\005_nameB" + - "\030\n\026_tracking_url_templateB\023\n\021_audience_s" + - "ettingB\020\n\016_base_campaignB\022\n\020_campaign_bu" + - "dgetB\r\n\013_start_dateB\021\n\017_campaign_groupB\013" + - "\n\t_end_dateB\023\n\021_final_url_suffixB\025\n\023_opt" + - "imization_scoreB\030\n\026_url_expansion_opt_ou" + - "tB\377\001\n&com.google.ads.googleads.v11.resou" + - "rcesB\rCampaignProtoP\001ZKgoogle.golang.org" + - "/genproto/googleapis/ads/googleads/v11/r" + - "esources;resources\242\002\003GAA\252\002\"Google.Ads.Go" + - "ogleAds.V11.Resources\312\002\"Google\\Ads\\Googl" + - "eAds\\V11\\Resources\352\002&Google::Ads::Google" + - "Ads::V11::Resourcesb\006proto3" + "trategy_system_status.proto\032:google/ads/" + + "googleads/v11/enums/bidding_strategy_typ" + + "e.proto\032=google/ads/googleads/v11/enums/" + + "brand_safety_suitability.proto\032=google/a" + + "ds/googleads/v11/enums/campaign_experime" + + "nt_type.proto\032\n\006labels\030= \003(\tB.\340A\003\372A(\n&go" + + "ogleads.googleapis.com/CampaignLabel\022o\n\017" + + "experiment_type\030\021 \001(\0162Q.google.ads.googl" + + "eads.v11.enums.CampaignExperimentTypeEnu" + + "m.CampaignExperimentTypeB\003\340A\003\022E\n\rbase_ca" + + "mpaign\0308 \001(\tB)\340A\003\372A#\n!googleads.googleap" + + "is.com/CampaignH\005\210\001\001\022J\n\017campaign_budget\030" + + "> \001(\tB,\372A)\n\'googleads.googleapis.com/Cam" + + "paignBudgetH\006\210\001\001\022o\n\025bidding_strategy_typ" + + "e\030\026 \001(\0162K.google.ads.googleads.v11.enums" + + ".BiddingStrategyTypeEnum.BiddingStrategy" + + "TypeB\003\340A\003\022_\n\033accessible_bidding_strategy" + + "\030G \001(\tB:\340A\003\372A4\n2googleads.googleapis.com" + + "/AccessibleBiddingStrategy\022\027\n\nstart_date" + + "\030? \001(\tH\007\210\001\001\022H\n\016campaign_group\030L \001(\tB+\372A(" + + "\n&googleads.googleapis.com/CampaignGroup" + + "H\010\210\001\001\022\025\n\010end_date\030@ \001(\tH\t\210\001\001\022\035\n\020final_ur" + + "l_suffix\030A \001(\tH\n\210\001\001\022J\n\016frequency_caps\030( " + + "\003(\01322.google.ads.googleads.v11.common.Fr" + + "equencyCapEntry\022~\n\036video_brand_safety_su" + + "itability\030* \001(\0162Q.google.ads.googleads.v" + + "11.enums.BrandSafetySuitabilityEnum.Bran" + + "dSafetySuitabilityB\003\340A\003\022P\n\rvanity_pharma" + + "\030, \001(\01329.google.ads.googleads.v11.resour" + + "ces.Campaign.VanityPharma\022b\n\026selective_o" + + "ptimization\030- \001(\0132B.google.ads.googleads" + + ".v11.resources.Campaign.SelectiveOptimiz" + + "ation\022g\n\031optimization_goal_setting\0306 \001(\013" + + "2D.google.ads.googleads.v11.resources.Ca" + + "mpaign.OptimizationGoalSetting\022[\n\020tracki" + + "ng_setting\030. \001(\0132<.google.ads.googleads." + + "v11.resources.Campaign.TrackingSettingB\003" + + "\340A\003\022Q\n\014payment_mode\0304 \001(\0162;.google.ads.g" + + "oogleads.v11.enums.PaymentModeEnum.Payme" + + "ntMode\022$\n\022optimization_score\030B \001(\001B\003\340A\003H" + + "\013\210\001\001\022l\n!excluded_parent_asset_field_type" + + "s\030E \003(\0162A.google.ads.googleads.v11.enums" + + ".AssetFieldTypeEnum.AssetFieldType\022\"\n\025ur" + + "l_expansion_opt_out\030H \001(\010H\014\210\001\001\022h\n\027perfor" + + "mance_max_upgrade\030M \001(\0132B.google.ads.goo" + + "gleads.v11.resources.Campaign.Performanc" + + "eMaxUpgradeB\003\340A\003\022I\n\020bidding_strategy\030C \001" + + "(\tB-\372A*\n(googleads.googleapis.com/Biddin" + + "gStrategyH\000\022A\n\ncommission\0301 \001(\0132+.google" + + ".ads.googleads.v11.common.CommissionH\000\022@" + + "\n\nmanual_cpa\030J \001(\0132*.google.ads.googlead" + + "s.v11.common.ManualCpaH\000\022@\n\nmanual_cpc\030\030" + + " \001(\0132*.google.ads.googleads.v11.common.M" + + "anualCpcH\000\022@\n\nmanual_cpm\030\031 \001(\0132*.google." + + "ads.googleads.v11.common.ManualCpmH\000\022E\n\n" + + "manual_cpv\030% \001(\0132*.google.ads.googleads." + + "v11.common.ManualCpvB\003\340A\003H\000\022T\n\024maximize_" + + "conversions\030\036 \001(\01324.google.ads.googleads" + + ".v11.common.MaximizeConversionsH\000\022]\n\031max" + + "imize_conversion_value\030\037 \001(\01328.google.ad" + + "s.googleads.v11.common.MaximizeConversio" + + "nValueH\000\022@\n\ntarget_cpa\030\032 \001(\0132*.google.ad" + + "s.googleads.v11.common.TargetCpaH\000\022Y\n\027ta" + + "rget_impression_share\0300 \001(\01326.google.ads" + + ".googleads.v11.common.TargetImpressionSh" + + "areH\000\022B\n\013target_roas\030\035 \001(\0132+.google.ads." + + "googleads.v11.common.TargetRoasH\000\022D\n\014tar" + + "get_spend\030\033 \001(\0132,.google.ads.googleads.v" + + "11.common.TargetSpendH\000\022B\n\013percent_cpc\030\"" + + " \001(\0132+.google.ads.googleads.v11.common.P" + + "ercentCpcH\000\022@\n\ntarget_cpm\030) \001(\0132*.google" + + ".ads.googleads.v11.common.TargetCpmH\000\032\237\002" + + "\n\025PerformanceMaxUpgrade\022K\n\030performance_m" + + "ax_campaign\030\001 \001(\tB)\340A\003\372A#\n!googleads.goo" + + "gleapis.com/Campaign\022G\n\024pre_upgrade_camp" + + "aign\030\002 \001(\tB)\340A\003\372A#\n!googleads.googleapis" + + ".com/Campaign\022p\n\006status\030\003 \001(\0162[.google.a" + + "ds.googleads.v11.enums.PerformanceMaxUpg" + + "radeStatusEnum.PerformanceMaxUpgradeStat" + + "usB\003\340A\003\032\231\002\n\017NetworkSettings\022!\n\024target_go" + + "ogle_search\030\005 \001(\010H\000\210\001\001\022\"\n\025target_search_" + + "network\030\006 \001(\010H\001\210\001\001\022#\n\026target_content_net" + + "work\030\007 \001(\010H\002\210\001\001\022*\n\035target_partner_search" + + "_network\030\010 \001(\010H\003\210\001\001B\027\n\025_target_google_se" + + "archB\030\n\026_target_search_networkB\031\n\027_targe" + + "t_content_networkB \n\036_target_partner_sea" + + "rch_network\032I\n\020HotelSettingInfo\022!\n\017hotel" + + "_center_id\030\002 \001(\003B\003\340A\005H\000\210\001\001B\022\n\020_hotel_cen" + + "ter_id\032\302\001\n\027DynamicSearchAdsSetting\022\030\n\013do" + + "main_name\030\006 \001(\tB\003\340A\002\022\032\n\rlanguage_code\030\007 " + + "\001(\tB\003\340A\002\022#\n\026use_supplied_urls_only\030\010 \001(\010" + + "H\000\210\001\001\0221\n\005feeds\030\t \003(\tB\"\372A\037\n\035googleads.goo" + + "gleapis.com/FeedB\031\n\027_use_supplied_urls_o" + + "nly\032\210\002\n\017ShoppingSetting\022\035\n\013merchant_id\030\005" + + " \001(\003B\003\340A\005H\000\210\001\001\022\032\n\rsales_country\030\006 \001(\tH\001\210" + + "\001\001\022\022\n\nfeed_label\030\n \001(\t\022\036\n\021campaign_prior" + + "ity\030\007 \001(\005H\002\210\001\001\022\031\n\014enable_local\030\010 \001(\010H\003\210\001" + + "\001\022\"\n\025use_vehicle_inventory\030\t \001(\010B\003\340A\005B\016\n" + + "\014_merchant_idB\020\n\016_sales_countryB\024\n\022_camp" + + "aign_priorityB\017\n\r_enable_local\032B\n\017Tracki" + + "ngSetting\022\036\n\014tracking_url\030\002 \001(\tB\003\340A\003H\000\210\001" + + "\001B\017\n\r_tracking_url\032\374\001\n\024GeoTargetTypeSett" + + "ing\022q\n\030positive_geo_target_type\030\001 \001(\0162O." + + "google.ads.googleads.v11.enums.PositiveG" + + "eoTargetTypeEnum.PositiveGeoTargetType\022q" + + "\n\030negative_geo_target_type\030\002 \001(\0162O.googl" + + "e.ads.googleads.v11.enums.NegativeGeoTar" + + "getTypeEnum.NegativeGeoTargetType\032\177\n\024Loc" + + "alCampaignSetting\022g\n\024location_source_typ" + + "e\030\001 \001(\0162I.google.ads.googleads.v11.enums" + + ".LocationSourceTypeEnum.LocationSourceTy" + + "pe\032\256\002\n\022AppCampaignSetting\022\215\001\n\032bidding_st" + + "rategy_goal_type\030\001 \001(\0162i.google.ads.goog" + + "leads.v11.enums.AppCampaignBiddingStrate" + + "gyGoalTypeEnum.AppCampaignBiddingStrateg" + + "yGoalType\022\030\n\006app_id\030\004 \001(\tB\003\340A\005H\000\210\001\001\022c\n\ta" + + "pp_store\030\003 \001(\0162K.google.ads.googleads.v1" + + "1.enums.AppCampaignAppStoreEnum.AppCampa" + + "ignAppStoreB\003\340A\005B\t\n\007_app_id\032\365\001\n\014VanityPh" + + "arma\022\201\001\n\036vanity_pharma_display_url_mode\030" + + "\001 \001(\0162Y.google.ads.googleads.v11.enums.V" + + "anityPharmaDisplayUrlModeEnum.VanityPhar" + + "maDisplayUrlMode\022a\n\022vanity_pharma_text\030\002" + + " \001(\0162E.google.ads.googleads.v11.enums.Va" + + "nityPharmaTextEnum.VanityPharmaText\032c\n\025S" + + "electiveOptimization\022J\n\022conversion_actio" + + "ns\030\002 \003(\tB.\372A+\n)googleads.googleapis.com/" + + "ConversionAction\032\211\001\n\027OptimizationGoalSet" + + "ting\022n\n\027optimization_goal_types\030\001 \003(\0162M." + + "google.ads.googleads.v11.enums.Optimizat" + + "ionGoalTypeEnum.OptimizationGoalType\032R\n\017" + + "AudienceSetting\022&\n\024use_audience_grouped\030" + + "\001 \001(\010B\003\340A\005H\000\210\001\001B\027\n\025_use_audience_grouped" + + "\032p\n\035LocalServicesCampaignSettings\022O\n\rcat" + + "egory_bids\030\001 \003(\01328.google.ads.googleads." + + "v11.resources.Campaign.CategoryBid\032u\n\013Ca" + + "tegoryBid\022\030\n\013category_id\030\001 \001(\tH\000\210\001\001\022\"\n\025m" + + "anual_cpa_bid_micros\030\002 \001(\003H\001\210\001\001B\016\n\014_cate" + + "gory_idB\030\n\026_manual_cpa_bid_micros:W\352AT\n!" + + "googleads.googleapis.com/Campaign\022/custo" + + "mers/{customer_id}/campaigns/{campaign_i" + + "d}B\033\n\031campaign_bidding_strategyB\005\n\003_idB\007" + + "\n\005_nameB\030\n\026_tracking_url_templateB\023\n\021_au" + + "dience_settingB\020\n\016_base_campaignB\022\n\020_cam" + + "paign_budgetB\r\n\013_start_dateB\021\n\017_campaign" + + "_groupB\013\n\t_end_dateB\023\n\021_final_url_suffix" + + "B\025\n\023_optimization_scoreB\030\n\026_url_expansio" + + "n_opt_outB\377\001\n&com.google.ads.googleads.v" + + "11.resourcesB\rCampaignProtoP\001ZKgoogle.go" + + "lang.org/genproto/googleapis/ads/googlea" + + "ds/v11/resources;resources\242\002\003GAA\252\002\"Googl" + + "e.Ads.GoogleAds.V11.Resources\312\002\"Google\\A" + + "ds\\GoogleAds\\V11\\Resources\352\002&Google::Ads" + + "::GoogleAds::V11::Resourcesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -354,6 +359,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v11.enums.AppCampaignAppStoreProto.getDescriptor(), com.google.ads.googleads.v11.enums.AppCampaignBiddingStrategyGoalTypeProto.getDescriptor(), com.google.ads.googleads.v11.enums.AssetFieldTypeProto.getDescriptor(), + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusProto.getDescriptor(), com.google.ads.googleads.v11.enums.BiddingStrategyTypeProto.getDescriptor(), com.google.ads.googleads.v11.enums.BrandSafetySuitabilityProto.getDescriptor(), com.google.ads.googleads.v11.enums.CampaignExperimentTypeProto.getDescriptor(), @@ -375,7 +381,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_resources_Campaign_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_resources_Campaign_descriptor, - new java.lang.String[] { "ResourceName", "Id", "Name", "Status", "ServingStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "UrlExpansionOptOut", "PerformanceMaxUpgrade", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "CampaignBiddingStrategy", "Id", "Name", "TrackingUrlTemplate", "AudienceSetting", "BaseCampaign", "CampaignBudget", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "OptimizationScore", "UrlExpansionOptOut", }); + new java.lang.String[] { "ResourceName", "Id", "Name", "Status", "ServingStatus", "BiddingStrategySystemStatus", "AdServingOptimizationStatus", "AdvertisingChannelType", "AdvertisingChannelSubType", "TrackingUrlTemplate", "UrlCustomParameters", "LocalServicesCampaignSettings", "RealTimeBiddingSetting", "NetworkSettings", "HotelSetting", "DynamicSearchAdsSetting", "ShoppingSetting", "TargetingSetting", "AudienceSetting", "GeoTargetTypeSetting", "LocalCampaignSetting", "AppCampaignSetting", "Labels", "ExperimentType", "BaseCampaign", "CampaignBudget", "BiddingStrategyType", "AccessibleBiddingStrategy", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "FrequencyCaps", "VideoBrandSafetySuitability", "VanityPharma", "SelectiveOptimization", "OptimizationGoalSetting", "TrackingSetting", "PaymentMode", "OptimizationScore", "ExcludedParentAssetFieldTypes", "UrlExpansionOptOut", "PerformanceMaxUpgrade", "BiddingStrategy", "Commission", "ManualCpa", "ManualCpc", "ManualCpm", "ManualCpv", "MaximizeConversions", "MaximizeConversionValue", "TargetCpa", "TargetImpressionShare", "TargetRoas", "TargetSpend", "PercentCpc", "TargetCpm", "CampaignBiddingStrategy", "Id", "Name", "TrackingUrlTemplate", "AudienceSetting", "BaseCampaign", "CampaignBudget", "StartDate", "CampaignGroup", "EndDate", "FinalUrlSuffix", "OptimizationScore", "UrlExpansionOptOut", }); internal_static_google_ads_googleads_v11_resources_Campaign_PerformanceMaxUpgrade_descriptor = internal_static_google_ads_googleads_v11_resources_Campaign_descriptor.getNestedTypes().get(0); internal_static_google_ads_googleads_v11_resources_Campaign_PerformanceMaxUpgrade_fieldAccessorTable = new @@ -484,6 +490,7 @@ public static void registerAllExtensions( com.google.ads.googleads.v11.enums.AppCampaignAppStoreProto.getDescriptor(); com.google.ads.googleads.v11.enums.AppCampaignBiddingStrategyGoalTypeProto.getDescriptor(); com.google.ads.googleads.v11.enums.AssetFieldTypeProto.getDescriptor(); + com.google.ads.googleads.v11.enums.BiddingStrategySystemStatusProto.getDescriptor(); com.google.ads.googleads.v11.enums.BiddingStrategyTypeProto.getDescriptor(); com.google.ads.googleads.v11.enums.BrandSafetySuitabilityProto.getDescriptor(); com.google.ads.googleads.v11.enums.CampaignExperimentTypeProto.getDescriptor(); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignSimulation.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignSimulation.java index 72fa8db3f0..3fdc039012 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignSimulation.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CampaignSimulation.java @@ -17,8 +17,8 @@ * SEARCH - BUDGET - UNIFORM * SHOPPING - BUDGET - UNIFORM * SHOPPING - TARGET_ROAS - UNIFORM - * MULTIPLE - TARGET_CPA - UNIFORM - * OWNED_AND_OPERATED - TARGET_CPA - DEFAULT + * MULTI_CHANNEL - TARGET_CPA - UNIFORM + * DISCOVERY - TARGET_CPA - DEFAULT * DISPLAY - TARGET_CPA - UNIFORM *
* @@ -987,8 +987,8 @@ protected Builder newBuilderForType( * SEARCH - BUDGET - UNIFORM * SHOPPING - BUDGET - UNIFORM * SHOPPING - TARGET_ROAS - UNIFORM - * MULTIPLE - TARGET_CPA - UNIFORM - * OWNED_AND_OPERATED - TARGET_CPA - DEFAULT + * MULTI_CHANNEL - TARGET_CPA - UNIFORM + * DISCOVERY - TARGET_CPA - DEFAULT * DISPLAY - TARGET_CPA - UNIFORM * * diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstant.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstant.java index dc41d4b981..dee98135ff 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstant.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstant.java @@ -253,8 +253,8 @@ public java.lang.String getName() { private volatile java.lang.Object countryCode_; /** *
-   * Output only. The country code of the country where the carrier is located, e.g., "AR",
-   * "FR", etc.
+   * Output only. The country code of the country where the carrier is located, for example,
+   * "AR", "FR", etc.
    * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -266,8 +266,8 @@ public boolean hasCountryCode() { } /** *
-   * Output only. The country code of the country where the carrier is located, e.g., "AR",
-   * "FR", etc.
+   * Output only. The country code of the country where the carrier is located, for example,
+   * "AR", "FR", etc.
    * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -288,8 +288,8 @@ public java.lang.String getCountryCode() { } /** *
-   * Output only. The country code of the country where the carrier is located, e.g., "AR",
-   * "FR", etc.
+   * Output only. The country code of the country where the carrier is located, for example,
+   * "AR", "FR", etc.
    * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -969,8 +969,8 @@ public Builder setNameBytes( private java.lang.Object countryCode_ = ""; /** *
-     * Output only. The country code of the country where the carrier is located, e.g., "AR",
-     * "FR", etc.
+     * Output only. The country code of the country where the carrier is located, for example,
+     * "AR", "FR", etc.
      * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -981,8 +981,8 @@ public boolean hasCountryCode() { } /** *
-     * Output only. The country code of the country where the carrier is located, e.g., "AR",
-     * "FR", etc.
+     * Output only. The country code of the country where the carrier is located, for example,
+     * "AR", "FR", etc.
      * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1002,8 +1002,8 @@ public java.lang.String getCountryCode() { } /** *
-     * Output only. The country code of the country where the carrier is located, e.g., "AR",
-     * "FR", etc.
+     * Output only. The country code of the country where the carrier is located, for example,
+     * "AR", "FR", etc.
      * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1024,8 +1024,8 @@ public java.lang.String getCountryCode() { } /** *
-     * Output only. The country code of the country where the carrier is located, e.g., "AR",
-     * "FR", etc.
+     * Output only. The country code of the country where the carrier is located, for example,
+     * "AR", "FR", etc.
      * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1044,8 +1044,8 @@ public Builder setCountryCode( } /** *
-     * Output only. The country code of the country where the carrier is located, e.g., "AR",
-     * "FR", etc.
+     * Output only. The country code of the country where the carrier is located, for example,
+     * "AR", "FR", etc.
      * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1059,8 +1059,8 @@ public Builder clearCountryCode() { } /** *
-     * Output only. The country code of the country where the carrier is located, e.g., "AR",
-     * "FR", etc.
+     * Output only. The country code of the country where the carrier is located, for example,
+     * "AR", "FR", etc.
      * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstantOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstantOrBuilder.java index 137b001d07..851f1d6f47 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstantOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CarrierConstantOrBuilder.java @@ -81,8 +81,8 @@ public interface CarrierConstantOrBuilder extends /** *
-   * Output only. The country code of the country where the carrier is located, e.g., "AR",
-   * "FR", etc.
+   * Output only. The country code of the country where the carrier is located, for example,
+   * "AR", "FR", etc.
    * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -91,8 +91,8 @@ public interface CarrierConstantOrBuilder extends boolean hasCountryCode(); /** *
-   * Output only. The country code of the country where the carrier is located, e.g., "AR",
-   * "FR", etc.
+   * Output only. The country code of the country where the carrier is located, for example,
+   * "AR", "FR", etc.
    * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -101,8 +101,8 @@ public interface CarrierConstantOrBuilder extends java.lang.String getCountryCode(); /** *
-   * Output only. The country code of the country where the carrier is located, e.g., "AR",
-   * "FR", etc.
+   * Output only. The country code of the country where the carrier is located, for example,
+   * "AR", "FR", etc.
    * 
* * optional string country_code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionAction.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionAction.java index 0405f14d18..5796d87fb6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionAction.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionAction.java @@ -4206,8 +4206,8 @@ public java.lang.String getName() { * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -4227,8 +4227,8 @@ public boolean hasPrimaryForGoal() { * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -4361,7 +4361,7 @@ public boolean getIncludeInConversionsMetric() { /** *
    * The maximum number of days that may elapse between an interaction
-   * (e.g., a click) and a conversion event.
+   * (for example, a click) and a conversion event.
    * 
* * optional int64 click_through_lookback_window_days = 25; @@ -4374,7 +4374,7 @@ public boolean hasClickThroughLookbackWindowDays() { /** *
    * The maximum number of days that may elapse between an interaction
-   * (e.g., a click) and a conversion event.
+   * (for example, a click) and a conversion event.
    * 
* * optional int64 click_through_lookback_window_days = 25; @@ -6100,8 +6100,8 @@ public Builder clearOrigin() { * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -6121,8 +6121,8 @@ public boolean hasPrimaryForGoal() { * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -6142,8 +6142,8 @@ public boolean getPrimaryForGoal() { * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -6166,8 +6166,8 @@ public Builder setPrimaryForGoal(boolean value) { * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -6430,7 +6430,7 @@ public Builder clearIncludeInConversionsMetric() { /** *
      * The maximum number of days that may elapse between an interaction
-     * (e.g., a click) and a conversion event.
+     * (for example, a click) and a conversion event.
      * 
* * optional int64 click_through_lookback_window_days = 25; @@ -6443,7 +6443,7 @@ public boolean hasClickThroughLookbackWindowDays() { /** *
      * The maximum number of days that may elapse between an interaction
-     * (e.g., a click) and a conversion event.
+     * (for example, a click) and a conversion event.
      * 
* * optional int64 click_through_lookback_window_days = 25; @@ -6456,7 +6456,7 @@ public long getClickThroughLookbackWindowDays() { /** *
      * The maximum number of days that may elapse between an interaction
-     * (e.g., a click) and a conversion event.
+     * (for example, a click) and a conversion event.
      * 
* * optional int64 click_through_lookback_window_days = 25; @@ -6472,7 +6472,7 @@ public Builder setClickThroughLookbackWindowDays(long value) { /** *
      * The maximum number of days that may elapse between an interaction
-     * (e.g., a click) and a conversion event.
+     * (for example, a click) and a conversion event.
      * 
* * optional int64 click_through_lookback_window_days = 25; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionActionOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionActionOrBuilder.java index de1d52c67a..b782a9c108 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionActionOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionActionOrBuilder.java @@ -152,8 +152,8 @@ public interface ConversionActionOrBuilder extends * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -170,8 +170,8 @@ public interface ConversionActionOrBuilder extends * primary_for_goal = false conversion action, that conversion action is * still biddable. * By default, primary_for_goal will be true if not set. In V9, - * primary_for_goal can only be set to false after creation via an 'update' - * operation because it's not declared as optional. + * primary_for_goal can only be set to false after creation through an + * 'update' operation because it's not declared as optional. * * * optional bool primary_for_goal = 31; @@ -254,7 +254,7 @@ public interface ConversionActionOrBuilder extends /** *
    * The maximum number of days that may elapse between an interaction
-   * (e.g., a click) and a conversion event.
+   * (for example, a click) and a conversion event.
    * 
* * optional int64 click_through_lookback_window_days = 25; @@ -264,7 +264,7 @@ public interface ConversionActionOrBuilder extends /** *
    * The maximum number of days that may elapse between an interaction
-   * (e.g., a click) and a conversion event.
+   * (for example, a click) and a conversion event.
    * 
* * optional int64 click_through_lookback_window_days = 25; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSetting.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSetting.java index 45feef8882..9df78f093d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSetting.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSetting.java @@ -127,9 +127,9 @@ private ConversionTrackingSetting( private long conversionTrackingId_; /** *
-   * Output only. The conversion tracking id used for this account. This id is automatically
-   * assigned after any conversion tracking feature is used. If the customer
-   * doesn't use conversion tracking, this is 0. This field is read-only.
+   * Output only. The conversion tracking id used for this account. This id doesn't indicate
+   * whether the customer uses conversion tracking (conversion_tracking_status
+   * does). This field is read-only.
    * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -141,9 +141,9 @@ public boolean hasConversionTrackingId() { } /** *
-   * Output only. The conversion tracking id used for this account. This id is automatically
-   * assigned after any conversion tracking feature is used. If the customer
-   * doesn't use conversion tracking, this is 0. This field is read-only.
+   * Output only. The conversion tracking id used for this account. This id doesn't indicate
+   * whether the customer uses conversion tracking (conversion_tracking_status
+   * does). This field is read-only.
    * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -723,9 +723,9 @@ public Builder mergeFrom( private long conversionTrackingId_ ; /** *
-     * Output only. The conversion tracking id used for this account. This id is automatically
-     * assigned after any conversion tracking feature is used. If the customer
-     * doesn't use conversion tracking, this is 0. This field is read-only.
+     * Output only. The conversion tracking id used for this account. This id doesn't indicate
+     * whether the customer uses conversion tracking (conversion_tracking_status
+     * does). This field is read-only.
      * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -737,9 +737,9 @@ public boolean hasConversionTrackingId() { } /** *
-     * Output only. The conversion tracking id used for this account. This id is automatically
-     * assigned after any conversion tracking feature is used. If the customer
-     * doesn't use conversion tracking, this is 0. This field is read-only.
+     * Output only. The conversion tracking id used for this account. This id doesn't indicate
+     * whether the customer uses conversion tracking (conversion_tracking_status
+     * does). This field is read-only.
      * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -751,9 +751,9 @@ public long getConversionTrackingId() { } /** *
-     * Output only. The conversion tracking id used for this account. This id is automatically
-     * assigned after any conversion tracking feature is used. If the customer
-     * doesn't use conversion tracking, this is 0. This field is read-only.
+     * Output only. The conversion tracking id used for this account. This id doesn't indicate
+     * whether the customer uses conversion tracking (conversion_tracking_status
+     * does). This field is read-only.
      * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -768,9 +768,9 @@ public Builder setConversionTrackingId(long value) { } /** *
-     * Output only. The conversion tracking id used for this account. This id is automatically
-     * assigned after any conversion tracking feature is used. If the customer
-     * doesn't use conversion tracking, this is 0. This field is read-only.
+     * Output only. The conversion tracking id used for this account. This id doesn't indicate
+     * whether the customer uses conversion tracking (conversion_tracking_status
+     * does). This field is read-only.
      * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSettingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSettingOrBuilder.java index 7bb2b66d36..020eb46898 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSettingOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionTrackingSettingOrBuilder.java @@ -9,9 +9,9 @@ public interface ConversionTrackingSettingOrBuilder extends /** *
-   * Output only. The conversion tracking id used for this account. This id is automatically
-   * assigned after any conversion tracking feature is used. If the customer
-   * doesn't use conversion tracking, this is 0. This field is read-only.
+   * Output only. The conversion tracking id used for this account. This id doesn't indicate
+   * whether the customer uses conversion tracking (conversion_tracking_status
+   * does). This field is read-only.
    * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -20,9 +20,9 @@ public interface ConversionTrackingSettingOrBuilder extends boolean hasConversionTrackingId(); /** *
-   * Output only. The conversion tracking id used for this account. This id is automatically
-   * assigned after any conversion tracking feature is used. If the customer
-   * doesn't use conversion tracking, this is 0. This field is read-only.
+   * Output only. The conversion tracking id used for this account. This id doesn't indicate
+   * whether the customer uses conversion tracking (conversion_tracking_status
+   * does). This field is read-only.
    * 
* * optional int64 conversion_tracking_id = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRule.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRule.java index 355da41d05..69e816844c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRule.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRule.java @@ -2832,8 +2832,8 @@ public int getDeviceTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType device_types = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of deviceTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for deviceTypes to set. * @return This builder for chaining. */ public Builder setDeviceTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRuleSet.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRuleSet.java index f116c57a7c..ef268f4f46 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRuleSet.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ConversionValueRuleSet.java @@ -1648,8 +1648,8 @@ public int getDimensionsValue(int index) { * * * repeated .google.ads.googleads.v11.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension dimensions = 4; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of dimensions at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for dimensions to set. * @return This builder for chaining. */ public Builder setDimensionsValue( @@ -2221,8 +2221,8 @@ public int getConversionActionCategoriesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.ConversionActionCategoryEnum.ConversionActionCategory conversion_action_categories = 9 [(.google.api.field_behavior) = IMMUTABLE]; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of conversionActionCategories at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for conversionActionCategories to set. * @return This builder for chaining. */ public Builder setConversionActionCategoriesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstant.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstant.java index 110bf59cfa..60710e952a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstant.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstant.java @@ -175,7 +175,7 @@ public java.lang.String getResourceName() { private volatile java.lang.Object code_; /** *
-   * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+   * Output only. ISO 4217 three-letter currency code, for example, "USD"
    * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -187,7 +187,7 @@ public boolean hasCode() { } /** *
-   * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+   * Output only. ISO 4217 three-letter currency code, for example, "USD"
    * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -208,7 +208,7 @@ public java.lang.String getCode() { } /** *
-   * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+   * Output only. ISO 4217 three-letter currency code, for example, "USD"
    * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -291,7 +291,8 @@ public java.lang.String getName() { private volatile java.lang.Object symbol_; /** *
-   * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+   * Output only. Standard symbol for describing this currency, for example, '$' for US
+   * Dollars.
    * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -303,7 +304,8 @@ public boolean hasSymbol() { } /** *
-   * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+   * Output only. Standard symbol for describing this currency, for example, '$' for US
+   * Dollars.
    * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -324,7 +326,8 @@ public java.lang.String getSymbol() { } /** *
-   * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+   * Output only. Standard symbol for describing this currency, for example, '$' for US
+   * Dollars.
    * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -897,7 +900,7 @@ public Builder setResourceNameBytes( private java.lang.Object code_ = ""; /** *
-     * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+     * Output only. ISO 4217 three-letter currency code, for example, "USD"
      * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -908,7 +911,7 @@ public boolean hasCode() { } /** *
-     * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+     * Output only. ISO 4217 three-letter currency code, for example, "USD"
      * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -928,7 +931,7 @@ public java.lang.String getCode() { } /** *
-     * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+     * Output only. ISO 4217 three-letter currency code, for example, "USD"
      * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -949,7 +952,7 @@ public java.lang.String getCode() { } /** *
-     * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+     * Output only. ISO 4217 three-letter currency code, for example, "USD"
      * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -968,7 +971,7 @@ public Builder setCode( } /** *
-     * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+     * Output only. ISO 4217 three-letter currency code, for example, "USD"
      * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -982,7 +985,7 @@ public Builder clearCode() { } /** *
-     * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+     * Output only. ISO 4217 three-letter currency code, for example, "USD"
      * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1111,7 +1114,8 @@ public Builder setNameBytes( private java.lang.Object symbol_ = ""; /** *
-     * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+     * Output only. Standard symbol for describing this currency, for example, '$' for US
+     * Dollars.
      * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1122,7 +1126,8 @@ public boolean hasSymbol() { } /** *
-     * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+     * Output only. Standard symbol for describing this currency, for example, '$' for US
+     * Dollars.
      * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1142,7 +1147,8 @@ public java.lang.String getSymbol() { } /** *
-     * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+     * Output only. Standard symbol for describing this currency, for example, '$' for US
+     * Dollars.
      * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1163,7 +1169,8 @@ public java.lang.String getSymbol() { } /** *
-     * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+     * Output only. Standard symbol for describing this currency, for example, '$' for US
+     * Dollars.
      * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1182,7 +1189,8 @@ public Builder setSymbol( } /** *
-     * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+     * Output only. Standard symbol for describing this currency, for example, '$' for US
+     * Dollars.
      * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1196,7 +1204,8 @@ public Builder clearSymbol() { } /** *
-     * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+     * Output only. Standard symbol for describing this currency, for example, '$' for US
+     * Dollars.
      * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstantOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstantOrBuilder.java index f6cd24b86a..97da46e507 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstantOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CurrencyConstantOrBuilder.java @@ -33,7 +33,7 @@ public interface CurrencyConstantOrBuilder extends /** *
-   * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+   * Output only. ISO 4217 three-letter currency code, for example, "USD"
    * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -42,7 +42,7 @@ public interface CurrencyConstantOrBuilder extends boolean hasCode(); /** *
-   * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+   * Output only. ISO 4217 three-letter currency code, for example, "USD"
    * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -51,7 +51,7 @@ public interface CurrencyConstantOrBuilder extends java.lang.String getCode(); /** *
-   * Output only. ISO 4217 three-letter currency code, e.g. "USD"
+   * Output only. ISO 4217 three-letter currency code, for example, "USD"
    * 
* * optional string code = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -91,7 +91,8 @@ public interface CurrencyConstantOrBuilder extends /** *
-   * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+   * Output only. Standard symbol for describing this currency, for example, '$' for US
+   * Dollars.
    * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -100,7 +101,8 @@ public interface CurrencyConstantOrBuilder extends boolean hasSymbol(); /** *
-   * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+   * Output only. Standard symbol for describing this currency, for example, '$' for US
+   * Dollars.
    * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -109,7 +111,8 @@ public interface CurrencyConstantOrBuilder extends java.lang.String getSymbol(); /** *
-   * Output only. Standard symbol for describing this currency, e.g. '$' for US Dollars.
+   * Output only. Standard symbol for describing this currency, for example, '$' for US
+   * Dollars.
    * 
* * optional string symbol = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Customer.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Customer.java index 84bc226319..a2a0e88f05 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Customer.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Customer.java @@ -3338,8 +3338,8 @@ public int getPayPerConversionEligibilityFailureReasonsValue(int index) { * * * repeated .google.ads.googleads.v11.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason pay_per_conversion_eligibility_failure_reasons = 16 [(.google.api.field_behavior) = OUTPUT_ONLY]; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of payPerConversionEligibilityFailureReasons at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for payPerConversionEligibilityFailureReasons to set. * @return This builder for chaining. */ public Builder setPayPerConversionEligibilityFailureReasonsValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClient.java index 43f6b54f0c..ac49906ea5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClient.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClient.java @@ -346,7 +346,7 @@ public long getLevel() { /** *
    * Output only. Common Locale Data Repository (CLDR) string representation of the
-   * time zone of the client, e.g. America/Los_Angeles. Read only.
+   * time zone of the client, for example, America/Los_Angeles. Read only.
    * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -359,7 +359,7 @@ public boolean hasTimeZone() { /** *
    * Output only. Common Locale Data Repository (CLDR) string representation of the
-   * time zone of the client, e.g. America/Los_Angeles. Read only.
+   * time zone of the client, for example, America/Los_Angeles. Read only.
    * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -381,7 +381,7 @@ public java.lang.String getTimeZone() { /** *
    * Output only. Common Locale Data Repository (CLDR) string representation of the
-   * time zone of the client, e.g. America/Los_Angeles. Read only.
+   * time zone of the client, for example, America/Los_Angeles. Read only.
    * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -518,7 +518,7 @@ public java.lang.String getDescriptiveName() { private volatile java.lang.Object currencyCode_; /** *
-   * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+   * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
    * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -530,7 +530,7 @@ public boolean hasCurrencyCode() { } /** *
-   * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+   * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
    * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -551,7 +551,7 @@ public java.lang.String getCurrencyCode() { } /** *
-   * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+   * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
    * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1630,7 +1630,7 @@ public Builder clearLevel() { /** *
      * Output only. Common Locale Data Repository (CLDR) string representation of the
-     * time zone of the client, e.g. America/Los_Angeles. Read only.
+     * time zone of the client, for example, America/Los_Angeles. Read only.
      * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1642,7 +1642,7 @@ public boolean hasTimeZone() { /** *
      * Output only. Common Locale Data Repository (CLDR) string representation of the
-     * time zone of the client, e.g. America/Los_Angeles. Read only.
+     * time zone of the client, for example, America/Los_Angeles. Read only.
      * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1663,7 +1663,7 @@ public java.lang.String getTimeZone() { /** *
      * Output only. Common Locale Data Repository (CLDR) string representation of the
-     * time zone of the client, e.g. America/Los_Angeles. Read only.
+     * time zone of the client, for example, America/Los_Angeles. Read only.
      * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1685,7 +1685,7 @@ public java.lang.String getTimeZone() { /** *
      * Output only. Common Locale Data Repository (CLDR) string representation of the
-     * time zone of the client, e.g. America/Los_Angeles. Read only.
+     * time zone of the client, for example, America/Los_Angeles. Read only.
      * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1705,7 +1705,7 @@ public Builder setTimeZone( /** *
      * Output only. Common Locale Data Repository (CLDR) string representation of the
-     * time zone of the client, e.g. America/Los_Angeles. Read only.
+     * time zone of the client, for example, America/Los_Angeles. Read only.
      * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1720,7 +1720,7 @@ public Builder clearTimeZone() { /** *
      * Output only. Common Locale Data Repository (CLDR) string representation of the
-     * time zone of the client, e.g. America/Los_Angeles. Read only.
+     * time zone of the client, for example, America/Los_Angeles. Read only.
      * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1959,7 +1959,7 @@ public Builder setDescriptiveNameBytes( private java.lang.Object currencyCode_ = ""; /** *
-     * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+     * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
      * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1970,7 +1970,7 @@ public boolean hasCurrencyCode() { } /** *
-     * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+     * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
      * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1990,7 +1990,7 @@ public java.lang.String getCurrencyCode() { } /** *
-     * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+     * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
      * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2011,7 +2011,7 @@ public java.lang.String getCurrencyCode() { } /** *
-     * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+     * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
      * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2030,7 +2030,7 @@ public Builder setCurrencyCode( } /** *
-     * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+     * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
      * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2044,7 +2044,7 @@ public Builder clearCurrencyCode() { } /** *
-     * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+     * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
      * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClientOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClientOrBuilder.java index 8e5fbd6a09..70c22391c3 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClientOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerClientOrBuilder.java @@ -110,7 +110,7 @@ public interface CustomerClientOrBuilder extends /** *
    * Output only. Common Locale Data Repository (CLDR) string representation of the
-   * time zone of the client, e.g. America/Los_Angeles. Read only.
+   * time zone of the client, for example, America/Los_Angeles. Read only.
    * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -120,7 +120,7 @@ public interface CustomerClientOrBuilder extends /** *
    * Output only. Common Locale Data Repository (CLDR) string representation of the
-   * time zone of the client, e.g. America/Los_Angeles. Read only.
+   * time zone of the client, for example, America/Los_Angeles. Read only.
    * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -130,7 +130,7 @@ public interface CustomerClientOrBuilder extends /** *
    * Output only. Common Locale Data Repository (CLDR) string representation of the
-   * time zone of the client, e.g. America/Los_Angeles. Read only.
+   * time zone of the client, for example, America/Los_Angeles. Read only.
    * 
* * optional string time_zone = 15 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -208,7 +208,7 @@ public interface CustomerClientOrBuilder extends /** *
-   * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+   * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
    * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -217,7 +217,7 @@ public interface CustomerClientOrBuilder extends boolean hasCurrencyCode(); /** *
-   * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+   * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
    * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -226,7 +226,7 @@ public interface CustomerClientOrBuilder extends java.lang.String getCurrencyCode(); /** *
-   * Output only. Currency code (e.g. 'USD', 'EUR') for the client. Read only.
+   * Output only. Currency code (for example, 'USD', 'EUR') for the client. Read only.
    * 
* * optional string currency_code = 19 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerFeed.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerFeed.java index ef247e7168..6e26dfdaa7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerFeed.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/CustomerFeed.java @@ -1203,8 +1203,8 @@ public int getPlaceholderTypesValue(int index) { * * * repeated .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_types = 3; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of placeholderTypes at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for placeholderTypes to set. * @return This builder for chaining. */ public Builder setPlaceholderTypesValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementView.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementView.java index 3ff392eafc..69fa94e3d9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementView.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementView.java @@ -306,8 +306,8 @@ public java.lang.String getDisplayName() { private volatile java.lang.Object groupPlacementTargetUrl_; /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -319,8 +319,8 @@ public boolean hasGroupPlacementTargetUrl() { } /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -341,8 +341,8 @@ public java.lang.String getGroupPlacementTargetUrl() { } /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -367,8 +367,8 @@ public java.lang.String getGroupPlacementTargetUrl() { private volatile java.lang.Object targetUrl_; /** *
-   * Output only. URL of the placement, e.g. website, link to the mobile application in app
-   * store, or a YouTube video URL.
+   * Output only. URL of the placement, for example, website, link to the mobile application
+   * in app store, or a YouTube video URL.
    * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -380,8 +380,8 @@ public boolean hasTargetUrl() { } /** *
-   * Output only. URL of the placement, e.g. website, link to the mobile application in app
-   * store, or a YouTube video URL.
+   * Output only. URL of the placement, for example, website, link to the mobile application
+   * in app store, or a YouTube video URL.
    * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -402,8 +402,8 @@ public java.lang.String getTargetUrl() { } /** *
-   * Output only. URL of the placement, e.g. website, link to the mobile application in app
-   * store, or a YouTube video URL.
+   * Output only. URL of the placement, for example, website, link to the mobile application
+   * in app store, or a YouTube video URL.
    * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -428,7 +428,8 @@ public java.lang.String getTargetUrl() { private int placementType_; /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -439,7 +440,8 @@ public java.lang.String getTargetUrl() { } /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1216,8 +1218,8 @@ public Builder setDisplayNameBytes( private java.lang.Object groupPlacementTargetUrl_ = ""; /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1228,8 +1230,8 @@ public boolean hasGroupPlacementTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1249,8 +1251,8 @@ public java.lang.String getGroupPlacementTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1271,8 +1273,8 @@ public java.lang.String getGroupPlacementTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1291,8 +1293,8 @@ public Builder setGroupPlacementTargetUrl( } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1306,8 +1308,8 @@ public Builder clearGroupPlacementTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1329,8 +1331,8 @@ public Builder setGroupPlacementTargetUrlBytes( private java.lang.Object targetUrl_ = ""; /** *
-     * Output only. URL of the placement, e.g. website, link to the mobile application in app
-     * store, or a YouTube video URL.
+     * Output only. URL of the placement, for example, website, link to the mobile application
+     * in app store, or a YouTube video URL.
      * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1341,8 +1343,8 @@ public boolean hasTargetUrl() { } /** *
-     * Output only. URL of the placement, e.g. website, link to the mobile application in app
-     * store, or a YouTube video URL.
+     * Output only. URL of the placement, for example, website, link to the mobile application
+     * in app store, or a YouTube video URL.
      * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1362,8 +1364,8 @@ public java.lang.String getTargetUrl() { } /** *
-     * Output only. URL of the placement, e.g. website, link to the mobile application in app
-     * store, or a YouTube video URL.
+     * Output only. URL of the placement, for example, website, link to the mobile application
+     * in app store, or a YouTube video URL.
      * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1384,8 +1386,8 @@ public java.lang.String getTargetUrl() { } /** *
-     * Output only. URL of the placement, e.g. website, link to the mobile application in app
-     * store, or a YouTube video URL.
+     * Output only. URL of the placement, for example, website, link to the mobile application
+     * in app store, or a YouTube video URL.
      * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1404,8 +1406,8 @@ public Builder setTargetUrl( } /** *
-     * Output only. URL of the placement, e.g. website, link to the mobile application in app
-     * store, or a YouTube video URL.
+     * Output only. URL of the placement, for example, website, link to the mobile application
+     * in app store, or a YouTube video URL.
      * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1419,8 +1421,8 @@ public Builder clearTargetUrl() { } /** *
-     * Output only. URL of the placement, e.g. website, link to the mobile application in app
-     * store, or a YouTube video URL.
+     * Output only. URL of the placement, for example, website, link to the mobile application
+     * in app store, or a YouTube video URL.
      * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1442,7 +1444,8 @@ public Builder setTargetUrlBytes( private int placementType_ = 0; /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1453,7 +1456,8 @@ public Builder setTargetUrlBytes( } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1468,7 +1472,8 @@ public Builder setPlacementTypeValue(int value) { } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1482,7 +1487,8 @@ public com.google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType getPla } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1500,7 +1506,8 @@ public Builder setPlacementType(com.google.ads.googleads.v11.enums.PlacementType } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementViewOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementViewOrBuilder.java index 776f24e790..06aab3ed62 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementViewOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailPlacementViewOrBuilder.java @@ -97,8 +97,8 @@ public interface DetailPlacementViewOrBuilder extends /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -107,8 +107,8 @@ public interface DetailPlacementViewOrBuilder extends boolean hasGroupPlacementTargetUrl(); /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -117,8 +117,8 @@ public interface DetailPlacementViewOrBuilder extends java.lang.String getGroupPlacementTargetUrl(); /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string group_placement_target_url = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -129,8 +129,8 @@ public interface DetailPlacementViewOrBuilder extends /** *
-   * Output only. URL of the placement, e.g. website, link to the mobile application in app
-   * store, or a YouTube video URL.
+   * Output only. URL of the placement, for example, website, link to the mobile application
+   * in app store, or a YouTube video URL.
    * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -139,8 +139,8 @@ public interface DetailPlacementViewOrBuilder extends boolean hasTargetUrl(); /** *
-   * Output only. URL of the placement, e.g. website, link to the mobile application in app
-   * store, or a YouTube video URL.
+   * Output only. URL of the placement, for example, website, link to the mobile application
+   * in app store, or a YouTube video URL.
    * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -149,8 +149,8 @@ public interface DetailPlacementViewOrBuilder extends java.lang.String getTargetUrl(); /** *
-   * Output only. URL of the placement, e.g. website, link to the mobile application in app
-   * store, or a YouTube video URL.
+   * Output only. URL of the placement, for example, website, link to the mobile application
+   * in app store, or a YouTube video URL.
    * 
* * optional string target_url = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -161,7 +161,8 @@ public interface DetailPlacementViewOrBuilder extends /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -170,7 +171,8 @@ public interface DetailPlacementViewOrBuilder extends int getPlacementTypeValue(); /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Video, and Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Video, and Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 6 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographic.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographic.java index 524a8520af..e33e82b2b5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographic.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographic.java @@ -201,8 +201,8 @@ public long getId() { private volatile java.lang.Object name_; /** *
-   * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-   * Attainment"
+   * Output only. The name of the detailed demographic. For example,"Highest Level of
+   * Educational Attainment"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -223,8 +223,8 @@ public java.lang.String getName() { } /** *
-   * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-   * Attainment"
+   * Output only. The name of the detailed demographic. For example,"Highest Level of
+   * Educational Attainment"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -952,8 +952,8 @@ public Builder clearId() { private java.lang.Object name_ = ""; /** *
-     * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-     * Attainment"
+     * Output only. The name of the detailed demographic. For example,"Highest Level of
+     * Educational Attainment"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -973,8 +973,8 @@ public java.lang.String getName() { } /** *
-     * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-     * Attainment"
+     * Output only. The name of the detailed demographic. For example,"Highest Level of
+     * Educational Attainment"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -995,8 +995,8 @@ public java.lang.String getName() { } /** *
-     * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-     * Attainment"
+     * Output only. The name of the detailed demographic. For example,"Highest Level of
+     * Educational Attainment"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1015,8 +1015,8 @@ public Builder setName( } /** *
-     * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-     * Attainment"
+     * Output only. The name of the detailed demographic. For example,"Highest Level of
+     * Educational Attainment"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1030,8 +1030,8 @@ public Builder clearName() { } /** *
-     * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-     * Attainment"
+     * Output only. The name of the detailed demographic. For example,"Highest Level of
+     * Educational Attainment"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographicOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographicOrBuilder.java index d087e00fb6..b6313bd37e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographicOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DetailedDemographicOrBuilder.java @@ -43,8 +43,8 @@ public interface DetailedDemographicOrBuilder extends /** *
-   * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-   * Attainment"
+   * Output only. The name of the detailed demographic. For example,"Highest Level of
+   * Educational Attainment"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -53,8 +53,8 @@ public interface DetailedDemographicOrBuilder extends java.lang.String getName(); /** *
-   * Output only. The name of the detailed demographic. E.g."Highest Level of Educational
-   * Attainment"
+   * Output only. The name of the detailed demographic. For example,"Highest Level of
+   * Educational Attainment"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategory.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategory.java index e418675a21..c8ec82a70b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategory.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategory.java @@ -258,8 +258,9 @@ public java.lang.String getCampaign() { private volatile java.lang.Object category_; /** *
-   * Output only. Recommended category for the website domain. e.g. if you have a website
-   * about electronics, the categories could be "cameras", "televisions", etc.
+   * Output only. Recommended category for the website domain, for example, if you have a
+   * website about electronics, the categories could be "cameras",
+   * "televisions", etc.
    * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -271,8 +272,9 @@ public boolean hasCategory() { } /** *
-   * Output only. Recommended category for the website domain. e.g. if you have a website
-   * about electronics, the categories could be "cameras", "televisions", etc.
+   * Output only. Recommended category for the website domain, for example, if you have a
+   * website about electronics, the categories could be "cameras",
+   * "televisions", etc.
    * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -293,8 +295,9 @@ public java.lang.String getCategory() { } /** *
-   * Output only. Recommended category for the website domain. e.g. if you have a website
-   * about electronics, the categories could be "cameras", "televisions", etc.
+   * Output only. Recommended category for the website domain, for example, if you have a
+   * website about electronics, the categories could be "cameras",
+   * "televisions", etc.
    * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -319,8 +322,8 @@ public java.lang.String getCategory() { private volatile java.lang.Object languageCode_; /** *
-   * Output only. The language code specifying the language of the website. e.g. "en" for
-   * English. The language can be specified in the DynamicSearchAdsSetting
+   * Output only. The language code specifying the language of the website, for example, "en"
+   * for English. The language can be specified in the DynamicSearchAdsSetting
    * required for dynamic search ads. This is the language of the pages from
    * your website that you want Google Ads to find, create ads for,
    * and match searches with.
@@ -335,8 +338,8 @@ public boolean hasLanguageCode() {
   }
   /**
    * 
-   * Output only. The language code specifying the language of the website. e.g. "en" for
-   * English. The language can be specified in the DynamicSearchAdsSetting
+   * Output only. The language code specifying the language of the website, for example, "en"
+   * for English. The language can be specified in the DynamicSearchAdsSetting
    * required for dynamic search ads. This is the language of the pages from
    * your website that you want Google Ads to find, create ads for,
    * and match searches with.
@@ -360,8 +363,8 @@ public java.lang.String getLanguageCode() {
   }
   /**
    * 
-   * Output only. The language code specifying the language of the website. e.g. "en" for
-   * English. The language can be specified in the DynamicSearchAdsSetting
+   * Output only. The language code specifying the language of the website, for example, "en"
+   * for English. The language can be specified in the DynamicSearchAdsSetting
    * required for dynamic search ads. This is the language of the pages from
    * your website that you want Google Ads to find, create ads for,
    * and match searches with.
@@ -1294,8 +1297,9 @@ public Builder setCampaignBytes(
     private java.lang.Object category_ = "";
     /**
      * 
-     * Output only. Recommended category for the website domain. e.g. if you have a website
-     * about electronics, the categories could be "cameras", "televisions", etc.
+     * Output only. Recommended category for the website domain, for example, if you have a
+     * website about electronics, the categories could be "cameras",
+     * "televisions", etc.
      * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1306,8 +1310,9 @@ public boolean hasCategory() { } /** *
-     * Output only. Recommended category for the website domain. e.g. if you have a website
-     * about electronics, the categories could be "cameras", "televisions", etc.
+     * Output only. Recommended category for the website domain, for example, if you have a
+     * website about electronics, the categories could be "cameras",
+     * "televisions", etc.
      * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1327,8 +1332,9 @@ public java.lang.String getCategory() { } /** *
-     * Output only. Recommended category for the website domain. e.g. if you have a website
-     * about electronics, the categories could be "cameras", "televisions", etc.
+     * Output only. Recommended category for the website domain, for example, if you have a
+     * website about electronics, the categories could be "cameras",
+     * "televisions", etc.
      * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1349,8 +1355,9 @@ public java.lang.String getCategory() { } /** *
-     * Output only. Recommended category for the website domain. e.g. if you have a website
-     * about electronics, the categories could be "cameras", "televisions", etc.
+     * Output only. Recommended category for the website domain, for example, if you have a
+     * website about electronics, the categories could be "cameras",
+     * "televisions", etc.
      * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1369,8 +1376,9 @@ public Builder setCategory( } /** *
-     * Output only. Recommended category for the website domain. e.g. if you have a website
-     * about electronics, the categories could be "cameras", "televisions", etc.
+     * Output only. Recommended category for the website domain, for example, if you have a
+     * website about electronics, the categories could be "cameras",
+     * "televisions", etc.
      * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1384,8 +1392,9 @@ public Builder clearCategory() { } /** *
-     * Output only. Recommended category for the website domain. e.g. if you have a website
-     * about electronics, the categories could be "cameras", "televisions", etc.
+     * Output only. Recommended category for the website domain, for example, if you have a
+     * website about electronics, the categories could be "cameras",
+     * "televisions", etc.
      * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1407,8 +1416,8 @@ public Builder setCategoryBytes( private java.lang.Object languageCode_ = ""; /** *
-     * Output only. The language code specifying the language of the website. e.g. "en" for
-     * English. The language can be specified in the DynamicSearchAdsSetting
+     * Output only. The language code specifying the language of the website, for example, "en"
+     * for English. The language can be specified in the DynamicSearchAdsSetting
      * required for dynamic search ads. This is the language of the pages from
      * your website that you want Google Ads to find, create ads for,
      * and match searches with.
@@ -1422,8 +1431,8 @@ public boolean hasLanguageCode() {
     }
     /**
      * 
-     * Output only. The language code specifying the language of the website. e.g. "en" for
-     * English. The language can be specified in the DynamicSearchAdsSetting
+     * Output only. The language code specifying the language of the website, for example, "en"
+     * for English. The language can be specified in the DynamicSearchAdsSetting
      * required for dynamic search ads. This is the language of the pages from
      * your website that you want Google Ads to find, create ads for,
      * and match searches with.
@@ -1446,8 +1455,8 @@ public java.lang.String getLanguageCode() {
     }
     /**
      * 
-     * Output only. The language code specifying the language of the website. e.g. "en" for
-     * English. The language can be specified in the DynamicSearchAdsSetting
+     * Output only. The language code specifying the language of the website, for example, "en"
+     * for English. The language can be specified in the DynamicSearchAdsSetting
      * required for dynamic search ads. This is the language of the pages from
      * your website that you want Google Ads to find, create ads for,
      * and match searches with.
@@ -1471,8 +1480,8 @@ public java.lang.String getLanguageCode() {
     }
     /**
      * 
-     * Output only. The language code specifying the language of the website. e.g. "en" for
-     * English. The language can be specified in the DynamicSearchAdsSetting
+     * Output only. The language code specifying the language of the website, for example, "en"
+     * for English. The language can be specified in the DynamicSearchAdsSetting
      * required for dynamic search ads. This is the language of the pages from
      * your website that you want Google Ads to find, create ads for,
      * and match searches with.
@@ -1494,8 +1503,8 @@ public Builder setLanguageCode(
     }
     /**
      * 
-     * Output only. The language code specifying the language of the website. e.g. "en" for
-     * English. The language can be specified in the DynamicSearchAdsSetting
+     * Output only. The language code specifying the language of the website, for example, "en"
+     * for English. The language can be specified in the DynamicSearchAdsSetting
      * required for dynamic search ads. This is the language of the pages from
      * your website that you want Google Ads to find, create ads for,
      * and match searches with.
@@ -1512,8 +1521,8 @@ public Builder clearLanguageCode() {
     }
     /**
      * 
-     * Output only. The language code specifying the language of the website. e.g. "en" for
-     * English. The language can be specified in the DynamicSearchAdsSetting
+     * Output only. The language code specifying the language of the website, for example, "en"
+     * for English. The language can be specified in the DynamicSearchAdsSetting
      * required for dynamic search ads. This is the language of the pages from
      * your website that you want Google Ads to find, create ads for,
      * and match searches with.
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategoryOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategoryOrBuilder.java
index 7b29eed10e..7c40cd9a4c 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategoryOrBuilder.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/DomainCategoryOrBuilder.java
@@ -62,8 +62,9 @@ public interface DomainCategoryOrBuilder extends
 
   /**
    * 
-   * Output only. Recommended category for the website domain. e.g. if you have a website
-   * about electronics, the categories could be "cameras", "televisions", etc.
+   * Output only. Recommended category for the website domain, for example, if you have a
+   * website about electronics, the categories could be "cameras",
+   * "televisions", etc.
    * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -72,8 +73,9 @@ public interface DomainCategoryOrBuilder extends boolean hasCategory(); /** *
-   * Output only. Recommended category for the website domain. e.g. if you have a website
-   * about electronics, the categories could be "cameras", "televisions", etc.
+   * Output only. Recommended category for the website domain, for example, if you have a
+   * website about electronics, the categories could be "cameras",
+   * "televisions", etc.
    * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -82,8 +84,9 @@ public interface DomainCategoryOrBuilder extends java.lang.String getCategory(); /** *
-   * Output only. Recommended category for the website domain. e.g. if you have a website
-   * about electronics, the categories could be "cameras", "televisions", etc.
+   * Output only. Recommended category for the website domain, for example, if you have a
+   * website about electronics, the categories could be "cameras",
+   * "televisions", etc.
    * 
* * optional string category = 11 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -94,8 +97,8 @@ public interface DomainCategoryOrBuilder extends /** *
-   * Output only. The language code specifying the language of the website. e.g. "en" for
-   * English. The language can be specified in the DynamicSearchAdsSetting
+   * Output only. The language code specifying the language of the website, for example, "en"
+   * for English. The language can be specified in the DynamicSearchAdsSetting
    * required for dynamic search ads. This is the language of the pages from
    * your website that you want Google Ads to find, create ads for,
    * and match searches with.
@@ -107,8 +110,8 @@ public interface DomainCategoryOrBuilder extends
   boolean hasLanguageCode();
   /**
    * 
-   * Output only. The language code specifying the language of the website. e.g. "en" for
-   * English. The language can be specified in the DynamicSearchAdsSetting
+   * Output only. The language code specifying the language of the website, for example, "en"
+   * for English. The language can be specified in the DynamicSearchAdsSetting
    * required for dynamic search ads. This is the language of the pages from
    * your website that you want Google Ads to find, create ads for,
    * and match searches with.
@@ -120,8 +123,8 @@ public interface DomainCategoryOrBuilder extends
   java.lang.String getLanguageCode();
   /**
    * 
-   * Output only. The language code specifying the language of the website. e.g. "en" for
-   * English. The language can be specified in the DynamicSearchAdsSetting
+   * Output only. The language code specifying the language of the website, for example, "en"
+   * for English. The language can be specified in the DynamicSearchAdsSetting
    * required for dynamic search ads. This is the language of the pages from
    * your website that you want Google Ads to find, create ads for,
    * and match searches with.
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Experiment.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Experiment.java
index 0fdaf03365..fa2cc6c10d 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Experiment.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Experiment.java
@@ -433,7 +433,7 @@ public java.lang.String getSuffix() {
   private int status_;
   /**
    * 
-   * The Advertiser-desired status of this experiment.
+   * The Advertiser-chosen status of this experiment.
    * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; @@ -444,7 +444,7 @@ public java.lang.String getSuffix() { } /** *
-   * The Advertiser-desired status of this experiment.
+   * The Advertiser-chosen status of this experiment.
    * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; @@ -1870,7 +1870,7 @@ public Builder clearType() { private int status_ = 0; /** *
-     * The Advertiser-desired status of this experiment.
+     * The Advertiser-chosen status of this experiment.
      * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; @@ -1881,7 +1881,7 @@ public Builder clearType() { } /** *
-     * The Advertiser-desired status of this experiment.
+     * The Advertiser-chosen status of this experiment.
      * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; @@ -1896,7 +1896,7 @@ public Builder setStatusValue(int value) { } /** *
-     * The Advertiser-desired status of this experiment.
+     * The Advertiser-chosen status of this experiment.
      * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; @@ -1910,7 +1910,7 @@ public com.google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus } /** *
-     * The Advertiser-desired status of this experiment.
+     * The Advertiser-chosen status of this experiment.
      * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; @@ -1928,7 +1928,7 @@ public Builder setStatus(com.google.ads.googleads.v11.enums.ExperimentStatusEnum } /** *
-     * The Advertiser-desired status of this experiment.
+     * The Advertiser-chosen status of this experiment.
      * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ExperimentOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ExperimentOrBuilder.java index 12a51b63be..269c845082 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ExperimentOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ExperimentOrBuilder.java @@ -141,7 +141,7 @@ public interface ExperimentOrBuilder extends /** *
-   * The Advertiser-desired status of this experiment.
+   * The Advertiser-chosen status of this experiment.
    * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; @@ -150,7 +150,7 @@ public interface ExperimentOrBuilder extends int getStatusValue(); /** *
-   * The Advertiser-desired status of this experiment.
+   * The Advertiser-chosen status of this experiment.
    * 
* * .google.ads.googleads.v11.enums.ExperimentStatusEnum.ExperimentStatus status = 14; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItem.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItem.java index bbe9e3de92..99de2e77c5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItem.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItem.java @@ -632,10 +632,10 @@ public com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustom *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -648,10 +648,10 @@ public java.util.List * Output only. List of info about a feed item's validation and approval state for active * feed mappings. There will be an entry in the list for each type of feed - * mapping associated with the feed, e.g. a feed with a sitelink and a call - * feed mapping would cause every feed item associated with that feed to have - * an entry in this list for both sitelink and call. - * This field is read-only. + * mapping associated with the feed, for example, a feed with a sitelink and a + * call feed mapping would cause every feed item associated with that feed to + * have an entry in this list for both sitelink and call. This field is + * read-only. *
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -665,10 +665,10 @@ public java.util.List * Output only. List of info about a feed item's validation and approval state for active * feed mappings. There will be an entry in the list for each type of feed - * mapping associated with the feed, e.g. a feed with a sitelink and a call - * feed mapping would cause every feed item associated with that feed to have - * an entry in this list for both sitelink and call. - * This field is read-only. + * mapping associated with the feed, for example, a feed with a sitelink and a + * call feed mapping would cause every feed item associated with that feed to + * have an entry in this list for both sitelink and call. This field is + * read-only. *
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -681,10 +681,10 @@ public int getPolicyInfosCount() { *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -697,10 +697,10 @@ public com.google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo getP *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2656,10 +2656,10 @@ private void ensurePolicyInfosIsMutable() { *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2675,10 +2675,10 @@ public java.util.List * Output only. List of info about a feed item's validation and approval state for active * feed mappings. There will be an entry in the list for each type of feed - * mapping associated with the feed, e.g. a feed with a sitelink and a call - * feed mapping would cause every feed item associated with that feed to have - * an entry in this list for both sitelink and call. - * This field is read-only. + * mapping associated with the feed, for example, a feed with a sitelink and a + * call feed mapping would cause every feed item associated with that feed to + * have an entry in this list for both sitelink and call. This field is + * read-only. *
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2694,10 +2694,10 @@ public int getPolicyInfosCount() { *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2713,10 +2713,10 @@ public com.google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo getP *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2739,10 +2739,10 @@ public Builder setPolicyInfos( *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2762,10 +2762,10 @@ public Builder setPolicyInfos( *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2787,10 +2787,10 @@ public Builder addPolicyInfos(com.google.ads.googleads.v11.resources.FeedItemPla *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2813,10 +2813,10 @@ public Builder addPolicyInfos( *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2836,10 +2836,10 @@ public Builder addPolicyInfos( *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2859,10 +2859,10 @@ public Builder addPolicyInfos( *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2883,10 +2883,10 @@ public Builder addAllPolicyInfos( *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2905,10 +2905,10 @@ public Builder clearPolicyInfos() { *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2927,10 +2927,10 @@ public Builder removePolicyInfos(int index) { *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2943,10 +2943,10 @@ public com.google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo.Buil *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2962,10 +2962,10 @@ public com.google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfoOrBui *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2982,10 +2982,10 @@ public com.google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfoOrBui *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2998,10 +2998,10 @@ public com.google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo.Buil *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -3015,10 +3015,10 @@ public com.google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo.Buil *
      * Output only. List of info about a feed item's validation and approval state for active
      * feed mappings. There will be an entry in the list for each type of feed
-     * mapping associated with the feed, e.g. a feed with a sitelink and a call
-     * feed mapping would cause every feed item associated with that feed to have
-     * an entry in this list for both sitelink and call.
-     * This field is read-only.
+     * mapping associated with the feed, for example, a feed with a sitelink and a
+     * call feed mapping would cause every feed item associated with that feed to
+     * have an entry in this list for both sitelink and call. This field is
+     * read-only.
      * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemOrBuilder.java index b850afc932..69d5e759c9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemOrBuilder.java @@ -294,10 +294,10 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -308,10 +308,10 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -321,10 +321,10 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -334,10 +334,10 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -348,10 +348,10 @@ com.google.ads.googleads.v11.common.CustomParameterOrBuilder getUrlCustomParamet *
    * Output only. List of info about a feed item's validation and approval state for active
    * feed mappings. There will be an entry in the list for each type of feed
-   * mapping associated with the feed, e.g. a feed with a sitelink and a call
-   * feed mapping would cause every feed item associated with that feed to have
-   * an entry in this list for both sitelink and call.
-   * This field is read-only.
+   * mapping associated with the feed, for example, a feed with a sitelink and a
+   * call feed mapping would cause every feed item associated with that feed to
+   * have an entry in this list for both sitelink and call. This field is
+   * read-only.
    * 
* * repeated .google.ads.googleads.v11.resources.FeedItemPlaceholderPolicyInfo policy_infos = 10 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemPlaceholderPolicyInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemPlaceholderPolicyInfo.java index 933227107f..fda4ffa8e4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemPlaceholderPolicyInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemPlaceholderPolicyInfo.java @@ -2378,8 +2378,8 @@ public int getQualityDisapprovalReasonsValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.FeedItemQualityDisapprovalReasonEnum.FeedItemQualityDisapprovalReason quality_disapproval_reasons = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of qualityDisapprovalReasons at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for qualityDisapprovalReasons to set. * @return This builder for chaining. */ public Builder setQualityDisapprovalReasonsValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationError.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationError.java index 023c3c3cbb..af0ddd0dde 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationError.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationError.java @@ -228,7 +228,7 @@ public java.lang.String getDescription() { *
    * Output only. Set of feed attributes in the feed item flagged during validation. If
    * empty, no specific feed attributes can be associated with the error
-   * (e.g. error across the entire feed item).
+   * (for example, error across the entire feed item).
    * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -243,7 +243,7 @@ public java.lang.String getDescription() { *
    * Output only. Set of feed attributes in the feed item flagged during validation. If
    * empty, no specific feed attributes can be associated with the error
-   * (e.g. error across the entire feed item).
+   * (for example, error across the entire feed item).
    * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -256,7 +256,7 @@ public int getFeedAttributeIdsCount() { *
    * Output only. Set of feed attributes in the feed item flagged during validation. If
    * empty, no specific feed attributes can be associated with the error
-   * (e.g. error across the entire feed item).
+   * (for example, error across the entire feed item).
    * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -273,8 +273,9 @@ public long getFeedAttributeIds(int index) { /** *
    * Output only. Any extra information related to this error which is not captured by
-   * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-   * feed_attribute_id is not mapped). Note that extra_info is not localized.
+   * validation_error and feed_attribute_id (for example, placeholder field IDs
+   * when feed_attribute_id is not mapped). Note that extra_info is not
+   * localized.
    * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -287,8 +288,9 @@ public boolean hasExtraInfo() { /** *
    * Output only. Any extra information related to this error which is not captured by
-   * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-   * feed_attribute_id is not mapped). Note that extra_info is not localized.
+   * validation_error and feed_attribute_id (for example, placeholder field IDs
+   * when feed_attribute_id is not mapped). Note that extra_info is not
+   * localized.
    * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -310,8 +312,9 @@ public java.lang.String getExtraInfo() { /** *
    * Output only. Any extra information related to this error which is not captured by
-   * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-   * feed_attribute_id is not mapped). Note that extra_info is not localized.
+   * validation_error and feed_attribute_id (for example, placeholder field IDs
+   * when feed_attribute_id is not mapped). Note that extra_info is not
+   * localized.
    * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -936,7 +939,7 @@ private void ensureFeedAttributeIdsIsMutable() { *
      * Output only. Set of feed attributes in the feed item flagged during validation. If
      * empty, no specific feed attributes can be associated with the error
-     * (e.g. error across the entire feed item).
+     * (for example, error across the entire feed item).
      * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -951,7 +954,7 @@ private void ensureFeedAttributeIdsIsMutable() { *
      * Output only. Set of feed attributes in the feed item flagged during validation. If
      * empty, no specific feed attributes can be associated with the error
-     * (e.g. error across the entire feed item).
+     * (for example, error across the entire feed item).
      * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -964,7 +967,7 @@ public int getFeedAttributeIdsCount() { *
      * Output only. Set of feed attributes in the feed item flagged during validation. If
      * empty, no specific feed attributes can be associated with the error
-     * (e.g. error across the entire feed item).
+     * (for example, error across the entire feed item).
      * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -978,7 +981,7 @@ public long getFeedAttributeIds(int index) { *
      * Output only. Set of feed attributes in the feed item flagged during validation. If
      * empty, no specific feed attributes can be associated with the error
-     * (e.g. error across the entire feed item).
+     * (for example, error across the entire feed item).
      * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -997,7 +1000,7 @@ public Builder setFeedAttributeIds( *
      * Output only. Set of feed attributes in the feed item flagged during validation. If
      * empty, no specific feed attributes can be associated with the error
-     * (e.g. error across the entire feed item).
+     * (for example, error across the entire feed item).
      * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1014,7 +1017,7 @@ public Builder addFeedAttributeIds(long value) { *
      * Output only. Set of feed attributes in the feed item flagged during validation. If
      * empty, no specific feed attributes can be associated with the error
-     * (e.g. error across the entire feed item).
+     * (for example, error across the entire feed item).
      * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1033,7 +1036,7 @@ public Builder addAllFeedAttributeIds( *
      * Output only. Set of feed attributes in the feed item flagged during validation. If
      * empty, no specific feed attributes can be associated with the error
-     * (e.g. error across the entire feed item).
+     * (for example, error across the entire feed item).
      * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1050,8 +1053,9 @@ public Builder clearFeedAttributeIds() { /** *
      * Output only. Any extra information related to this error which is not captured by
-     * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-     * feed_attribute_id is not mapped). Note that extra_info is not localized.
+     * validation_error and feed_attribute_id (for example, placeholder field IDs
+     * when feed_attribute_id is not mapped). Note that extra_info is not
+     * localized.
      * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1063,8 +1067,9 @@ public boolean hasExtraInfo() { /** *
      * Output only. Any extra information related to this error which is not captured by
-     * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-     * feed_attribute_id is not mapped). Note that extra_info is not localized.
+     * validation_error and feed_attribute_id (for example, placeholder field IDs
+     * when feed_attribute_id is not mapped). Note that extra_info is not
+     * localized.
      * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1085,8 +1090,9 @@ public java.lang.String getExtraInfo() { /** *
      * Output only. Any extra information related to this error which is not captured by
-     * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-     * feed_attribute_id is not mapped). Note that extra_info is not localized.
+     * validation_error and feed_attribute_id (for example, placeholder field IDs
+     * when feed_attribute_id is not mapped). Note that extra_info is not
+     * localized.
      * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1108,8 +1114,9 @@ public java.lang.String getExtraInfo() { /** *
      * Output only. Any extra information related to this error which is not captured by
-     * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-     * feed_attribute_id is not mapped). Note that extra_info is not localized.
+     * validation_error and feed_attribute_id (for example, placeholder field IDs
+     * when feed_attribute_id is not mapped). Note that extra_info is not
+     * localized.
      * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1129,8 +1136,9 @@ public Builder setExtraInfo( /** *
      * Output only. Any extra information related to this error which is not captured by
-     * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-     * feed_attribute_id is not mapped). Note that extra_info is not localized.
+     * validation_error and feed_attribute_id (for example, placeholder field IDs
+     * when feed_attribute_id is not mapped). Note that extra_info is not
+     * localized.
      * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1145,8 +1153,9 @@ public Builder clearExtraInfo() { /** *
      * Output only. Any extra information related to this error which is not captured by
-     * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-     * feed_attribute_id is not mapped). Note that extra_info is not localized.
+     * validation_error and feed_attribute_id (for example, placeholder field IDs
+     * when feed_attribute_id is not mapped). Note that extra_info is not
+     * localized.
      * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationErrorOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationErrorOrBuilder.java index 67838a12e8..d0e94fcb0c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationErrorOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedItemValidationErrorOrBuilder.java @@ -61,7 +61,7 @@ public interface FeedItemValidationErrorOrBuilder extends *
    * Output only. Set of feed attributes in the feed item flagged during validation. If
    * empty, no specific feed attributes can be associated with the error
-   * (e.g. error across the entire feed item).
+   * (for example, error across the entire feed item).
    * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -72,7 +72,7 @@ public interface FeedItemValidationErrorOrBuilder extends *
    * Output only. Set of feed attributes in the feed item flagged during validation. If
    * empty, no specific feed attributes can be associated with the error
-   * (e.g. error across the entire feed item).
+   * (for example, error across the entire feed item).
    * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -83,7 +83,7 @@ public interface FeedItemValidationErrorOrBuilder extends *
    * Output only. Set of feed attributes in the feed item flagged during validation. If
    * empty, no specific feed attributes can be associated with the error
-   * (e.g. error across the entire feed item).
+   * (for example, error across the entire feed item).
    * 
* * repeated int64 feed_attribute_ids = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -95,8 +95,9 @@ public interface FeedItemValidationErrorOrBuilder extends /** *
    * Output only. Any extra information related to this error which is not captured by
-   * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-   * feed_attribute_id is not mapped). Note that extra_info is not localized.
+   * validation_error and feed_attribute_id (for example, placeholder field IDs
+   * when feed_attribute_id is not mapped). Note that extra_info is not
+   * localized.
    * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -106,8 +107,9 @@ public interface FeedItemValidationErrorOrBuilder extends /** *
    * Output only. Any extra information related to this error which is not captured by
-   * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-   * feed_attribute_id is not mapped). Note that extra_info is not localized.
+   * validation_error and feed_attribute_id (for example, placeholder field IDs
+   * when feed_attribute_id is not mapped). Note that extra_info is not
+   * localized.
    * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -117,8 +119,9 @@ public interface FeedItemValidationErrorOrBuilder extends /** *
    * Output only. Any extra information related to this error which is not captured by
-   * validation_error and feed_attribute_id (e.g. placeholder field IDs when
-   * feed_attribute_id is not mapped). Note that extra_info is not localized.
+   * validation_error and feed_attribute_id (for example, placeholder field IDs
+   * when feed_attribute_id is not mapped). Note that extra_info is not
+   * localized.
    * 
* * optional string extra_info = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMapping.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMapping.java index cdd56cb31f..f9d72e08d4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMapping.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMapping.java @@ -395,8 +395,8 @@ public com.google.ads.googleads.v11.resources.AttributeFieldMappingOrBuilder get public static final int PLACEHOLDER_TYPE_FIELD_NUMBER = 3; /** *
-   * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-   * attributes to placeholder fields).
+   * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+   * feed attributes to placeholder fields).
    * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -407,8 +407,8 @@ public boolean hasPlaceholderType() { } /** *
-   * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-   * attributes to placeholder fields).
+   * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+   * feed attributes to placeholder fields).
    * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -422,8 +422,8 @@ public int getPlaceholderTypeValue() { } /** *
-   * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-   * attributes to placeholder fields).
+   * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+   * feed attributes to placeholder fields).
    * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -442,7 +442,7 @@ public com.google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType ge public static final int CRITERION_TYPE_FIELD_NUMBER = 4; /** *
-   * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+   * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
    * attributes to criterion fields).
    * 
* @@ -454,7 +454,7 @@ public boolean hasCriterionType() { } /** *
-   * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+   * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
    * attributes to criterion fields).
    * 
* @@ -469,7 +469,7 @@ public int getCriterionTypeValue() { } /** *
-   * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+   * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
    * attributes to criterion fields).
    * 
* @@ -1647,8 +1647,8 @@ public Builder clearStatus() { /** *
-     * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-     * attributes to placeholder fields).
+     * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+     * feed attributes to placeholder fields).
      * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1660,8 +1660,8 @@ public boolean hasPlaceholderType() { } /** *
-     * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-     * attributes to placeholder fields).
+     * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+     * feed attributes to placeholder fields).
      * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1676,8 +1676,8 @@ public int getPlaceholderTypeValue() { } /** *
-     * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-     * attributes to placeholder fields).
+     * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+     * feed attributes to placeholder fields).
      * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1692,8 +1692,8 @@ public Builder setPlaceholderTypeValue(int value) { } /** *
-     * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-     * attributes to placeholder fields).
+     * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+     * feed attributes to placeholder fields).
      * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1711,8 +1711,8 @@ public com.google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType ge } /** *
-     * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-     * attributes to placeholder fields).
+     * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+     * feed attributes to placeholder fields).
      * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1730,8 +1730,8 @@ public Builder setPlaceholderType(com.google.ads.googleads.v11.enums.Placeholder } /** *
-     * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-     * attributes to placeholder fields).
+     * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+     * feed attributes to placeholder fields).
      * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -1748,7 +1748,7 @@ public Builder clearPlaceholderType() { /** *
-     * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+     * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
      * attributes to criterion fields).
      * 
* @@ -1761,7 +1761,7 @@ public boolean hasCriterionType() { } /** *
-     * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+     * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
      * attributes to criterion fields).
      * 
* @@ -1777,7 +1777,7 @@ public int getCriterionTypeValue() { } /** *
-     * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+     * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
      * attributes to criterion fields).
      * 
* @@ -1793,7 +1793,7 @@ public Builder setCriterionTypeValue(int value) { } /** *
-     * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+     * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
      * attributes to criterion fields).
      * 
* @@ -1812,7 +1812,7 @@ public com.google.ads.googleads.v11.enums.FeedMappingCriterionTypeEnum.FeedMappi } /** *
-     * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+     * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
      * attributes to criterion fields).
      * 
* @@ -1831,7 +1831,7 @@ public Builder setCriterionType(com.google.ads.googleads.v11.enums.FeedMappingCr } /** *
-     * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+     * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
      * attributes to criterion fields).
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMappingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMappingOrBuilder.java index ec259c3049..eb4421fb39 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMappingOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/FeedMappingOrBuilder.java @@ -147,8 +147,8 @@ com.google.ads.googleads.v11.resources.AttributeFieldMappingOrBuilder getAttribu /** *
-   * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-   * attributes to placeholder fields).
+   * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+   * feed attributes to placeholder fields).
    * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -157,8 +157,8 @@ com.google.ads.googleads.v11.resources.AttributeFieldMappingOrBuilder getAttribu boolean hasPlaceholderType(); /** *
-   * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-   * attributes to placeholder fields).
+   * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+   * feed attributes to placeholder fields).
    * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -167,8 +167,8 @@ com.google.ads.googleads.v11.resources.AttributeFieldMappingOrBuilder getAttribu int getPlaceholderTypeValue(); /** *
-   * Immutable. The placeholder type of this mapping (i.e., if the mapping maps feed
-   * attributes to placeholder fields).
+   * Immutable. The placeholder type of this mapping (for example, if the mapping maps
+   * feed attributes to placeholder fields).
    * 
* * .google.ads.googleads.v11.enums.PlaceholderTypeEnum.PlaceholderType placeholder_type = 3 [(.google.api.field_behavior) = IMMUTABLE]; @@ -178,7 +178,7 @@ com.google.ads.googleads.v11.resources.AttributeFieldMappingOrBuilder getAttribu /** *
-   * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+   * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
    * attributes to criterion fields).
    * 
* @@ -188,7 +188,7 @@ com.google.ads.googleads.v11.resources.AttributeFieldMappingOrBuilder getAttribu boolean hasCriterionType(); /** *
-   * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+   * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
    * attributes to criterion fields).
    * 
* @@ -198,7 +198,7 @@ com.google.ads.googleads.v11.resources.AttributeFieldMappingOrBuilder getAttribu int getCriterionTypeValue(); /** *
-   * Immutable. The criterion type of this mapping (i.e., if the mapping maps feed
+   * Immutable. The criterion type of this mapping (for example, if the mapping maps feed
    * attributes to criterion fields).
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementView.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementView.java index 220cc2eade..d3b944550e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementView.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementView.java @@ -296,8 +296,8 @@ public java.lang.String getDisplayName() { private volatile java.lang.Object targetUrl_; /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -309,8 +309,8 @@ public boolean hasTargetUrl() { } /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -331,8 +331,8 @@ public java.lang.String getTargetUrl() { } /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -357,7 +357,8 @@ public java.lang.String getTargetUrl() { private int placementType_; /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -368,7 +369,8 @@ public java.lang.String getTargetUrl() { } /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1113,8 +1115,8 @@ public Builder setDisplayNameBytes( private java.lang.Object targetUrl_ = ""; /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1125,8 +1127,8 @@ public boolean hasTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1146,8 +1148,8 @@ public java.lang.String getTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1168,8 +1170,8 @@ public java.lang.String getTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1188,8 +1190,8 @@ public Builder setTargetUrl( } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1203,8 +1205,8 @@ public Builder clearTargetUrl() { } /** *
-     * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-     * app store, or a YouTube channel URL.
+     * Output only. URL of the group placement, for example, domain, link to the mobile
+     * application in app store, or a YouTube channel URL.
      * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1226,7 +1228,8 @@ public Builder setTargetUrlBytes( private int placementType_ = 0; /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1237,7 +1240,8 @@ public Builder setTargetUrlBytes( } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1252,7 +1256,8 @@ public Builder setPlacementTypeValue(int value) { } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1266,7 +1271,8 @@ public com.google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType getPla } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1284,7 +1290,8 @@ public Builder setPlacementType(com.google.ads.googleads.v11.enums.PlacementType } /** *
-     * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+     * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+     * Application.
      * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementViewOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementViewOrBuilder.java index df6b04873c..ff38e8755c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementViewOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/GroupPlacementViewOrBuilder.java @@ -94,8 +94,8 @@ public interface GroupPlacementViewOrBuilder extends /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -104,8 +104,8 @@ public interface GroupPlacementViewOrBuilder extends boolean hasTargetUrl(); /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -114,8 +114,8 @@ public interface GroupPlacementViewOrBuilder extends java.lang.String getTargetUrl(); /** *
-   * Output only. URL of the group placement, e.g. domain, link to the mobile application in
-   * app store, or a YouTube channel URL.
+   * Output only. URL of the group placement, for example, domain, link to the mobile
+   * application in app store, or a YouTube channel URL.
    * 
* * optional string target_url = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -126,7 +126,8 @@ public interface GroupPlacementViewOrBuilder extends /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -135,7 +136,8 @@ public interface GroupPlacementViewOrBuilder extends int getPlacementTypeValue(); /** *
-   * Output only. Type of the placement, e.g. Website, YouTube Channel, Mobile Application.
+   * Output only. Type of the placement, for example, Website, YouTube Channel, Mobile
+   * Application.
    * 
* * .google.ads.googleads.v11.enums.PlacementTypeEnum.PlacementType placement_type = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/HotelReconciliation.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/HotelReconciliation.java index 13d4027536..d8143ad038 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/HotelReconciliation.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/HotelReconciliation.java @@ -7,7 +7,7 @@ *
  * A hotel reconciliation. It contains conversion information from Hotel
  * bookings to reconcile with advertiser records. These rows may be updated
- * or canceled before billing via Bulk Uploads.
+ * or canceled before billing through Bulk Uploads.
  * 
* * Protobuf type {@code google.ads.googleads.v11.resources.HotelReconciliation} @@ -851,7 +851,7 @@ protected Builder newBuilderForType( *
    * A hotel reconciliation. It contains conversion information from Hotel
    * bookings to reconcile with advertiser records. These rows may be updated
-   * or canceled before billing via Bulk Uploads.
+   * or canceled before billing through Bulk Uploads.
    * 
* * Protobuf type {@code google.ads.googleads.v11.resources.HotelReconciliation} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Invoice.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Invoice.java index 13acca9d3c..3421749f1e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Invoice.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Invoice.java @@ -2864,8 +2864,8 @@ public java.lang.String getBillingSetup() { /** *
    * Output only. A 16 digit ID used to identify the payments account associated with the
-   * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-   * "Billing Account Number".
+   * billing setup, for example, "1234-5678-9012-3456". It appears on the
+   * invoice PDF as "Billing Account Number".
    * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2878,8 +2878,8 @@ public boolean hasPaymentsAccountId() { /** *
    * Output only. A 16 digit ID used to identify the payments account associated with the
-   * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-   * "Billing Account Number".
+   * billing setup, for example, "1234-5678-9012-3456". It appears on the
+   * invoice PDF as "Billing Account Number".
    * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2901,8 +2901,8 @@ public java.lang.String getPaymentsAccountId() { /** *
    * Output only. A 16 digit ID used to identify the payments account associated with the
-   * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-   * "Billing Account Number".
+   * billing setup, for example, "1234-5678-9012-3456". It appears on the
+   * invoice PDF as "Billing Account Number".
    * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2928,8 +2928,8 @@ public java.lang.String getPaymentsAccountId() { /** *
    * Output only. A 12 digit ID used to identify the payments profile associated with the
-   * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-   * "Billing ID".
+   * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+   * as "Billing ID".
    * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2942,8 +2942,8 @@ public boolean hasPaymentsProfileId() { /** *
    * Output only. A 12 digit ID used to identify the payments profile associated with the
-   * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-   * "Billing ID".
+   * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+   * as "Billing ID".
    * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2965,8 +2965,8 @@ public java.lang.String getPaymentsProfileId() { /** *
    * Output only. A 12 digit ID used to identify the payments profile associated with the
-   * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-   * "Billing ID".
+   * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+   * as "Billing ID".
    * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4945,8 +4945,8 @@ public Builder setBillingSetupBytes( /** *
      * Output only. A 16 digit ID used to identify the payments account associated with the
-     * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-     * "Billing Account Number".
+     * billing setup, for example, "1234-5678-9012-3456". It appears on the
+     * invoice PDF as "Billing Account Number".
      * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4958,8 +4958,8 @@ public boolean hasPaymentsAccountId() { /** *
      * Output only. A 16 digit ID used to identify the payments account associated with the
-     * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-     * "Billing Account Number".
+     * billing setup, for example, "1234-5678-9012-3456". It appears on the
+     * invoice PDF as "Billing Account Number".
      * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -4980,8 +4980,8 @@ public java.lang.String getPaymentsAccountId() { /** *
      * Output only. A 16 digit ID used to identify the payments account associated with the
-     * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-     * "Billing Account Number".
+     * billing setup, for example, "1234-5678-9012-3456". It appears on the
+     * invoice PDF as "Billing Account Number".
      * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5003,8 +5003,8 @@ public java.lang.String getPaymentsAccountId() { /** *
      * Output only. A 16 digit ID used to identify the payments account associated with the
-     * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-     * "Billing Account Number".
+     * billing setup, for example, "1234-5678-9012-3456". It appears on the
+     * invoice PDF as "Billing Account Number".
      * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5024,8 +5024,8 @@ public Builder setPaymentsAccountId( /** *
      * Output only. A 16 digit ID used to identify the payments account associated with the
-     * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-     * "Billing Account Number".
+     * billing setup, for example, "1234-5678-9012-3456". It appears on the
+     * invoice PDF as "Billing Account Number".
      * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5040,8 +5040,8 @@ public Builder clearPaymentsAccountId() { /** *
      * Output only. A 16 digit ID used to identify the payments account associated with the
-     * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-     * "Billing Account Number".
+     * billing setup, for example, "1234-5678-9012-3456". It appears on the
+     * invoice PDF as "Billing Account Number".
      * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5064,8 +5064,8 @@ public Builder setPaymentsAccountIdBytes( /** *
      * Output only. A 12 digit ID used to identify the payments profile associated with the
-     * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-     * "Billing ID".
+     * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+     * as "Billing ID".
      * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5077,8 +5077,8 @@ public boolean hasPaymentsProfileId() { /** *
      * Output only. A 12 digit ID used to identify the payments profile associated with the
-     * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-     * "Billing ID".
+     * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+     * as "Billing ID".
      * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5099,8 +5099,8 @@ public java.lang.String getPaymentsProfileId() { /** *
      * Output only. A 12 digit ID used to identify the payments profile associated with the
-     * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-     * "Billing ID".
+     * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+     * as "Billing ID".
      * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5122,8 +5122,8 @@ public java.lang.String getPaymentsProfileId() { /** *
      * Output only. A 12 digit ID used to identify the payments profile associated with the
-     * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-     * "Billing ID".
+     * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+     * as "Billing ID".
      * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5143,8 +5143,8 @@ public Builder setPaymentsProfileId( /** *
      * Output only. A 12 digit ID used to identify the payments profile associated with the
-     * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-     * "Billing ID".
+     * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+     * as "Billing ID".
      * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5159,8 +5159,8 @@ public Builder clearPaymentsProfileId() { /** *
      * Output only. A 12 digit ID used to identify the payments profile associated with the
-     * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-     * "Billing ID".
+     * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+     * as "Billing ID".
      * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/InvoiceOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/InvoiceOrBuilder.java index f123a56224..5ed3ade74a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/InvoiceOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/InvoiceOrBuilder.java @@ -116,8 +116,8 @@ public interface InvoiceOrBuilder extends /** *
    * Output only. A 16 digit ID used to identify the payments account associated with the
-   * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-   * "Billing Account Number".
+   * billing setup, for example, "1234-5678-9012-3456". It appears on the
+   * invoice PDF as "Billing Account Number".
    * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -127,8 +127,8 @@ public interface InvoiceOrBuilder extends /** *
    * Output only. A 16 digit ID used to identify the payments account associated with the
-   * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-   * "Billing Account Number".
+   * billing setup, for example, "1234-5678-9012-3456". It appears on the
+   * invoice PDF as "Billing Account Number".
    * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -138,8 +138,8 @@ public interface InvoiceOrBuilder extends /** *
    * Output only. A 16 digit ID used to identify the payments account associated with the
-   * billing setup, e.g. "1234-5678-9012-3456". It appears on the invoice PDF as
-   * "Billing Account Number".
+   * billing setup, for example, "1234-5678-9012-3456". It appears on the
+   * invoice PDF as "Billing Account Number".
    * 
* * optional string payments_account_id = 27 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -151,8 +151,8 @@ public interface InvoiceOrBuilder extends /** *
    * Output only. A 12 digit ID used to identify the payments profile associated with the
-   * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-   * "Billing ID".
+   * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+   * as "Billing ID".
    * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -162,8 +162,8 @@ public interface InvoiceOrBuilder extends /** *
    * Output only. A 12 digit ID used to identify the payments profile associated with the
-   * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-   * "Billing ID".
+   * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+   * as "Billing ID".
    * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -173,8 +173,8 @@ public interface InvoiceOrBuilder extends /** *
    * Output only. A 12 digit ID used to identify the payments profile associated with the
-   * billing setup, e.g. "1234-5678-9012". It appears on the invoice PDF as
-   * "Billing ID".
+   * billing setup, for example, "1234-5678-9012". It appears on the invoice PDF
+   * as "Billing ID".
    * 
* * optional string payments_profile_id = 28 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeyword.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeyword.java index 989adc6aaa..f173bfde96 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeyword.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeyword.java @@ -356,11 +356,10 @@ public java.lang.String getText() { private long cpcBidMicros_; /** *
-   * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-   * same as the account currency code. This will override any CPC bid set at
-   * the keyword plan ad group level.
-   * Not applicable for negative keywords. (negative = true)
-   * This field is Optional.
+   * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+   * is the same as the account currency code. This will override any CPC bid
+   * set at the keyword plan ad group level. Not applicable for negative
+   * keywords. (negative = true) This field is Optional.
    * 
* * optional int64 cpc_bid_micros = 11; @@ -372,11 +371,10 @@ public boolean hasCpcBidMicros() { } /** *
-   * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-   * same as the account currency code. This will override any CPC bid set at
-   * the keyword plan ad group level.
-   * Not applicable for negative keywords. (negative = true)
-   * This field is Optional.
+   * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+   * is the same as the account currency code. This will override any CPC bid
+   * set at the keyword plan ad group level. Not applicable for negative
+   * keywords. (negative = true) This field is Optional.
    * 
* * optional int64 cpc_bid_micros = 11; @@ -1323,11 +1321,10 @@ public Builder clearMatchType() { private long cpcBidMicros_ ; /** *
-     * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-     * same as the account currency code. This will override any CPC bid set at
-     * the keyword plan ad group level.
-     * Not applicable for negative keywords. (negative = true)
-     * This field is Optional.
+     * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+     * is the same as the account currency code. This will override any CPC bid
+     * set at the keyword plan ad group level. Not applicable for negative
+     * keywords. (negative = true) This field is Optional.
      * 
* * optional int64 cpc_bid_micros = 11; @@ -1339,11 +1336,10 @@ public boolean hasCpcBidMicros() { } /** *
-     * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-     * same as the account currency code. This will override any CPC bid set at
-     * the keyword plan ad group level.
-     * Not applicable for negative keywords. (negative = true)
-     * This field is Optional.
+     * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+     * is the same as the account currency code. This will override any CPC bid
+     * set at the keyword plan ad group level. Not applicable for negative
+     * keywords. (negative = true) This field is Optional.
      * 
* * optional int64 cpc_bid_micros = 11; @@ -1355,11 +1351,10 @@ public long getCpcBidMicros() { } /** *
-     * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-     * same as the account currency code. This will override any CPC bid set at
-     * the keyword plan ad group level.
-     * Not applicable for negative keywords. (negative = true)
-     * This field is Optional.
+     * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+     * is the same as the account currency code. This will override any CPC bid
+     * set at the keyword plan ad group level. Not applicable for negative
+     * keywords. (negative = true) This field is Optional.
      * 
* * optional int64 cpc_bid_micros = 11; @@ -1374,11 +1369,10 @@ public Builder setCpcBidMicros(long value) { } /** *
-     * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-     * same as the account currency code. This will override any CPC bid set at
-     * the keyword plan ad group level.
-     * Not applicable for negative keywords. (negative = true)
-     * This field is Optional.
+     * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+     * is the same as the account currency code. This will override any CPC bid
+     * set at the keyword plan ad group level. Not applicable for negative
+     * keywords. (negative = true) This field is Optional.
      * 
* * optional int64 cpc_bid_micros = 11; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeywordOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeywordOrBuilder.java index a8450b4aa6..ceb739f8b7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeywordOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/KeywordPlanAdGroupKeywordOrBuilder.java @@ -129,11 +129,10 @@ public interface KeywordPlanAdGroupKeywordOrBuilder extends /** *
-   * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-   * same as the account currency code. This will override any CPC bid set at
-   * the keyword plan ad group level.
-   * Not applicable for negative keywords. (negative = true)
-   * This field is Optional.
+   * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+   * is the same as the account currency code. This will override any CPC bid
+   * set at the keyword plan ad group level. Not applicable for negative
+   * keywords. (negative = true) This field is Optional.
    * 
* * optional int64 cpc_bid_micros = 11; @@ -142,11 +141,10 @@ public interface KeywordPlanAdGroupKeywordOrBuilder extends boolean hasCpcBidMicros(); /** *
-   * A keyword level max cpc bid in micros (e.g. $1 = 1mm). The currency is the
-   * same as the account currency code. This will override any CPC bid set at
-   * the keyword plan ad group level.
-   * Not applicable for negative keywords. (negative = true)
-   * This field is Optional.
+   * A keyword level max cpc bid in micros (for example, $1 = 1mm). The currency
+   * is the same as the account currency code. This will override any CPC bid
+   * set at the keyword plan ad group level. Not applicable for negative
+   * keywords. (negative = true) This field is Optional.
    * 
* * optional int64 cpc_bid_micros = 11; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstant.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstant.java index 4037e4d8dd..ef42ad761d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstant.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstant.java @@ -200,7 +200,7 @@ public long getId() { private volatile java.lang.Object code_; /** *
-   * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+   * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
    * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -212,7 +212,7 @@ public boolean hasCode() { } /** *
-   * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+   * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
    * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -233,7 +233,7 @@ public java.lang.String getCode() { } /** *
-   * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+   * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
    * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -258,8 +258,8 @@ public java.lang.String getCode() { private volatile java.lang.Object name_; /** *
-   * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-   * etc.
+   * Output only. The full name of the language in English, for example, "English (US)",
+   * "Spanish", etc.
    * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -271,8 +271,8 @@ public boolean hasName() { } /** *
-   * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-   * etc.
+   * Output only. The full name of the language in English, for example, "English (US)",
+   * "Spanish", etc.
    * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -293,8 +293,8 @@ public java.lang.String getName() { } /** *
-   * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-   * etc.
+   * Output only. The full name of the language in English, for example, "English (US)",
+   * "Spanish", etc.
    * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -920,7 +920,7 @@ public Builder clearId() { private java.lang.Object code_ = ""; /** *
-     * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+     * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
      * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -931,7 +931,7 @@ public boolean hasCode() { } /** *
-     * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+     * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
      * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -951,7 +951,7 @@ public java.lang.String getCode() { } /** *
-     * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+     * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
      * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -972,7 +972,7 @@ public java.lang.String getCode() { } /** *
-     * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+     * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
      * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -991,7 +991,7 @@ public Builder setCode( } /** *
-     * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+     * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
      * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1005,7 +1005,7 @@ public Builder clearCode() { } /** *
-     * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+     * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
      * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1027,8 +1027,8 @@ public Builder setCodeBytes( private java.lang.Object name_ = ""; /** *
-     * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-     * etc.
+     * Output only. The full name of the language in English, for example, "English (US)",
+     * "Spanish", etc.
      * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1039,8 +1039,8 @@ public boolean hasName() { } /** *
-     * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-     * etc.
+     * Output only. The full name of the language in English, for example, "English (US)",
+     * "Spanish", etc.
      * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1060,8 +1060,8 @@ public java.lang.String getName() { } /** *
-     * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-     * etc.
+     * Output only. The full name of the language in English, for example, "English (US)",
+     * "Spanish", etc.
      * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1082,8 +1082,8 @@ public java.lang.String getName() { } /** *
-     * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-     * etc.
+     * Output only. The full name of the language in English, for example, "English (US)",
+     * "Spanish", etc.
      * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1102,8 +1102,8 @@ public Builder setName( } /** *
-     * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-     * etc.
+     * Output only. The full name of the language in English, for example, "English (US)",
+     * "Spanish", etc.
      * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1117,8 +1117,8 @@ public Builder clearName() { } /** *
-     * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-     * etc.
+     * Output only. The full name of the language in English, for example, "English (US)",
+     * "Spanish", etc.
      * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstantOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstantOrBuilder.java index 7dc2290096..63cbaa9cd9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstantOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LanguageConstantOrBuilder.java @@ -52,7 +52,7 @@ public interface LanguageConstantOrBuilder extends /** *
-   * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+   * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
    * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -61,7 +61,7 @@ public interface LanguageConstantOrBuilder extends boolean hasCode(); /** *
-   * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+   * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
    * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -70,7 +70,7 @@ public interface LanguageConstantOrBuilder extends java.lang.String getCode(); /** *
-   * Output only. The language code, e.g. "en_US", "en_AU", "es", "fr", etc.
+   * Output only. The language code, for example, "en_US", "en_AU", "es", "fr", etc.
    * 
* * optional string code = 7 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -81,8 +81,8 @@ public interface LanguageConstantOrBuilder extends /** *
-   * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-   * etc.
+   * Output only. The full name of the language in English, for example, "English (US)",
+   * "Spanish", etc.
    * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -91,8 +91,8 @@ public interface LanguageConstantOrBuilder extends boolean hasName(); /** *
-   * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-   * etc.
+   * Output only. The full name of the language in English, for example, "English (US)",
+   * "Spanish", etc.
    * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -101,8 +101,8 @@ public interface LanguageConstantOrBuilder extends java.lang.String getName(); /** *
-   * Output only. The full name of the language in English, e.g., "English (US)", "Spanish",
-   * etc.
+   * Output only. The full name of the language in English, for example, "English (US)",
+   * "Spanish", etc.
    * 
* * optional string name = 8 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionData.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionData.java index 52405a9113..c7fe3d5932 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionData.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionData.java @@ -547,7 +547,7 @@ public java.lang.String getGclid() { /** *
    * Output only. The date and time at which the lead form was submitted. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -569,7 +569,7 @@ public java.lang.String getSubmissionDateTime() { /** *
    * Output only. The date and time at which the lead form was submitted. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2070,7 +2070,7 @@ public Builder setGclidBytes( /** *
      * Output only. The date and time at which the lead form was submitted. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2091,7 +2091,7 @@ public java.lang.String getSubmissionDateTime() { /** *
      * Output only. The date and time at which the lead form was submitted. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2113,7 +2113,7 @@ public java.lang.String getSubmissionDateTime() { /** *
      * Output only. The date and time at which the lead form was submitted. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2133,7 +2133,7 @@ public Builder setSubmissionDateTime( /** *
      * Output only. The date and time at which the lead form was submitted. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -2148,7 +2148,7 @@ public Builder clearSubmissionDateTime() { /** *
      * Output only. The date and time at which the lead form was submitted. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionDataOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionDataOrBuilder.java index d9d87fa7be..098cd4aabf 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionDataOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LeadFormSubmissionDataOrBuilder.java @@ -198,7 +198,7 @@ com.google.ads.googleads.v11.resources.LeadFormSubmissionFieldOrBuilder getLeadF /** *
    * Output only. The date and time at which the lead form was submitted. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -208,7 +208,7 @@ com.google.ads.googleads.v11.resources.LeadFormSubmissionFieldOrBuilder getLeadF /** *
    * Output only. The date and time at which the lead form was submitted. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * string submission_date_time = 9 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEvent.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEvent.java index 242f1eaa78..f234c7beb2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEvent.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEvent.java @@ -201,7 +201,7 @@ public long getId() { private volatile java.lang.Object name_; /** *
-   * Output only. The name of the life event. E.g.,"Recently Moved"
+   * Output only. The name of the life event, for example,"Recently Moved"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -222,7 +222,7 @@ public java.lang.String getName() { } /** *
-   * Output only. The name of the life event. E.g.,"Recently Moved"
+   * Output only. The name of the life event, for example,"Recently Moved"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -950,7 +950,7 @@ public Builder clearId() { private java.lang.Object name_ = ""; /** *
-     * Output only. The name of the life event. E.g.,"Recently Moved"
+     * Output only. The name of the life event, for example,"Recently Moved"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -970,7 +970,7 @@ public java.lang.String getName() { } /** *
-     * Output only. The name of the life event. E.g.,"Recently Moved"
+     * Output only. The name of the life event, for example,"Recently Moved"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -991,7 +991,7 @@ public java.lang.String getName() { } /** *
-     * Output only. The name of the life event. E.g.,"Recently Moved"
+     * Output only. The name of the life event, for example,"Recently Moved"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1010,7 +1010,7 @@ public Builder setName( } /** *
-     * Output only. The name of the life event. E.g.,"Recently Moved"
+     * Output only. The name of the life event, for example,"Recently Moved"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1024,7 +1024,7 @@ public Builder clearName() { } /** *
-     * Output only. The name of the life event. E.g.,"Recently Moved"
+     * Output only. The name of the life event, for example,"Recently Moved"
      * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEventOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEventOrBuilder.java index 853f9c4efd..e03e2cf03a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEventOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/LifeEventOrBuilder.java @@ -43,7 +43,7 @@ public interface LifeEventOrBuilder extends /** *
-   * Output only. The name of the life event. E.g.,"Recently Moved"
+   * Output only. The name of the life event, for example,"Recently Moved"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -52,7 +52,7 @@ public interface LifeEventOrBuilder extends java.lang.String getName(); /** *
-   * Output only. The name of the life event. E.g.,"Recently Moved"
+   * Output only. The name of the life event, for example,"Recently Moved"
    * 
* * string name = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundle.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundle.java index a136727d2f..6e3d2cbeef 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundle.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundle.java @@ -133,7 +133,7 @@ public com.google.protobuf.ByteString getData() { /** *
    * Output only. The url to access the uploaded zipped data.
-   * E.g. https://tpc.googlesyndication.com/simgad/123
+   * For example, https://tpc.googlesyndication.com/simgad/123
    * This field is read-only.
    * 
* @@ -147,7 +147,7 @@ public boolean hasUrl() { /** *
    * Output only. The url to access the uploaded zipped data.
-   * E.g. https://tpc.googlesyndication.com/simgad/123
+   * For example, https://tpc.googlesyndication.com/simgad/123
    * This field is read-only.
    * 
* @@ -170,7 +170,7 @@ public java.lang.String getUrl() { /** *
    * Output only. The url to access the uploaded zipped data.
-   * E.g. https://tpc.googlesyndication.com/simgad/123
+   * For example, https://tpc.googlesyndication.com/simgad/123
    * This field is read-only.
    * 
* @@ -598,7 +598,7 @@ public Builder clearData() { /** *
      * Output only. The url to access the uploaded zipped data.
-     * E.g. https://tpc.googlesyndication.com/simgad/123
+     * For example, https://tpc.googlesyndication.com/simgad/123
      * This field is read-only.
      * 
* @@ -611,7 +611,7 @@ public boolean hasUrl() { /** *
      * Output only. The url to access the uploaded zipped data.
-     * E.g. https://tpc.googlesyndication.com/simgad/123
+     * For example, https://tpc.googlesyndication.com/simgad/123
      * This field is read-only.
      * 
* @@ -633,7 +633,7 @@ public java.lang.String getUrl() { /** *
      * Output only. The url to access the uploaded zipped data.
-     * E.g. https://tpc.googlesyndication.com/simgad/123
+     * For example, https://tpc.googlesyndication.com/simgad/123
      * This field is read-only.
      * 
* @@ -656,7 +656,7 @@ public java.lang.String getUrl() { /** *
      * Output only. The url to access the uploaded zipped data.
-     * E.g. https://tpc.googlesyndication.com/simgad/123
+     * For example, https://tpc.googlesyndication.com/simgad/123
      * This field is read-only.
      * 
* @@ -677,7 +677,7 @@ public Builder setUrl( /** *
      * Output only. The url to access the uploaded zipped data.
-     * E.g. https://tpc.googlesyndication.com/simgad/123
+     * For example, https://tpc.googlesyndication.com/simgad/123
      * This field is read-only.
      * 
* @@ -693,7 +693,7 @@ public Builder clearUrl() { /** *
      * Output only. The url to access the uploaded zipped data.
-     * E.g. https://tpc.googlesyndication.com/simgad/123
+     * For example, https://tpc.googlesyndication.com/simgad/123
      * This field is read-only.
      * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundleOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundleOrBuilder.java index c12987d659..e4b7f58639 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundleOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/MediaBundleOrBuilder.java @@ -29,7 +29,7 @@ public interface MediaBundleOrBuilder extends /** *
    * Output only. The url to access the uploaded zipped data.
-   * E.g. https://tpc.googlesyndication.com/simgad/123
+   * For example, https://tpc.googlesyndication.com/simgad/123
    * This field is read-only.
    * 
* @@ -40,7 +40,7 @@ public interface MediaBundleOrBuilder extends /** *
    * Output only. The url to access the uploaded zipped data.
-   * E.g. https://tpc.googlesyndication.com/simgad/123
+   * For example, https://tpc.googlesyndication.com/simgad/123
    * This field is read-only.
    * 
* @@ -51,7 +51,7 @@ public interface MediaBundleOrBuilder extends /** *
    * Output only. The url to access the uploaded zipped data.
-   * E.g. https://tpc.googlesyndication.com/simgad/123
+   * For example, https://tpc.googlesyndication.com/simgad/123
    * This field is read-only.
    * 
* diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccount.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccount.java index 538e544214..f9ed0ea99a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccount.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccount.java @@ -432,8 +432,8 @@ public java.lang.String getPaymentsProfileId() { private volatile java.lang.Object secondaryPaymentsProfileId_; /** *
-   * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-   * when a sequential liability agreement has been arranged.
+   * Output only. A secondary payments profile ID present in uncommon situations, for
+   * example, when a sequential liability agreement has been arranged.
    * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -445,8 +445,8 @@ public boolean hasSecondaryPaymentsProfileId() { } /** *
-   * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-   * when a sequential liability agreement has been arranged.
+   * Output only. A secondary payments profile ID present in uncommon situations, for
+   * example, when a sequential liability agreement has been arranged.
    * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -467,8 +467,8 @@ public java.lang.String getSecondaryPaymentsProfileId() { } /** *
-   * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-   * when a sequential liability agreement has been arranged.
+   * Output only. A secondary payments profile ID present in uncommon situations, for
+   * example, when a sequential liability agreement has been arranged.
    * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1568,8 +1568,8 @@ public Builder setPaymentsProfileIdBytes( private java.lang.Object secondaryPaymentsProfileId_ = ""; /** *
-     * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile ID present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1580,8 +1580,8 @@ public boolean hasSecondaryPaymentsProfileId() { } /** *
-     * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile ID present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1601,8 +1601,8 @@ public java.lang.String getSecondaryPaymentsProfileId() { } /** *
-     * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile ID present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1623,8 +1623,8 @@ public java.lang.String getSecondaryPaymentsProfileId() { } /** *
-     * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile ID present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1643,8 +1643,8 @@ public Builder setSecondaryPaymentsProfileId( } /** *
-     * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile ID present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -1658,8 +1658,8 @@ public Builder clearSecondaryPaymentsProfileId() { } /** *
-     * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-     * when a sequential liability agreement has been arranged.
+     * Output only. A secondary payments profile ID present in uncommon situations, for
+     * example, when a sequential liability agreement has been arranged.
      * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccountOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccountOrBuilder.java index 5ccf60fc15..f0d8756667 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccountOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/PaymentsAccountOrBuilder.java @@ -158,8 +158,8 @@ public interface PaymentsAccountOrBuilder extends /** *
-   * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-   * when a sequential liability agreement has been arranged.
+   * Output only. A secondary payments profile ID present in uncommon situations, for
+   * example, when a sequential liability agreement has been arranged.
    * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -168,8 +168,8 @@ public interface PaymentsAccountOrBuilder extends boolean hasSecondaryPaymentsProfileId(); /** *
-   * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-   * when a sequential liability agreement has been arranged.
+   * Output only. A secondary payments profile ID present in uncommon situations, for
+   * example, when a sequential liability agreement has been arranged.
    * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -178,8 +178,8 @@ public interface PaymentsAccountOrBuilder extends java.lang.String getSecondaryPaymentsProfileId(); /** *
-   * Output only. A secondary payments profile ID present in uncommon situations, e.g.
-   * when a sequential liability agreement has been arranged.
+   * Output only. A secondary payments profile ID present in uncommon situations, for
+   * example, when a sequential liability agreement has been arranged.
    * 
* * optional string secondary_payments_profile_id = 12 [(.google.api.field_behavior) = OUTPUT_ONLY]; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Recommendation.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Recommendation.java index 5a45919b99..fcc9f83afe 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Recommendation.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/Recommendation.java @@ -414,6 +414,34 @@ private Recommendation( recommendationCase_ = 33; break; } + case 274: { + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder subBuilder = null; + if (recommendationCase_ == 34) { + subBuilder = ((com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_).toBuilder(); + } + recommendation_ = + input.readMessage(com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_); + recommendation_ = subBuilder.buildPartial(); + } + recommendationCase_ = 34; + break; + } + case 282: { + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder subBuilder = null; + if (recommendationCase_ == 35) { + subBuilder = ((com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_).toBuilder(); + } + recommendation_ = + input.readMessage(com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_); + recommendation_ = subBuilder.buildPartial(); + } + recommendationCase_ = 35; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -5421,7 +5449,7 @@ public interface TextAdRecommendationOrBuilder extends /** *
      * Output only. Creation date of the recommended ad.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5431,7 +5459,7 @@ public interface TextAdRecommendationOrBuilder extends /** *
      * Output only. Creation date of the recommended ad.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5441,7 +5469,7 @@ public interface TextAdRecommendationOrBuilder extends /** *
      * Output only. Creation date of the recommended ad.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5454,7 +5482,7 @@ public interface TextAdRecommendationOrBuilder extends *
      * Output only. Date, if present, is the earliest when the recommendation will be auto
      * applied.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5465,7 +5493,7 @@ public interface TextAdRecommendationOrBuilder extends *
      * Output only. Date, if present, is the earliest when the recommendation will be auto
      * applied.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5476,7 +5504,7 @@ public interface TextAdRecommendationOrBuilder extends *
      * Output only. Date, if present, is the earliest when the recommendation will be auto
      * applied.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5640,7 +5668,7 @@ public com.google.ads.googleads.v11.resources.AdOrBuilder getAdOrBuilder() { /** *
      * Output only. Creation date of the recommended ad.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5653,7 +5681,7 @@ public boolean hasCreationDate() { /** *
      * Output only. Creation date of the recommended ad.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5675,7 +5703,7 @@ public java.lang.String getCreationDate() { /** *
      * Output only. Creation date of the recommended ad.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5702,7 +5730,7 @@ public java.lang.String getCreationDate() { *
      * Output only. Date, if present, is the earliest when the recommendation will be auto
      * applied.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5716,7 +5744,7 @@ public boolean hasAutoApplyDate() { *
      * Output only. Date, if present, is the earliest when the recommendation will be auto
      * applied.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -5739,7 +5767,7 @@ public java.lang.String getAutoApplyDate() { *
      * Output only. Date, if present, is the earliest when the recommendation will be auto
      * applied.
-     * YYYY-MM-DD format, e.g., 2018-04-17.
+     * YYYY-MM-DD format, for example, 2018-04-17.
      * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6294,7 +6322,7 @@ public com.google.ads.googleads.v11.resources.AdOrBuilder getAdOrBuilder() { /** *
        * Output only. Creation date of the recommended ad.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6306,7 +6334,7 @@ public boolean hasCreationDate() { /** *
        * Output only. Creation date of the recommended ad.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6327,7 +6355,7 @@ public java.lang.String getCreationDate() { /** *
        * Output only. Creation date of the recommended ad.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6349,7 +6377,7 @@ public java.lang.String getCreationDate() { /** *
        * Output only. Creation date of the recommended ad.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6369,7 +6397,7 @@ public Builder setCreationDate( /** *
        * Output only. Creation date of the recommended ad.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6384,7 +6412,7 @@ public Builder clearCreationDate() { /** *
        * Output only. Creation date of the recommended ad.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string creation_date = 4 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6408,7 +6436,7 @@ public Builder setCreationDateBytes( *
        * Output only. Date, if present, is the earliest when the recommendation will be auto
        * applied.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6421,7 +6449,7 @@ public boolean hasAutoApplyDate() { *
        * Output only. Date, if present, is the earliest when the recommendation will be auto
        * applied.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6443,7 +6471,7 @@ public java.lang.String getAutoApplyDate() { *
        * Output only. Date, if present, is the earliest when the recommendation will be auto
        * applied.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6466,7 +6494,7 @@ public java.lang.String getAutoApplyDate() { *
        * Output only. Date, if present, is the earliest when the recommendation will be auto
        * applied.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6487,7 +6515,7 @@ public Builder setAutoApplyDate( *
        * Output only. Date, if present, is the earliest when the recommendation will be auto
        * applied.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -6503,7 +6531,7 @@ public Builder clearAutoApplyDate() { *
        * Output only. Date, if present, is the earliest when the recommendation will be auto
        * applied.
-       * YYYY-MM-DD format, e.g., 2018-04-17.
+       * YYYY-MM-DD format, for example, 2018-04-17.
        * 
* * optional string auto_apply_date = 5 [(.google.api.field_behavior) = OUTPUT_ONLY]; @@ -21023,178 +21051,1038 @@ public com.google.ads.googleads.v11.resources.Recommendation.UpgradeSmartShoppin } - private int bitField0_; - private int recommendationCase_ = 0; - private java.lang.Object recommendation_; - public enum RecommendationCase - implements com.google.protobuf.Internal.EnumLite, - com.google.protobuf.AbstractMessage.InternalOneOfEnum { - CAMPAIGN_BUDGET_RECOMMENDATION(4), - FORECASTING_CAMPAIGN_BUDGET_RECOMMENDATION(22), - KEYWORD_RECOMMENDATION(8), - TEXT_AD_RECOMMENDATION(9), - TARGET_CPA_OPT_IN_RECOMMENDATION(10), - MAXIMIZE_CONVERSIONS_OPT_IN_RECOMMENDATION(11), - ENHANCED_CPC_OPT_IN_RECOMMENDATION(12), - SEARCH_PARTNERS_OPT_IN_RECOMMENDATION(14), - MAXIMIZE_CLICKS_OPT_IN_RECOMMENDATION(15), - OPTIMIZE_AD_ROTATION_RECOMMENDATION(16), - CALLOUT_EXTENSION_RECOMMENDATION(17), - SITELINK_EXTENSION_RECOMMENDATION(18), - CALL_EXTENSION_RECOMMENDATION(19), - KEYWORD_MATCH_TYPE_RECOMMENDATION(20), - MOVE_UNUSED_BUDGET_RECOMMENDATION(21), - TARGET_ROAS_OPT_IN_RECOMMENDATION(23), - RESPONSIVE_SEARCH_AD_RECOMMENDATION(28), - MARGINAL_ROI_CAMPAIGN_BUDGET_RECOMMENDATION(29), - USE_BROAD_MATCH_KEYWORD_RECOMMENDATION(30), - RESPONSIVE_SEARCH_AD_ASSET_RECOMMENDATION(31), - UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION(32), - RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH_RECOMMENDATION(33), - RECOMMENDATION_NOT_SET(0); - private final int value; - private RecommendationCase(int value) { - this.value = value; + public interface DisplayExpansionOptInRecommendationOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) + com.google.protobuf.MessageOrBuilder { + } + /** + *
+   * The Display Expansion opt-in recommendation.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation} + */ + public static final class DisplayExpansionOptInRecommendation extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) + DisplayExpansionOptInRecommendationOrBuilder { + private static final long serialVersionUID = 0L; + // Use DisplayExpansionOptInRecommendation.newBuilder() to construct. + private DisplayExpansionOptInRecommendation(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); } - /** - * @param value The number of the enum to look for. - * @return The enum associated with the given number. - * @deprecated Use {@link #forNumber(int)} instead. - */ - @java.lang.Deprecated - public static RecommendationCase valueOf(int value) { - return forNumber(value); + private DisplayExpansionOptInRecommendation() { } - public static RecommendationCase forNumber(int value) { - switch (value) { - case 4: return CAMPAIGN_BUDGET_RECOMMENDATION; - case 22: return FORECASTING_CAMPAIGN_BUDGET_RECOMMENDATION; - case 8: return KEYWORD_RECOMMENDATION; - case 9: return TEXT_AD_RECOMMENDATION; - case 10: return TARGET_CPA_OPT_IN_RECOMMENDATION; - case 11: return MAXIMIZE_CONVERSIONS_OPT_IN_RECOMMENDATION; - case 12: return ENHANCED_CPC_OPT_IN_RECOMMENDATION; - case 14: return SEARCH_PARTNERS_OPT_IN_RECOMMENDATION; - case 15: return MAXIMIZE_CLICKS_OPT_IN_RECOMMENDATION; - case 16: return OPTIMIZE_AD_ROTATION_RECOMMENDATION; - case 17: return CALLOUT_EXTENSION_RECOMMENDATION; - case 18: return SITELINK_EXTENSION_RECOMMENDATION; - case 19: return CALL_EXTENSION_RECOMMENDATION; - case 20: return KEYWORD_MATCH_TYPE_RECOMMENDATION; - case 21: return MOVE_UNUSED_BUDGET_RECOMMENDATION; - case 23: return TARGET_ROAS_OPT_IN_RECOMMENDATION; - case 28: return RESPONSIVE_SEARCH_AD_RECOMMENDATION; - case 29: return MARGINAL_ROI_CAMPAIGN_BUDGET_RECOMMENDATION; - case 30: return USE_BROAD_MATCH_KEYWORD_RECOMMENDATION; - case 31: return RESPONSIVE_SEARCH_AD_ASSET_RECOMMENDATION; - case 32: return UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION; - case 33: return RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH_RECOMMENDATION; - case 0: return RECOMMENDATION_NOT_SET; - default: return null; + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new DisplayExpansionOptInRecommendation(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private DisplayExpansionOptInRecommendation( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); } } - public int getNumber() { - return this.value; + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_descriptor; } - }; - public RecommendationCase - getRecommendationCase() { - return RecommendationCase.forNumber( - recommendationCase_); - } + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.class, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder.class); + } - public static final int RESOURCE_NAME_FIELD_NUMBER = 1; - private volatile java.lang.Object resourceName_; - /** - *
-   * Immutable. The resource name of the recommendation.
-   * `customers/{customer_id}/recommendations/{recommendation_id}`
-   * 
- * - * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } - * @return The resourceName. - */ - @java.lang.Override - public java.lang.String getResourceName() { - java.lang.Object ref = resourceName_; - if (ref instanceof java.lang.String) { - return (java.lang.String) ref; - } else { - com.google.protobuf.ByteString bs = - (com.google.protobuf.ByteString) ref; - java.lang.String s = bs.toStringUtf8(); - resourceName_ = s; - return s; + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; } - } - /** - *
-   * Immutable. The resource name of the recommendation.
-   * `customers/{customer_id}/recommendations/{recommendation_id}`
-   * 
- * - * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } - * @return The bytes for resourceName. - */ - @java.lang.Override - public com.google.protobuf.ByteString - getResourceNameBytes() { - java.lang.Object ref = resourceName_; - if (ref instanceof java.lang.String) { - com.google.protobuf.ByteString b = - com.google.protobuf.ByteString.copyFromUtf8( - (java.lang.String) ref); - resourceName_ = b; - return b; - } else { - return (com.google.protobuf.ByteString) ref; + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + unknownFields.writeTo(output); } - } - public static final int TYPE_FIELD_NUMBER = 2; - private int type_; - /** - *
-   * Output only. The type of recommendation.
-   * 
- * - * .google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType type = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; - * @return The enum numeric value on the wire for type. - */ - @java.lang.Override public int getTypeValue() { - return type_; - } - /** - *
-   * Output only. The type of recommendation.
-   * 
- * - * .google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType type = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; - * @return The type. - */ - @java.lang.Override public com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType getType() { - @SuppressWarnings("deprecation") - com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType result = com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType.valueOf(type_); - return result == null ? com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType.UNRECOGNIZED : result; - } + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; - public static final int IMPACT_FIELD_NUMBER = 3; - private com.google.ads.googleads.v11.resources.Recommendation.RecommendationImpact impact_; - /** - *
-   * Output only. The impact on account performance as a result of applying the
-   * recommendation.
-   * 
- * - * .google.ads.googleads.v11.resources.Recommendation.RecommendationImpact impact = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; - * @return Whether the impact field is set. - */ - @java.lang.Override - public boolean hasImpact() { - return impact_ != null; - } + size = 0; + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation other = (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) obj; + + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+     * The Display Expansion opt-in recommendation.
+     * 
+ * + * Protobuf type {@code google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendationOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.class, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation getDefaultInstanceForType() { + return com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation build() { + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation buildPartial() { + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation result = new com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) { + return mergeFrom((com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation other) { + if (other == com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance()) return this; + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) + private static final com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation(); + } + + public static com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DisplayExpansionOptInRecommendation parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new DisplayExpansionOptInRecommendation(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + public interface UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) + com.google.protobuf.MessageOrBuilder { + } + /** + *
+   * The Upgrade Local campaign to Performance Max campaign recommendation.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation} + */ + public static final class UpgradeLocalCampaignToPerformanceMaxRecommendation extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) + UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder { + private static final long serialVersionUID = 0L; + // Use UpgradeLocalCampaignToPerformanceMaxRecommendation.newBuilder() to construct. + private UpgradeLocalCampaignToPerformanceMaxRecommendation(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private UpgradeLocalCampaignToPerformanceMaxRecommendation() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new UpgradeLocalCampaignToPerformanceMaxRecommendation(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private UpgradeLocalCampaignToPerformanceMaxRecommendation( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.class, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder.class); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation other = (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) obj; + + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+     * The Upgrade Local campaign to Performance Max campaign recommendation.
+     * 
+ * + * Protobuf type {@code google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.class, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.resources.RecommendationProto.internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation getDefaultInstanceForType() { + return com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation build() { + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation buildPartial() { + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation result = new com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation(this); + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) { + return mergeFrom((com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation other) { + if (other == com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance()) return this; + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) + private static final com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation(); + } + + public static com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public UpgradeLocalCampaignToPerformanceMaxRecommendation parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new UpgradeLocalCampaignToPerformanceMaxRecommendation(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + + } + + private int bitField0_; + private int recommendationCase_ = 0; + private java.lang.Object recommendation_; + public enum RecommendationCase + implements com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + CAMPAIGN_BUDGET_RECOMMENDATION(4), + FORECASTING_CAMPAIGN_BUDGET_RECOMMENDATION(22), + KEYWORD_RECOMMENDATION(8), + TEXT_AD_RECOMMENDATION(9), + TARGET_CPA_OPT_IN_RECOMMENDATION(10), + MAXIMIZE_CONVERSIONS_OPT_IN_RECOMMENDATION(11), + ENHANCED_CPC_OPT_IN_RECOMMENDATION(12), + SEARCH_PARTNERS_OPT_IN_RECOMMENDATION(14), + MAXIMIZE_CLICKS_OPT_IN_RECOMMENDATION(15), + OPTIMIZE_AD_ROTATION_RECOMMENDATION(16), + CALLOUT_EXTENSION_RECOMMENDATION(17), + SITELINK_EXTENSION_RECOMMENDATION(18), + CALL_EXTENSION_RECOMMENDATION(19), + KEYWORD_MATCH_TYPE_RECOMMENDATION(20), + MOVE_UNUSED_BUDGET_RECOMMENDATION(21), + TARGET_ROAS_OPT_IN_RECOMMENDATION(23), + RESPONSIVE_SEARCH_AD_RECOMMENDATION(28), + MARGINAL_ROI_CAMPAIGN_BUDGET_RECOMMENDATION(29), + USE_BROAD_MATCH_KEYWORD_RECOMMENDATION(30), + RESPONSIVE_SEARCH_AD_ASSET_RECOMMENDATION(31), + UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION(32), + RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH_RECOMMENDATION(33), + DISPLAY_EXPANSION_OPT_IN_RECOMMENDATION(34), + UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION(35), + RECOMMENDATION_NOT_SET(0); + private final int value; + private RecommendationCase(int value) { + this.value = value; + } + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static RecommendationCase valueOf(int value) { + return forNumber(value); + } + + public static RecommendationCase forNumber(int value) { + switch (value) { + case 4: return CAMPAIGN_BUDGET_RECOMMENDATION; + case 22: return FORECASTING_CAMPAIGN_BUDGET_RECOMMENDATION; + case 8: return KEYWORD_RECOMMENDATION; + case 9: return TEXT_AD_RECOMMENDATION; + case 10: return TARGET_CPA_OPT_IN_RECOMMENDATION; + case 11: return MAXIMIZE_CONVERSIONS_OPT_IN_RECOMMENDATION; + case 12: return ENHANCED_CPC_OPT_IN_RECOMMENDATION; + case 14: return SEARCH_PARTNERS_OPT_IN_RECOMMENDATION; + case 15: return MAXIMIZE_CLICKS_OPT_IN_RECOMMENDATION; + case 16: return OPTIMIZE_AD_ROTATION_RECOMMENDATION; + case 17: return CALLOUT_EXTENSION_RECOMMENDATION; + case 18: return SITELINK_EXTENSION_RECOMMENDATION; + case 19: return CALL_EXTENSION_RECOMMENDATION; + case 20: return KEYWORD_MATCH_TYPE_RECOMMENDATION; + case 21: return MOVE_UNUSED_BUDGET_RECOMMENDATION; + case 23: return TARGET_ROAS_OPT_IN_RECOMMENDATION; + case 28: return RESPONSIVE_SEARCH_AD_RECOMMENDATION; + case 29: return MARGINAL_ROI_CAMPAIGN_BUDGET_RECOMMENDATION; + case 30: return USE_BROAD_MATCH_KEYWORD_RECOMMENDATION; + case 31: return RESPONSIVE_SEARCH_AD_ASSET_RECOMMENDATION; + case 32: return UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION; + case 33: return RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH_RECOMMENDATION; + case 34: return DISPLAY_EXPANSION_OPT_IN_RECOMMENDATION; + case 35: return UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION; + case 0: return RECOMMENDATION_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public RecommendationCase + getRecommendationCase() { + return RecommendationCase.forNumber( + recommendationCase_); + } + + public static final int RESOURCE_NAME_FIELD_NUMBER = 1; + private volatile java.lang.Object resourceName_; + /** + *
+   * Immutable. The resource name of the recommendation.
+   * `customers/{customer_id}/recommendations/{recommendation_id}`
+   * 
+ * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The resourceName. + */ + @java.lang.Override + public java.lang.String getResourceName() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + resourceName_ = s; + return s; + } + } + /** + *
+   * Immutable. The resource name of the recommendation.
+   * `customers/{customer_id}/recommendations/{recommendation_id}`
+   * 
+ * + * string resource_name = 1 [(.google.api.field_behavior) = IMMUTABLE, (.google.api.resource_reference) = { ... } + * @return The bytes for resourceName. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getResourceNameBytes() { + java.lang.Object ref = resourceName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + resourceName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int TYPE_FIELD_NUMBER = 2; + private int type_; + /** + *
+   * Output only. The type of recommendation.
+   * 
+ * + * .google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType type = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The enum numeric value on the wire for type. + */ + @java.lang.Override public int getTypeValue() { + return type_; + } + /** + *
+   * Output only. The type of recommendation.
+   * 
+ * + * .google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType type = 2 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The type. + */ + @java.lang.Override public com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType getType() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType result = com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType.valueOf(type_); + return result == null ? com.google.ads.googleads.v11.enums.RecommendationTypeEnum.RecommendationType.UNRECOGNIZED : result; + } + + public static final int IMPACT_FIELD_NUMBER = 3; + private com.google.ads.googleads.v11.resources.Recommendation.RecommendationImpact impact_; + /** + *
+   * Output only. The impact on account performance as a result of applying the
+   * recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.RecommendationImpact impact = 3 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the impact field is set. + */ + @java.lang.Override + public boolean hasImpact() { + return impact_ != null; + } /** *
    * Output only. The impact on account performance as a result of applying the
@@ -21300,10 +22188,14 @@ public java.lang.String getCampaignBudget() {
    * This field will be set for the following recommendation types:
    * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN,
    * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE,
-   * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION,
-   * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN,
-   * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN,
-   * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX
+   * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN,
+   * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION,
+   * RESPONSIVE_SEARCH_AD,
+   * RESPONSIVE_SEARCH_AD_ASSET,
+   * SEARCH_PARTNERS_OPT_IN,
+   * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN,
+   * TARGET_ROAS_OPT_IN, TEXT_AD,
+   * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX
    * 
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -21320,10 +22212,14 @@ public boolean hasCampaign() { * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -21349,10 +22245,14 @@ public java.lang.String getCampaign() { * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -22391,32 +23291,121 @@ public boolean hasResponsiveSearchAdImproveAdStrengthRecommendation() { } /** *
-   * Output only. The responsive search ad improve ad strength recommendation.
+   * Output only. The responsive search ad improve ad strength recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation responsive_search_ad_improve_ad_strength_recommendation = 33 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The responsiveSearchAdImproveAdStrengthRecommendation. + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation getResponsiveSearchAdImproveAdStrengthRecommendation() { + if (recommendationCase_ == 33) { + return (com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.getDefaultInstance(); + } + /** + *
+   * Output only. The responsive search ad improve ad strength recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation responsive_search_ad_improve_ad_strength_recommendation = 33 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendationOrBuilder getResponsiveSearchAdImproveAdStrengthRecommendationOrBuilder() { + if (recommendationCase_ == 33) { + return (com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.getDefaultInstance(); + } + + public static final int DISPLAY_EXPANSION_OPT_IN_RECOMMENDATION_FIELD_NUMBER = 34; + /** + *
+   * Output only. The Display Expansion opt-in recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the displayExpansionOptInRecommendation field is set. + */ + @java.lang.Override + public boolean hasDisplayExpansionOptInRecommendation() { + return recommendationCase_ == 34; + } + /** + *
+   * Output only. The Display Expansion opt-in recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The displayExpansionOptInRecommendation. + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation getDisplayExpansionOptInRecommendation() { + if (recommendationCase_ == 34) { + return (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance(); + } + /** + *
+   * Output only. The Display Expansion opt-in recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendationOrBuilder getDisplayExpansionOptInRecommendationOrBuilder() { + if (recommendationCase_ == 34) { + return (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance(); + } + + public static final int UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION_FIELD_NUMBER = 35; + /** + *
+   * Output only. The upgrade a Local campaign to a Performance Max campaign
+   * recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the upgradeLocalCampaignToPerformanceMaxRecommendation field is set. + */ + @java.lang.Override + public boolean hasUpgradeLocalCampaignToPerformanceMaxRecommendation() { + return recommendationCase_ == 35; + } + /** + *
+   * Output only. The upgrade a Local campaign to a Performance Max campaign
+   * recommendation.
    * 
* - * .google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation responsive_search_ad_improve_ad_strength_recommendation = 33 [(.google.api.field_behavior) = OUTPUT_ONLY]; - * @return The responsiveSearchAdImproveAdStrengthRecommendation. + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The upgradeLocalCampaignToPerformanceMaxRecommendation. */ @java.lang.Override - public com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation getResponsiveSearchAdImproveAdStrengthRecommendation() { - if (recommendationCase_ == 33) { - return (com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation) recommendation_; + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation getUpgradeLocalCampaignToPerformanceMaxRecommendation() { + if (recommendationCase_ == 35) { + return (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_; } - return com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.getDefaultInstance(); + return com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance(); } /** *
-   * Output only. The responsive search ad improve ad strength recommendation.
+   * Output only. The upgrade a Local campaign to a Performance Max campaign
+   * recommendation.
    * 
* - * .google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation responsive_search_ad_improve_ad_strength_recommendation = 33 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; */ @java.lang.Override - public com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendationOrBuilder getResponsiveSearchAdImproveAdStrengthRecommendationOrBuilder() { - if (recommendationCase_ == 33) { - return (com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation) recommendation_; + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder getUpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder() { + if (recommendationCase_ == 35) { + return (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_; } - return com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.getDefaultInstance(); + return com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance(); } private byte memoizedIsInitialized = -1; @@ -22520,6 +23509,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (recommendationCase_ == 33) { output.writeMessage(33, (com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation) recommendation_); } + if (recommendationCase_ == 34) { + output.writeMessage(34, (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_); + } + if (recommendationCase_ == 35) { + output.writeMessage(35, (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_); + } unknownFields.writeTo(output); } @@ -22641,6 +23636,14 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(33, (com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation) recommendation_); } + if (recommendationCase_ == 34) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(34, (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_); + } + if (recommendationCase_ == 35) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(35, (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -22774,6 +23777,14 @@ public boolean equals(final java.lang.Object obj) { if (!getResponsiveSearchAdImproveAdStrengthRecommendation() .equals(other.getResponsiveSearchAdImproveAdStrengthRecommendation())) return false; break; + case 34: + if (!getDisplayExpansionOptInRecommendation() + .equals(other.getDisplayExpansionOptInRecommendation())) return false; + break; + case 35: + if (!getUpgradeLocalCampaignToPerformanceMaxRecommendation() + .equals(other.getUpgradeLocalCampaignToPerformanceMaxRecommendation())) return false; + break; case 0: default: } @@ -22902,6 +23913,14 @@ public int hashCode() { hash = (37 * hash) + RESPONSIVE_SEARCH_AD_IMPROVE_AD_STRENGTH_RECOMMENDATION_FIELD_NUMBER; hash = (53 * hash) + getResponsiveSearchAdImproveAdStrengthRecommendation().hashCode(); break; + case 34: + hash = (37 * hash) + DISPLAY_EXPANSION_OPT_IN_RECOMMENDATION_FIELD_NUMBER; + hash = (53 * hash) + getDisplayExpansionOptInRecommendation().hashCode(); + break; + case 35: + hash = (37 * hash) + UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION_FIELD_NUMBER; + hash = (53 * hash) + getUpgradeLocalCampaignToPerformanceMaxRecommendation().hashCode(); + break; case 0: default: } @@ -23267,6 +24286,20 @@ public com.google.ads.googleads.v11.resources.Recommendation buildPartial() { result.recommendation_ = responsiveSearchAdImproveAdStrengthRecommendationBuilder_.build(); } } + if (recommendationCase_ == 34) { + if (displayExpansionOptInRecommendationBuilder_ == null) { + result.recommendation_ = recommendation_; + } else { + result.recommendation_ = displayExpansionOptInRecommendationBuilder_.build(); + } + } + if (recommendationCase_ == 35) { + if (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ == null) { + result.recommendation_ = recommendation_; + } else { + result.recommendation_ = upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.build(); + } + } result.bitField0_ = to_bitField0_; result.recommendationCase_ = recommendationCase_; onBuilt(); @@ -23434,6 +24467,14 @@ public Builder mergeFrom(com.google.ads.googleads.v11.resources.Recommendation o mergeResponsiveSearchAdImproveAdStrengthRecommendation(other.getResponsiveSearchAdImproveAdStrengthRecommendation()); break; } + case DISPLAY_EXPANSION_OPT_IN_RECOMMENDATION: { + mergeDisplayExpansionOptInRecommendation(other.getDisplayExpansionOptInRecommendation()); + break; + } + case UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX_RECOMMENDATION: { + mergeUpgradeLocalCampaignToPerformanceMaxRecommendation(other.getUpgradeLocalCampaignToPerformanceMaxRecommendation()); + break; + } case RECOMMENDATION_NOT_SET: { break; } @@ -23961,10 +25002,14 @@ public Builder setCampaignBudgetBytes( * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -23980,10 +25025,14 @@ public boolean hasCampaign() { * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -24008,10 +25057,14 @@ public java.lang.String getCampaign() { * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -24037,10 +25090,14 @@ public java.lang.String getCampaign() { * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -24064,10 +25121,14 @@ public Builder setCampaign( * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -24086,10 +25147,14 @@ public Builder clearCampaign() { * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX *
* * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -28218,6 +29283,371 @@ public com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdI onChanged();; return responsiveSearchAdImproveAdStrengthRecommendationBuilder_; } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendationOrBuilder> displayExpansionOptInRecommendationBuilder_; + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the displayExpansionOptInRecommendation field is set. + */ + @java.lang.Override + public boolean hasDisplayExpansionOptInRecommendation() { + return recommendationCase_ == 34; + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The displayExpansionOptInRecommendation. + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation getDisplayExpansionOptInRecommendation() { + if (displayExpansionOptInRecommendationBuilder_ == null) { + if (recommendationCase_ == 34) { + return (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance(); + } else { + if (recommendationCase_ == 34) { + return displayExpansionOptInRecommendationBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance(); + } + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setDisplayExpansionOptInRecommendation(com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation value) { + if (displayExpansionOptInRecommendationBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + recommendation_ = value; + onChanged(); + } else { + displayExpansionOptInRecommendationBuilder_.setMessage(value); + } + recommendationCase_ = 34; + return this; + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setDisplayExpansionOptInRecommendation( + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder builderForValue) { + if (displayExpansionOptInRecommendationBuilder_ == null) { + recommendation_ = builderForValue.build(); + onChanged(); + } else { + displayExpansionOptInRecommendationBuilder_.setMessage(builderForValue.build()); + } + recommendationCase_ = 34; + return this; + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder mergeDisplayExpansionOptInRecommendation(com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation value) { + if (displayExpansionOptInRecommendationBuilder_ == null) { + if (recommendationCase_ == 34 && + recommendation_ != com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance()) { + recommendation_ = com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.newBuilder((com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_) + .mergeFrom(value).buildPartial(); + } else { + recommendation_ = value; + } + onChanged(); + } else { + if (recommendationCase_ == 34) { + displayExpansionOptInRecommendationBuilder_.mergeFrom(value); + } else { + displayExpansionOptInRecommendationBuilder_.setMessage(value); + } + } + recommendationCase_ = 34; + return this; + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder clearDisplayExpansionOptInRecommendation() { + if (displayExpansionOptInRecommendationBuilder_ == null) { + if (recommendationCase_ == 34) { + recommendationCase_ = 0; + recommendation_ = null; + onChanged(); + } + } else { + if (recommendationCase_ == 34) { + recommendationCase_ = 0; + recommendation_ = null; + } + displayExpansionOptInRecommendationBuilder_.clear(); + } + return this; + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder getDisplayExpansionOptInRecommendationBuilder() { + return getDisplayExpansionOptInRecommendationFieldBuilder().getBuilder(); + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendationOrBuilder getDisplayExpansionOptInRecommendationOrBuilder() { + if ((recommendationCase_ == 34) && (displayExpansionOptInRecommendationBuilder_ != null)) { + return displayExpansionOptInRecommendationBuilder_.getMessageOrBuilder(); + } else { + if (recommendationCase_ == 34) { + return (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance(); + } + } + /** + *
+     * Output only. The Display Expansion opt-in recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendationOrBuilder> + getDisplayExpansionOptInRecommendationFieldBuilder() { + if (displayExpansionOptInRecommendationBuilder_ == null) { + if (!(recommendationCase_ == 34)) { + recommendation_ = com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.getDefaultInstance(); + } + displayExpansionOptInRecommendationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation.Builder, com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendationOrBuilder>( + (com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation) recommendation_, + getParentForChildren(), + isClean()); + recommendation_ = null; + } + recommendationCase_ = 34; + onChanged();; + return displayExpansionOptInRecommendationBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder> upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_; + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the upgradeLocalCampaignToPerformanceMaxRecommendation field is set. + */ + @java.lang.Override + public boolean hasUpgradeLocalCampaignToPerformanceMaxRecommendation() { + return recommendationCase_ == 35; + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The upgradeLocalCampaignToPerformanceMaxRecommendation. + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation getUpgradeLocalCampaignToPerformanceMaxRecommendation() { + if (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ == null) { + if (recommendationCase_ == 35) { + return (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance(); + } else { + if (recommendationCase_ == 35) { + return upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance(); + } + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setUpgradeLocalCampaignToPerformanceMaxRecommendation(com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation value) { + if (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + recommendation_ = value; + onChanged(); + } else { + upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.setMessage(value); + } + recommendationCase_ = 35; + return this; + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder setUpgradeLocalCampaignToPerformanceMaxRecommendation( + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder builderForValue) { + if (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ == null) { + recommendation_ = builderForValue.build(); + onChanged(); + } else { + upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.setMessage(builderForValue.build()); + } + recommendationCase_ = 35; + return this; + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder mergeUpgradeLocalCampaignToPerformanceMaxRecommendation(com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation value) { + if (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ == null) { + if (recommendationCase_ == 35 && + recommendation_ != com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance()) { + recommendation_ = com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.newBuilder((com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_) + .mergeFrom(value).buildPartial(); + } else { + recommendation_ = value; + } + onChanged(); + } else { + if (recommendationCase_ == 35) { + upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.mergeFrom(value); + } else { + upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.setMessage(value); + } + } + recommendationCase_ = 35; + return this; + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public Builder clearUpgradeLocalCampaignToPerformanceMaxRecommendation() { + if (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ == null) { + if (recommendationCase_ == 35) { + recommendationCase_ = 0; + recommendation_ = null; + onChanged(); + } + } else { + if (recommendationCase_ == 35) { + recommendationCase_ = 0; + recommendation_ = null; + } + upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.clear(); + } + return this; + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder getUpgradeLocalCampaignToPerformanceMaxRecommendationBuilder() { + return getUpgradeLocalCampaignToPerformanceMaxRecommendationFieldBuilder().getBuilder(); + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder getUpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder() { + if ((recommendationCase_ == 35) && (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ != null)) { + return upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_.getMessageOrBuilder(); + } else { + if (recommendationCase_ == 35) { + return (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_; + } + return com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance(); + } + } + /** + *
+     * Output only. The upgrade a Local campaign to a Performance Max campaign
+     * recommendation.
+     * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder> + getUpgradeLocalCampaignToPerformanceMaxRecommendationFieldBuilder() { + if (upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ == null) { + if (!(recommendationCase_ == 35)) { + recommendation_ = com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.getDefaultInstance(); + } + upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation.Builder, com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder>( + (com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation) recommendation_, + getParentForChildren(), + isClean()); + recommendation_ = null; + } + recommendationCase_ = 35; + onChanged();; + return upgradeLocalCampaignToPerformanceMaxRecommendationBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationOrBuilder.java index 822b5bbdf4..22ccba51ed 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationOrBuilder.java @@ -126,10 +126,14 @@ public interface RecommendationOrBuilder extends * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX * * * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -143,10 +147,14 @@ public interface RecommendationOrBuilder extends * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX * * * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -160,10 +168,14 @@ public interface RecommendationOrBuilder extends * This field will be set for the following recommendation types: * CALL_EXTENSION, CALLOUT_EXTENSION, ENHANCED_CPC_OPT_IN, * USE_BROAD_MATCH_KEYWORD, KEYWORD, KEYWORD_MATCH_TYPE, - * MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, - * RESPONSIVE_SEARCH_AD, RESPONSIVE_SEARCH_AD_ASSET, SEARCH_PARTNERS_OPT_IN, - * SITELINK_EXTENSION, TARGET_CPA_OPT_IN, TARGET_ROAS_OPT_IN, - * TEXT_AD, UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX + * UPGRADE_LOCAL_CAMPAIGN_TO_PERFORMANCE_MAX, MAXIMIZE_CLICKS_OPT_IN, + * MAXIMIZE_CONVERSIONS_OPT_IN, OPTIMIZE_AD_ROTATION, + * RESPONSIVE_SEARCH_AD, + * RESPONSIVE_SEARCH_AD_ASSET, + * SEARCH_PARTNERS_OPT_IN, + * DISPLAY_EXPANSION_OPT_IN, SITELINK_EXTENSION, TARGET_CPA_OPT_IN, + * TARGET_ROAS_OPT_IN, TEXT_AD, + * UPGRADE_SMART_SHOPPING_CAMPAIGN_TO_PERFORMANCE_MAX * * * optional string campaign = 25 [(.google.api.field_behavior) = OUTPUT_ONLY, (.google.api.resource_reference) = { ... } @@ -829,5 +841,62 @@ public interface RecommendationOrBuilder extends */ com.google.ads.googleads.v11.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendationOrBuilder getResponsiveSearchAdImproveAdStrengthRecommendationOrBuilder(); + /** + *
+   * Output only. The Display Expansion opt-in recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the displayExpansionOptInRecommendation field is set. + */ + boolean hasDisplayExpansionOptInRecommendation(); + /** + *
+   * Output only. The Display Expansion opt-in recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The displayExpansionOptInRecommendation. + */ + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation getDisplayExpansionOptInRecommendation(); + /** + *
+   * Output only. The Display Expansion opt-in recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendation display_expansion_opt_in_recommendation = 34 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + com.google.ads.googleads.v11.resources.Recommendation.DisplayExpansionOptInRecommendationOrBuilder getDisplayExpansionOptInRecommendationOrBuilder(); + + /** + *
+   * Output only. The upgrade a Local campaign to a Performance Max campaign
+   * recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return Whether the upgradeLocalCampaignToPerformanceMaxRecommendation field is set. + */ + boolean hasUpgradeLocalCampaignToPerformanceMaxRecommendation(); + /** + *
+   * Output only. The upgrade a Local campaign to a Performance Max campaign
+   * recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + * @return The upgradeLocalCampaignToPerformanceMaxRecommendation. + */ + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation getUpgradeLocalCampaignToPerformanceMaxRecommendation(); + /** + *
+   * Output only. The upgrade a Local campaign to a Performance Max campaign
+   * recommendation.
+   * 
+ * + * .google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation upgrade_local_campaign_to_performance_max_recommendation = 35 [(.google.api.field_behavior) = OUTPUT_ONLY]; + */ + com.google.ads.googleads.v11.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder getUpgradeLocalCampaignToPerformanceMaxRecommendationOrBuilder(); + public com.google.ads.googleads.v11.resources.Recommendation.RecommendationCase getRecommendationCase(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationProto.java index 87b095ba14..4d97076c3b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/RecommendationProto.java @@ -139,6 +139,16 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -160,7 +170,7 @@ public static void registerAllExtensions( "ommendation_goal.proto\032+google/ads/googl" + "eads/v11/resources/ad.proto\032\037google/api/" + "field_behavior.proto\032\031google/api/resourc" + - "e.proto\"\361>\n\016Recommendation\022F\n\rresource_n" + + "e.proto\"\220B\n\016Recommendation\022F\n\rresource_n" + "ame\030\001 \001(\tB/\340A\005\372A)\n\'googleads.googleapis." + "com/Recommendation\022\\\n\004type\030\002 \001(\0162I.googl" + "e.ads.googleads.v11.enums.Recommendation" + @@ -249,126 +259,136 @@ public static void registerAllExtensions( "ad_improve_ad_strength_recommendation\030! " + "\001(\0132d.google.ads.googleads.v11.resources" + ".Recommendation.ResponsiveSearchAdImprov" + - "eAdStrengthRecommendationB\003\340A\003H\000\032\345\001\n\024Rec" + - "ommendationImpact\022c\n\014base_metrics\030\001 \001(\0132" + - "H.google.ads.googleads.v11.resources.Rec" + - "ommendation.RecommendationMetricsB\003\340A\003\022h" + - "\n\021potential_metrics\030\002 \001(\0132H.google.ads.g" + - "oogleads.v11.resources.Recommendation.Re" + - "commendationMetricsB\003\340A\003\032\370\001\n\025Recommendat" + - "ionMetrics\022\035\n\013impressions\030\006 \001(\001B\003\340A\003H\000\210\001" + - "\001\022\030\n\006clicks\030\007 \001(\001B\003\340A\003H\001\210\001\001\022\035\n\013cost_micr" + - "os\030\010 \001(\003B\003\340A\003H\002\210\001\001\022\035\n\013conversions\030\t \001(\001B" + - "\003\340A\003H\003\210\001\001\022\035\n\013video_views\030\n \001(\001B\003\340A\003H\004\210\001\001" + - "B\016\n\014_impressionsB\t\n\007_clicksB\016\n\014_cost_mic" + - "rosB\016\n\014_conversionsB\016\n\014_video_views\032\240\004\n\034" + - "CampaignBudgetRecommendation\022.\n\034current_" + - "budget_amount_micros\030\007 \001(\003B\003\340A\003H\000\210\001\001\0222\n " + - "recommended_budget_amount_micros\030\010 \001(\003B\003" + - "\340A\003H\001\210\001\001\022\217\001\n\016budget_options\030\003 \003(\0132r.goog" + - "le.ads.googleads.v11.resources.Recommend" + - "ation.CampaignBudgetRecommendation.Campa" + - "ignBudgetRecommendationOptionB\003\340A\003\032\303\001\n\"C" + - "ampaignBudgetRecommendationOption\022&\n\024bud" + - "get_amount_micros\030\003 \001(\003B\003\340A\003H\000\210\001\001\022\\\n\006imp" + - "act\030\002 \001(\0132G.google.ads.googleads.v11.res" + - "ources.Recommendation.RecommendationImpa" + - "ctB\003\340A\003B\027\n\025_budget_amount_microsB\037\n\035_cur" + - "rent_budget_amount_microsB#\n!_recommende" + - "d_budget_amount_micros\032\250\001\n\025KeywordRecomm" + - "endation\022B\n\007keyword\030\001 \001(\0132,.google.ads.g" + - "oogleads.v11.common.KeywordInfoB\003\340A\003\022,\n\032" + - "recommended_cpc_bid_micros\030\003 \001(\003B\003\340A\003H\000\210" + - "\001\001B\035\n\033_recommended_cpc_bid_micros\032\271\001\n\024Te" + - "xtAdRecommendation\0227\n\002ad\030\001 \001(\0132&.google." + - "ads.googleads.v11.resources.AdB\003\340A\003\022\037\n\rc" + - "reation_date\030\004 \001(\tB\003\340A\003H\000\210\001\001\022!\n\017auto_app" + - "ly_date\030\005 \001(\tB\003\340A\003H\001\210\001\001B\020\n\016_creation_dat" + - "eB\022\n\020_auto_apply_date\032\233\005\n\034TargetCpaOptIn" + - "Recommendation\022\210\001\n\007options\030\001 \003(\0132r.googl" + - "e.ads.googleads.v11.resources.Recommenda" + - "tion.TargetCpaOptInRecommendation.Target" + - "CpaOptInRecommendationOptionB\003\340A\003\022/\n\035rec" + - "ommended_target_cpa_micros\030\003 \001(\003B\003\340A\003H\000\210" + - "\001\001\032\234\003\n\"TargetCpaOptInRecommendationOptio" + - "n\022x\n\004goal\030\001 \001(\0162e.google.ads.googleads.v" + - "11.enums.TargetCpaOptInRecommendationGoa" + - "lEnum.TargetCpaOptInRecommendationGoalB\003" + - "\340A\003\022#\n\021target_cpa_micros\030\005 \001(\003B\003\340A\003H\000\210\001\001" + - "\0228\n&required_campaign_budget_amount_micr" + - "os\030\006 \001(\003B\003\340A\003H\001\210\001\001\022\\\n\006impact\030\004 \001(\0132G.goo" + - "gle.ads.googleads.v11.resources.Recommen" + - "dation.RecommendationImpactB\003\340A\003B\024\n\022_tar" + - "get_cpa_microsB)\n\'_required_campaign_bud" + - "get_amount_microsB \n\036_recommended_target" + - "_cpa_micros\032\201\001\n&MaximizeConversionsOptIn" + - "Recommendation\0222\n recommended_budget_amo" + - "unt_micros\030\002 \001(\003B\003\340A\003H\000\210\001\001B#\n!_recommend" + - "ed_budget_amount_micros\032 \n\036EnhancedCpcOp" + - "tInRecommendation\032#\n!SearchPartnersOptIn" + - "Recommendation\032|\n!MaximizeClicksOptInRec" + - "ommendation\0222\n recommended_budget_amount" + - "_micros\030\002 \001(\003B\003\340A\003H\000\210\001\001B#\n!_recommended_" + - "budget_amount_micros\032\"\n OptimizeAdRotati" + - "onRecommendation\032w\n\036CalloutExtensionReco" + - "mmendation\022U\n\026recommended_extensions\030\001 \003" + - "(\01320.google.ads.googleads.v11.common.Cal" + - "loutFeedItemB\003\340A\003\032y\n\037SitelinkExtensionRe" + - "commendation\022V\n\026recommended_extensions\030\001" + - " \003(\01321.google.ads.googleads.v11.common.S" + - "itelinkFeedItemB\003\340A\003\032q\n\033CallExtensionRec" + - "ommendation\022R\n\026recommended_extensions\030\001 " + - "\003(\0132-.google.ads.googleads.v11.common.Ca" + - "llFeedItemB\003\340A\003\032\320\001\n\036KeywordMatchTypeReco" + + "eAdStrengthRecommendationB\003\340A\003H\000\022\216\001\n\'dis" + + "play_expansion_opt_in_recommendation\030\" \001" + + "(\0132V.google.ads.googleads.v11.resources." + + "Recommendation.DisplayExpansionOptInReco" + + "mmendationB\003\340A\003H\000\022\256\001\n8upgrade_local_camp" + + "aign_to_performance_max_recommendation\030#" + + " \001(\0132e.google.ads.googleads.v11.resource" + + "s.Recommendation.UpgradeLocalCampaignToP" + + "erformanceMaxRecommendationB\003\340A\003H\000\032\345\001\n\024R" + + "ecommendationImpact\022c\n\014base_metrics\030\001 \001(" + + "\0132H.google.ads.googleads.v11.resources.R" + + "ecommendation.RecommendationMetricsB\003\340A\003" + + "\022h\n\021potential_metrics\030\002 \001(\0132H.google.ads" + + ".googleads.v11.resources.Recommendation." + + "RecommendationMetricsB\003\340A\003\032\370\001\n\025Recommend" + + "ationMetrics\022\035\n\013impressions\030\006 \001(\001B\003\340A\003H\000" + + "\210\001\001\022\030\n\006clicks\030\007 \001(\001B\003\340A\003H\001\210\001\001\022\035\n\013cost_mi" + + "cros\030\010 \001(\003B\003\340A\003H\002\210\001\001\022\035\n\013conversions\030\t \001(" + + "\001B\003\340A\003H\003\210\001\001\022\035\n\013video_views\030\n \001(\001B\003\340A\003H\004\210" + + "\001\001B\016\n\014_impressionsB\t\n\007_clicksB\016\n\014_cost_m" + + "icrosB\016\n\014_conversionsB\016\n\014_video_views\032\240\004" + + "\n\034CampaignBudgetRecommendation\022.\n\034curren" + + "t_budget_amount_micros\030\007 \001(\003B\003\340A\003H\000\210\001\001\0222" + + "\n recommended_budget_amount_micros\030\010 \001(\003" + + "B\003\340A\003H\001\210\001\001\022\217\001\n\016budget_options\030\003 \003(\0132r.go" + + "ogle.ads.googleads.v11.resources.Recomme" + + "ndation.CampaignBudgetRecommendation.Cam" + + "paignBudgetRecommendationOptionB\003\340A\003\032\303\001\n" + + "\"CampaignBudgetRecommendationOption\022&\n\024b" + + "udget_amount_micros\030\003 \001(\003B\003\340A\003H\000\210\001\001\022\\\n\006i" + + "mpact\030\002 \001(\0132G.google.ads.googleads.v11.r" + + "esources.Recommendation.RecommendationIm" + + "pactB\003\340A\003B\027\n\025_budget_amount_microsB\037\n\035_c" + + "urrent_budget_amount_microsB#\n!_recommen" + + "ded_budget_amount_micros\032\250\001\n\025KeywordReco" + "mmendation\022B\n\007keyword\030\001 \001(\0132,.google.ads" + - ".googleads.v11.common.KeywordInfoB\003\340A\003\022j" + - "\n\026recommended_match_type\030\002 \001(\0162E.google." + - "ads.googleads.v11.enums.KeywordMatchType" + - "Enum.KeywordMatchTypeB\003\340A\003\032\332\001\n\036MoveUnuse" + - "dBudgetRecommendation\022(\n\026excess_campaign" + - "_budget\030\003 \001(\tB\003\340A\003H\000\210\001\001\022s\n\025budget_recomm" + - "endation\030\002 \001(\0132O.google.ads.googleads.v1" + - "1.resources.Recommendation.CampaignBudge" + - "tRecommendationB\003\340A\003B\031\n\027_excess_campaign" + - "_budget\032\313\001\n\035TargetRoasOptInRecommendatio" + - "n\022)\n\027recommended_target_roas\030\001 \001(\001B\003\340A\003H" + - "\000\210\001\001\0228\n&required_campaign_budget_amount_" + - "micros\030\002 \001(\003B\003\340A\003H\001\210\001\001B\032\n\030_recommended_t" + - "arget_roasB)\n\'_required_campaign_budget_" + - "amount_micros\032\261\001\n%ResponsiveSearchAdAsse" + - "tRecommendation\022?\n\ncurrent_ad\030\001 \001(\0132&.go" + - "ogle.ads.googleads.v11.resources.AdB\003\340A\003" + - "\022G\n\022recommended_assets\030\002 \001(\0132&.google.ad" + - "s.googleads.v11.resources.AdB\003\340A\003\032\271\001\n1Re" + - "sponsiveSearchAdImproveAdStrengthRecomme" + - "ndation\022?\n\ncurrent_ad\030\001 \001(\0132&.google.ads" + - ".googleads.v11.resources.AdB\003\340A\003\022C\n\016reco" + - "mmended_ad\030\002 \001(\0132&.google.ads.googleads." + - "v11.resources.AdB\003\340A\003\032[\n ResponsiveSearc" + - "hAdRecommendation\0227\n\002ad\030\001 \001(\0132&.google.a" + - "ds.googleads.v11.resources.AdB\003\340A\003\032\224\002\n\"U" + - "seBroadMatchKeywordRecommendation\022B\n\007key" + - "word\030\001 \003(\0132,.google.ads.googleads.v11.co" + - "mmon.KeywordInfoB\003\340A\003\022%\n\030suggested_keywo" + - "rds_count\030\002 \001(\003B\003\340A\003\022$\n\027campaign_keyword" + - "s_count\030\003 \001(\003B\003\340A\003\022(\n\033campaign_uses_shar" + - "ed_budget\030\004 \001(\010B\003\340A\003\0223\n&required_campaig" + - "n_budget_amount_micros\030\005 \001(\003B\003\340A\003\032w\n:Upg" + - "radeSmartShoppingCampaignToPerformanceMa" + - "xRecommendation\022\030\n\013merchant_id\030\001 \001(\003B\003\340A" + - "\003\022\037\n\022sales_country_code\030\002 \001(\tB\003\340A\003:i\352Af\n" + - "\'googleads.googleapis.com/Recommendation" + - "\022;customers/{customer_id}/recommendation" + - "s/{recommendation_id}B\020\n\016recommendationB" + - "\022\n\020_campaign_budgetB\013\n\t_campaignB\013\n\t_ad_" + - "groupB\014\n\n_dismissedB\205\002\n&com.google.ads.g" + - "oogleads.v11.resourcesB\023RecommendationPr" + - "otoP\001ZKgoogle.golang.org/genproto/google" + - "apis/ads/googleads/v11/resources;resourc" + - "es\242\002\003GAA\252\002\"Google.Ads.GoogleAds.V11.Reso" + - "urces\312\002\"Google\\Ads\\GoogleAds\\V11\\Resourc" + - "es\352\002&Google::Ads::GoogleAds::V11::Resour" + - "cesb\006proto3" + ".googleads.v11.common.KeywordInfoB\003\340A\003\022," + + "\n\032recommended_cpc_bid_micros\030\003 \001(\003B\003\340A\003H" + + "\000\210\001\001B\035\n\033_recommended_cpc_bid_micros\032\271\001\n\024" + + "TextAdRecommendation\0227\n\002ad\030\001 \001(\0132&.googl" + + "e.ads.googleads.v11.resources.AdB\003\340A\003\022\037\n" + + "\rcreation_date\030\004 \001(\tB\003\340A\003H\000\210\001\001\022!\n\017auto_a" + + "pply_date\030\005 \001(\tB\003\340A\003H\001\210\001\001B\020\n\016_creation_d" + + "ateB\022\n\020_auto_apply_date\032\233\005\n\034TargetCpaOpt" + + "InRecommendation\022\210\001\n\007options\030\001 \003(\0132r.goo" + + "gle.ads.googleads.v11.resources.Recommen" + + "dation.TargetCpaOptInRecommendation.Targ" + + "etCpaOptInRecommendationOptionB\003\340A\003\022/\n\035r" + + "ecommended_target_cpa_micros\030\003 \001(\003B\003\340A\003H" + + "\000\210\001\001\032\234\003\n\"TargetCpaOptInRecommendationOpt" + + "ion\022x\n\004goal\030\001 \001(\0162e.google.ads.googleads" + + ".v11.enums.TargetCpaOptInRecommendationG" + + "oalEnum.TargetCpaOptInRecommendationGoal" + + "B\003\340A\003\022#\n\021target_cpa_micros\030\005 \001(\003B\003\340A\003H\000\210" + + "\001\001\0228\n&required_campaign_budget_amount_mi" + + "cros\030\006 \001(\003B\003\340A\003H\001\210\001\001\022\\\n\006impact\030\004 \001(\0132G.g" + + "oogle.ads.googleads.v11.resources.Recomm" + + "endation.RecommendationImpactB\003\340A\003B\024\n\022_t" + + "arget_cpa_microsB)\n\'_required_campaign_b" + + "udget_amount_microsB \n\036_recommended_targ" + + "et_cpa_micros\032\201\001\n&MaximizeConversionsOpt" + + "InRecommendation\0222\n recommended_budget_a" + + "mount_micros\030\002 \001(\003B\003\340A\003H\000\210\001\001B#\n!_recomme" + + "nded_budget_amount_micros\032 \n\036EnhancedCpc" + + "OptInRecommendation\032#\n!SearchPartnersOpt" + + "InRecommendation\032|\n!MaximizeClicksOptInR" + + "ecommendation\0222\n recommended_budget_amou" + + "nt_micros\030\002 \001(\003B\003\340A\003H\000\210\001\001B#\n!_recommende" + + "d_budget_amount_micros\032\"\n OptimizeAdRota" + + "tionRecommendation\032w\n\036CalloutExtensionRe" + + "commendation\022U\n\026recommended_extensions\030\001" + + " \003(\01320.google.ads.googleads.v11.common.C" + + "alloutFeedItemB\003\340A\003\032y\n\037SitelinkExtension" + + "Recommendation\022V\n\026recommended_extensions" + + "\030\001 \003(\01321.google.ads.googleads.v11.common" + + ".SitelinkFeedItemB\003\340A\003\032q\n\033CallExtensionR" + + "ecommendation\022R\n\026recommended_extensions\030" + + "\001 \003(\0132-.google.ads.googleads.v11.common." + + "CallFeedItemB\003\340A\003\032\320\001\n\036KeywordMatchTypeRe" + + "commendation\022B\n\007keyword\030\001 \001(\0132,.google.a" + + "ds.googleads.v11.common.KeywordInfoB\003\340A\003" + + "\022j\n\026recommended_match_type\030\002 \001(\0162E.googl" + + "e.ads.googleads.v11.enums.KeywordMatchTy" + + "peEnum.KeywordMatchTypeB\003\340A\003\032\332\001\n\036MoveUnu" + + "sedBudgetRecommendation\022(\n\026excess_campai" + + "gn_budget\030\003 \001(\tB\003\340A\003H\000\210\001\001\022s\n\025budget_reco" + + "mmendation\030\002 \001(\0132O.google.ads.googleads." + + "v11.resources.Recommendation.CampaignBud" + + "getRecommendationB\003\340A\003B\031\n\027_excess_campai" + + "gn_budget\032\313\001\n\035TargetRoasOptInRecommendat" + + "ion\022)\n\027recommended_target_roas\030\001 \001(\001B\003\340A" + + "\003H\000\210\001\001\0228\n&required_campaign_budget_amoun" + + "t_micros\030\002 \001(\003B\003\340A\003H\001\210\001\001B\032\n\030_recommended" + + "_target_roasB)\n\'_required_campaign_budge" + + "t_amount_micros\032\261\001\n%ResponsiveSearchAdAs" + + "setRecommendation\022?\n\ncurrent_ad\030\001 \001(\0132&." + + "google.ads.googleads.v11.resources.AdB\003\340" + + "A\003\022G\n\022recommended_assets\030\002 \001(\0132&.google." + + "ads.googleads.v11.resources.AdB\003\340A\003\032\271\001\n1" + + "ResponsiveSearchAdImproveAdStrengthRecom" + + "mendation\022?\n\ncurrent_ad\030\001 \001(\0132&.google.a" + + "ds.googleads.v11.resources.AdB\003\340A\003\022C\n\016re" + + "commended_ad\030\002 \001(\0132&.google.ads.googlead" + + "s.v11.resources.AdB\003\340A\003\032[\n ResponsiveSea" + + "rchAdRecommendation\0227\n\002ad\030\001 \001(\0132&.google" + + ".ads.googleads.v11.resources.AdB\003\340A\003\032\224\002\n" + + "\"UseBroadMatchKeywordRecommendation\022B\n\007k" + + "eyword\030\001 \003(\0132,.google.ads.googleads.v11." + + "common.KeywordInfoB\003\340A\003\022%\n\030suggested_key" + + "words_count\030\002 \001(\003B\003\340A\003\022$\n\027campaign_keywo" + + "rds_count\030\003 \001(\003B\003\340A\003\022(\n\033campaign_uses_sh" + + "ared_budget\030\004 \001(\010B\003\340A\003\0223\n&required_campa" + + "ign_budget_amount_micros\030\005 \001(\003B\003\340A\003\032w\n:U" + + "pgradeSmartShoppingCampaignToPerformance" + + "MaxRecommendation\022\030\n\013merchant_id\030\001 \001(\003B\003" + + "\340A\003\022\037\n\022sales_country_code\030\002 \001(\tB\003\340A\003\032%\n#" + + "DisplayExpansionOptInRecommendation\0324\n2U" + + "pgradeLocalCampaignToPerformanceMaxRecom" + + "mendation:i\352Af\n\'googleads.googleapis.com" + + "/Recommendation\022;customers/{customer_id}" + + "/recommendations/{recommendation_id}B\020\n\016" + + "recommendationB\022\n\020_campaign_budgetB\013\n\t_c" + + "ampaignB\013\n\t_ad_groupB\014\n\n_dismissedB\205\002\n&c" + + "om.google.ads.googleads.v11.resourcesB\023R" + + "ecommendationProtoP\001ZKgoogle.golang.org/" + + "genproto/googleapis/ads/googleads/v11/re" + + "sources;resources\242\002\003GAA\252\002\"Google.Ads.Goo" + + "gleAds.V11.Resources\312\002\"Google\\Ads\\Google" + + "Ads\\V11\\Resources\352\002&Google::Ads::GoogleA" + + "ds::V11::Resourcesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -387,7 +407,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_resources_Recommendation_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_resources_Recommendation_descriptor, - new java.lang.String[] { "ResourceName", "Type", "Impact", "CampaignBudget", "Campaign", "AdGroup", "Dismissed", "CampaignBudgetRecommendation", "ForecastingCampaignBudgetRecommendation", "KeywordRecommendation", "TextAdRecommendation", "TargetCpaOptInRecommendation", "MaximizeConversionsOptInRecommendation", "EnhancedCpcOptInRecommendation", "SearchPartnersOptInRecommendation", "MaximizeClicksOptInRecommendation", "OptimizeAdRotationRecommendation", "CalloutExtensionRecommendation", "SitelinkExtensionRecommendation", "CallExtensionRecommendation", "KeywordMatchTypeRecommendation", "MoveUnusedBudgetRecommendation", "TargetRoasOptInRecommendation", "ResponsiveSearchAdRecommendation", "MarginalRoiCampaignBudgetRecommendation", "UseBroadMatchKeywordRecommendation", "ResponsiveSearchAdAssetRecommendation", "UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation", "ResponsiveSearchAdImproveAdStrengthRecommendation", "Recommendation", "CampaignBudget", "Campaign", "AdGroup", "Dismissed", }); + new java.lang.String[] { "ResourceName", "Type", "Impact", "CampaignBudget", "Campaign", "AdGroup", "Dismissed", "CampaignBudgetRecommendation", "ForecastingCampaignBudgetRecommendation", "KeywordRecommendation", "TextAdRecommendation", "TargetCpaOptInRecommendation", "MaximizeConversionsOptInRecommendation", "EnhancedCpcOptInRecommendation", "SearchPartnersOptInRecommendation", "MaximizeClicksOptInRecommendation", "OptimizeAdRotationRecommendation", "CalloutExtensionRecommendation", "SitelinkExtensionRecommendation", "CallExtensionRecommendation", "KeywordMatchTypeRecommendation", "MoveUnusedBudgetRecommendation", "TargetRoasOptInRecommendation", "ResponsiveSearchAdRecommendation", "MarginalRoiCampaignBudgetRecommendation", "UseBroadMatchKeywordRecommendation", "ResponsiveSearchAdAssetRecommendation", "UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation", "ResponsiveSearchAdImproveAdStrengthRecommendation", "DisplayExpansionOptInRecommendation", "UpgradeLocalCampaignToPerformanceMaxRecommendation", "Recommendation", "CampaignBudget", "Campaign", "AdGroup", "Dismissed", }); internal_static_google_ads_googleads_v11_resources_Recommendation_RecommendationImpact_descriptor = internal_static_google_ads_googleads_v11_resources_Recommendation_descriptor.getNestedTypes().get(0); internal_static_google_ads_googleads_v11_resources_Recommendation_RecommendationImpact_fieldAccessorTable = new @@ -532,6 +552,18 @@ public static void registerAllExtensions( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation_descriptor, new java.lang.String[] { "MerchantId", "SalesCountryCode", }); + internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_descriptor = + internal_static_google_ads_googleads_v11_resources_Recommendation_descriptor.getNestedTypes().get(22); + internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_resources_Recommendation_DisplayExpansionOptInRecommendation_descriptor, + new java.lang.String[] { }); + internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_descriptor = + internal_static_google_ads_googleads_v11_resources_Recommendation_descriptor.getNestedTypes().get(23); + internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_resources_Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation_descriptor, + new java.lang.String[] { }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.FieldBehaviorProto.fieldBehavior); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSetting.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSetting.java index ff429d871f..cdf67993c6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSetting.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSetting.java @@ -1048,7 +1048,7 @@ public interface AdOptimizedBusinessProfileSettingOrBuilder extends *
      * Enabling a lead form on your business profile enables prospective
      * customers to contact your business by filling out a simple form,
-     * and you'll receive their information via email.
+     * and you'll receive their information through email.
      * 
* * bool include_lead_form = 1; @@ -1151,7 +1151,7 @@ private AdOptimizedBusinessProfileSetting( *
      * Enabling a lead form on your business profile enables prospective
      * customers to contact your business by filling out a simple form,
-     * and you'll receive their information via email.
+     * and you'll receive their information through email.
      * 
* * bool include_lead_form = 1; @@ -1475,7 +1475,7 @@ public Builder mergeFrom( *
        * Enabling a lead form on your business profile enables prospective
        * customers to contact your business by filling out a simple form,
-       * and you'll receive their information via email.
+       * and you'll receive their information through email.
        * 
* * bool include_lead_form = 1; @@ -1489,7 +1489,7 @@ public boolean getIncludeLeadForm() { *
        * Enabling a lead form on your business profile enables prospective
        * customers to contact your business by filling out a simple form,
-       * and you'll receive their information via email.
+       * and you'll receive their information through email.
        * 
* * bool include_lead_form = 1; @@ -1506,7 +1506,7 @@ public Builder setIncludeLeadForm(boolean value) { *
        * Enabling a lead form on your business profile enables prospective
        * customers to contact your business by filling out a simple form,
-       * and you'll receive their information via email.
+       * and you'll receive their information through email.
        * 
* * bool include_lead_form = 1; @@ -1902,7 +1902,7 @@ public java.lang.String getFinalUrl() { *
    * Settings for configuring a business profile optimized for ads as this
    * campaign's landing page.  This campaign must be linked to a business
-   * profile to use this option.  For more information on this feature, please
+   * profile to use this option.  For more information on this feature,
    * consult https://support.google.com/google-ads/answer/9827068.
    * 
* @@ -1917,7 +1917,7 @@ public boolean hasAdOptimizedBusinessProfileSetting() { *
    * Settings for configuring a business profile optimized for ads as this
    * campaign's landing page.  This campaign must be linked to a business
-   * profile to use this option.  For more information on this feature, please
+   * profile to use this option.  For more information on this feature,
    * consult https://support.google.com/google-ads/answer/9827068.
    * 
* @@ -1935,7 +1935,7 @@ public com.google.ads.googleads.v11.resources.SmartCampaignSetting.AdOptimizedBu *
    * Settings for configuring a business profile optimized for ads as this
    * campaign's landing page.  This campaign must be linked to a business
-   * profile to use this option.  For more information on this feature, please
+   * profile to use this option.  For more information on this feature,
    * consult https://support.google.com/google-ads/answer/9827068.
    * 
* @@ -2017,8 +2017,8 @@ public java.lang.String getBusinessName() { /** *
    * The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -2034,8 +2034,8 @@ public boolean hasBusinessProfileLocation() {
   /**
    * 
    * The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -2065,8 +2065,8 @@ public java.lang.String getBusinessProfileLocation() {
   /**
    * 
    * The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3204,7 +3204,7 @@ public Builder setFinalUrlBytes(
      * 
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3219,7 +3219,7 @@ public boolean hasAdOptimizedBusinessProfileSetting() { *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3244,7 +3244,7 @@ public com.google.ads.googleads.v11.resources.SmartCampaignSetting.AdOptimizedBu *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3267,7 +3267,7 @@ public Builder setAdOptimizedBusinessProfileSetting(com.google.ads.googleads.v11 *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3288,7 +3288,7 @@ public Builder setAdOptimizedBusinessProfileSetting( *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3318,7 +3318,7 @@ public Builder mergeAdOptimizedBusinessProfileSetting(com.google.ads.googleads.v *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3344,7 +3344,7 @@ public Builder clearAdOptimizedBusinessProfileSetting() { *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3357,7 +3357,7 @@ public com.google.ads.googleads.v11.resources.SmartCampaignSetting.AdOptimizedBu *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3378,7 +3378,7 @@ public com.google.ads.googleads.v11.resources.SmartCampaignSetting.AdOptimizedBu *
      * Settings for configuring a business profile optimized for ads as this
      * campaign's landing page.  This campaign must be linked to a business
-     * profile to use this option.  For more information on this feature, please
+     * profile to use this option.  For more information on this feature,
      * consult https://support.google.com/google-ads/answer/9827068.
      * 
* @@ -3527,8 +3527,8 @@ public Builder setBusinessNameBytes( /** *
      * The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3545,8 +3545,8 @@ public boolean hasBusinessProfileLocation() {
     /**
      * 
      * The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3577,8 +3577,8 @@ public java.lang.String getBusinessProfileLocation() {
     /**
      * 
      * The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3610,8 +3610,8 @@ public java.lang.String getBusinessProfileLocation() {
     /**
      * 
      * The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3635,8 +3635,8 @@ public Builder setBusinessProfileLocation(
     /**
      * 
      * The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3657,8 +3657,8 @@ public Builder clearBusinessProfileLocation() {
     /**
      * 
      * The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSettingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSettingOrBuilder.java
index 44a8f966fb..df37489a58 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSettingOrBuilder.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/SmartCampaignSettingOrBuilder.java
@@ -131,7 +131,7 @@ public interface SmartCampaignSettingOrBuilder extends
    * 
    * Settings for configuring a business profile optimized for ads as this
    * campaign's landing page.  This campaign must be linked to a business
-   * profile to use this option.  For more information on this feature, please
+   * profile to use this option.  For more information on this feature,
    * consult https://support.google.com/google-ads/answer/9827068.
    * 
* @@ -143,7 +143,7 @@ public interface SmartCampaignSettingOrBuilder extends *
    * Settings for configuring a business profile optimized for ads as this
    * campaign's landing page.  This campaign must be linked to a business
-   * profile to use this option.  For more information on this feature, please
+   * profile to use this option.  For more information on this feature,
    * consult https://support.google.com/google-ads/answer/9827068.
    * 
* @@ -155,7 +155,7 @@ public interface SmartCampaignSettingOrBuilder extends *
    * Settings for configuring a business profile optimized for ads as this
    * campaign's landing page.  This campaign must be linked to a business
-   * profile to use this option.  For more information on this feature, please
+   * profile to use this option.  For more information on this feature,
    * consult https://support.google.com/google-ads/answer/9827068.
    * 
* @@ -195,8 +195,8 @@ public interface SmartCampaignSettingOrBuilder extends /** *
    * The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -210,8 +210,8 @@ public interface SmartCampaignSettingOrBuilder extends
   /**
    * 
    * The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -225,8 +225,8 @@ public interface SmartCampaignSettingOrBuilder extends
   /**
    * 
    * The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifier.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifier.java
index 4b967f983c..ed7b78347c 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifier.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifier.java
@@ -146,10 +146,10 @@ public long getAppAnalyticsProviderId() {
    * 
    * Immutable. A string that uniquely identifies a mobile application from which the data
    * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-   * string that appears at the end of an App Store URL (e.g., "422689480" for
-   * "Gmail" whose App Store link is
+   * string that appears at the end of an App Store URL (for example,
+   * "422689480" for "Gmail" whose App Store link is
    * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-   * Android, the ID string is the application's package name (e.g.,
+   * Android, the ID string is the application's package name (for example,
    * "com.google.android.gm" for "Gmail" given Google Play link
    * https://play.google.com/store/apps/details?id=com.google.android.gm)
    * This field should not be empty when creating a new third
@@ -168,10 +168,10 @@ public boolean hasAppId() {
    * 
    * Immutable. A string that uniquely identifies a mobile application from which the data
    * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-   * string that appears at the end of an App Store URL (e.g., "422689480" for
-   * "Gmail" whose App Store link is
+   * string that appears at the end of an App Store URL (for example,
+   * "422689480" for "Gmail" whose App Store link is
    * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-   * Android, the ID string is the application's package name (e.g.,
+   * Android, the ID string is the application's package name (for example,
    * "com.google.android.gm" for "Gmail" given Google Play link
    * https://play.google.com/store/apps/details?id=com.google.android.gm)
    * This field should not be empty when creating a new third
@@ -199,10 +199,10 @@ public java.lang.String getAppId() {
    * 
    * Immutable. A string that uniquely identifies a mobile application from which the data
    * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-   * string that appears at the end of an App Store URL (e.g., "422689480" for
-   * "Gmail" whose App Store link is
+   * string that appears at the end of an App Store URL (for example,
+   * "422689480" for "Gmail" whose App Store link is
    * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-   * Android, the ID string is the application's package name (e.g.,
+   * Android, the ID string is the application's package name (for example,
    * "com.google.android.gm" for "Gmail" given Google Play link
    * https://play.google.com/store/apps/details?id=com.google.android.gm)
    * This field should not be empty when creating a new third
@@ -694,10 +694,10 @@ public Builder clearAppAnalyticsProviderId() {
      * 
      * Immutable. A string that uniquely identifies a mobile application from which the data
      * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-     * string that appears at the end of an App Store URL (e.g., "422689480" for
-     * "Gmail" whose App Store link is
+     * string that appears at the end of an App Store URL (for example,
+     * "422689480" for "Gmail" whose App Store link is
      * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-     * Android, the ID string is the application's package name (e.g.,
+     * Android, the ID string is the application's package name (for example,
      * "com.google.android.gm" for "Gmail" given Google Play link
      * https://play.google.com/store/apps/details?id=com.google.android.gm)
      * This field should not be empty when creating a new third
@@ -715,10 +715,10 @@ public boolean hasAppId() {
      * 
      * Immutable. A string that uniquely identifies a mobile application from which the data
      * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-     * string that appears at the end of an App Store URL (e.g., "422689480" for
-     * "Gmail" whose App Store link is
+     * string that appears at the end of an App Store URL (for example,
+     * "422689480" for "Gmail" whose App Store link is
      * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-     * Android, the ID string is the application's package name (e.g.,
+     * Android, the ID string is the application's package name (for example,
      * "com.google.android.gm" for "Gmail" given Google Play link
      * https://play.google.com/store/apps/details?id=com.google.android.gm)
      * This field should not be empty when creating a new third
@@ -745,10 +745,10 @@ public java.lang.String getAppId() {
      * 
      * Immutable. A string that uniquely identifies a mobile application from which the data
      * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-     * string that appears at the end of an App Store URL (e.g., "422689480" for
-     * "Gmail" whose App Store link is
+     * string that appears at the end of an App Store URL (for example,
+     * "422689480" for "Gmail" whose App Store link is
      * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-     * Android, the ID string is the application's package name (e.g.,
+     * Android, the ID string is the application's package name (for example,
      * "com.google.android.gm" for "Gmail" given Google Play link
      * https://play.google.com/store/apps/details?id=com.google.android.gm)
      * This field should not be empty when creating a new third
@@ -776,10 +776,10 @@ public java.lang.String getAppId() {
      * 
      * Immutable. A string that uniquely identifies a mobile application from which the data
      * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-     * string that appears at the end of an App Store URL (e.g., "422689480" for
-     * "Gmail" whose App Store link is
+     * string that appears at the end of an App Store URL (for example,
+     * "422689480" for "Gmail" whose App Store link is
      * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-     * Android, the ID string is the application's package name (e.g.,
+     * Android, the ID string is the application's package name (for example,
      * "com.google.android.gm" for "Gmail" given Google Play link
      * https://play.google.com/store/apps/details?id=com.google.android.gm)
      * This field should not be empty when creating a new third
@@ -805,10 +805,10 @@ public Builder setAppId(
      * 
      * Immutable. A string that uniquely identifies a mobile application from which the data
      * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-     * string that appears at the end of an App Store URL (e.g., "422689480" for
-     * "Gmail" whose App Store link is
+     * string that appears at the end of an App Store URL (for example,
+     * "422689480" for "Gmail" whose App Store link is
      * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-     * Android, the ID string is the application's package name (e.g.,
+     * Android, the ID string is the application's package name (for example,
      * "com.google.android.gm" for "Gmail" given Google Play link
      * https://play.google.com/store/apps/details?id=com.google.android.gm)
      * This field should not be empty when creating a new third
@@ -829,10 +829,10 @@ public Builder clearAppId() {
      * 
      * Immutable. A string that uniquely identifies a mobile application from which the data
      * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-     * string that appears at the end of an App Store URL (e.g., "422689480" for
-     * "Gmail" whose App Store link is
+     * string that appears at the end of an App Store URL (for example,
+     * "422689480" for "Gmail" whose App Store link is
      * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-     * Android, the ID string is the application's package name (e.g.,
+     * Android, the ID string is the application's package name (for example,
      * "com.google.android.gm" for "Gmail" given Google Play link
      * https://play.google.com/store/apps/details?id=com.google.android.gm)
      * This field should not be empty when creating a new third
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifierOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifierOrBuilder.java
index 1ee8f7294f..bc583150df 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifierOrBuilder.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/ThirdPartyAppAnalyticsLinkIdentifierOrBuilder.java
@@ -36,10 +36,10 @@ public interface ThirdPartyAppAnalyticsLinkIdentifierOrBuilder extends
    * 
    * Immutable. A string that uniquely identifies a mobile application from which the data
    * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-   * string that appears at the end of an App Store URL (e.g., "422689480" for
-   * "Gmail" whose App Store link is
+   * string that appears at the end of an App Store URL (for example,
+   * "422689480" for "Gmail" whose App Store link is
    * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-   * Android, the ID string is the application's package name (e.g.,
+   * Android, the ID string is the application's package name (for example,
    * "com.google.android.gm" for "Gmail" given Google Play link
    * https://play.google.com/store/apps/details?id=com.google.android.gm)
    * This field should not be empty when creating a new third
@@ -55,10 +55,10 @@ public interface ThirdPartyAppAnalyticsLinkIdentifierOrBuilder extends
    * 
    * Immutable. A string that uniquely identifies a mobile application from which the data
    * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-   * string that appears at the end of an App Store URL (e.g., "422689480" for
-   * "Gmail" whose App Store link is
+   * string that appears at the end of an App Store URL (for example,
+   * "422689480" for "Gmail" whose App Store link is
    * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-   * Android, the ID string is the application's package name (e.g.,
+   * Android, the ID string is the application's package name (for example,
    * "com.google.android.gm" for "Gmail" given Google Play link
    * https://play.google.com/store/apps/details?id=com.google.android.gm)
    * This field should not be empty when creating a new third
@@ -74,10 +74,10 @@ public interface ThirdPartyAppAnalyticsLinkIdentifierOrBuilder extends
    * 
    * Immutable. A string that uniquely identifies a mobile application from which the data
    * was collected to the Google Ads API. For iOS, the ID string is the 9 digit
-   * string that appears at the end of an App Store URL (e.g., "422689480" for
-   * "Gmail" whose App Store link is
+   * string that appears at the end of an App Store URL (for example,
+   * "422689480" for "Gmail" whose App Store link is
    * https://apps.apple.com/us/app/gmail-email-by-google/id422689480). For
-   * Android, the ID string is the application's package name (e.g.,
+   * Android, the ID string is the application's package name (for example,
    * "com.google.android.gm" for "Gmail" given Google Play link
    * https://play.google.com/store/apps/details?id=com.google.android.gm)
    * This field should not be empty when creating a new third
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserList.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserList.java
index fc565474d0..6d4883f404 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserList.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserList.java
@@ -403,7 +403,7 @@ public long getId() {
   private boolean readOnly_;
   /**
    * 
-   * Output only. A flag that indicates if a user may edit a list. Depends on the list
+   * Output only. An option that indicates if a user may edit a list. Depends on the list
    * ownership and list type. For example, external remarketing user lists are
    * not editable.
    * This field is read-only.
@@ -418,7 +418,7 @@ public boolean hasReadOnly() {
   }
   /**
    * 
-   * Output only. A flag that indicates if a user may edit a list. Depends on the list
+   * Output only. An option that indicates if a user may edit a list. Depends on the list
    * ownership and list type. For example, external remarketing user lists are
    * not editable.
    * This field is read-only.
@@ -437,7 +437,7 @@ public boolean getReadOnly() {
   /**
    * 
    * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (e.g. if access_reason=SHARED)
+   * may not be unique (for example, if access_reason=SHARED)
    * 
* * optional string name = 27; @@ -450,7 +450,7 @@ public boolean hasName() { /** *
    * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (e.g. if access_reason=SHARED)
+   * may not be unique (for example, if access_reason=SHARED)
    * 
* * optional string name = 27; @@ -472,7 +472,7 @@ public java.lang.String getName() { /** *
    * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (e.g. if access_reason=SHARED)
+   * may not be unique (for example, if access_reason=SHARED)
    * 
* * optional string name = 27; @@ -2266,7 +2266,7 @@ public Builder clearId() { private boolean readOnly_ ; /** *
-     * Output only. A flag that indicates if a user may edit a list. Depends on the list
+     * Output only. An option that indicates if a user may edit a list. Depends on the list
      * ownership and list type. For example, external remarketing user lists are
      * not editable.
      * This field is read-only.
@@ -2281,7 +2281,7 @@ public boolean hasReadOnly() {
     }
     /**
      * 
-     * Output only. A flag that indicates if a user may edit a list. Depends on the list
+     * Output only. An option that indicates if a user may edit a list. Depends on the list
      * ownership and list type. For example, external remarketing user lists are
      * not editable.
      * This field is read-only.
@@ -2296,7 +2296,7 @@ public boolean getReadOnly() {
     }
     /**
      * 
-     * Output only. A flag that indicates if a user may edit a list. Depends on the list
+     * Output only. An option that indicates if a user may edit a list. Depends on the list
      * ownership and list type. For example, external remarketing user lists are
      * not editable.
      * This field is read-only.
@@ -2314,7 +2314,7 @@ public Builder setReadOnly(boolean value) {
     }
     /**
      * 
-     * Output only. A flag that indicates if a user may edit a list. Depends on the list
+     * Output only. An option that indicates if a user may edit a list. Depends on the list
      * ownership and list type. For example, external remarketing user lists are
      * not editable.
      * This field is read-only.
@@ -2334,7 +2334,7 @@ public Builder clearReadOnly() {
     /**
      * 
      * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (e.g. if access_reason=SHARED)
+     * may not be unique (for example, if access_reason=SHARED)
      * 
* * optional string name = 27; @@ -2346,7 +2346,7 @@ public boolean hasName() { /** *
      * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (e.g. if access_reason=SHARED)
+     * may not be unique (for example, if access_reason=SHARED)
      * 
* * optional string name = 27; @@ -2367,7 +2367,7 @@ public java.lang.String getName() { /** *
      * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (e.g. if access_reason=SHARED)
+     * may not be unique (for example, if access_reason=SHARED)
      * 
* * optional string name = 27; @@ -2389,7 +2389,7 @@ public java.lang.String getName() { /** *
      * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (e.g. if access_reason=SHARED)
+     * may not be unique (for example, if access_reason=SHARED)
      * 
* * optional string name = 27; @@ -2409,7 +2409,7 @@ public Builder setName( /** *
      * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (e.g. if access_reason=SHARED)
+     * may not be unique (for example, if access_reason=SHARED)
      * 
* * optional string name = 27; @@ -2424,7 +2424,7 @@ public Builder clearName() { /** *
      * Name of this user list. Depending on its access_reason, the user list name
-     * may not be unique (e.g. if access_reason=SHARED)
+     * may not be unique (for example, if access_reason=SHARED)
      * 
* * optional string name = 27; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserListOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserListOrBuilder.java index 3a4f50a03f..e29f98d1ce 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserListOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/resources/UserListOrBuilder.java @@ -52,7 +52,7 @@ public interface UserListOrBuilder extends /** *
-   * Output only. A flag that indicates if a user may edit a list. Depends on the list
+   * Output only. An option that indicates if a user may edit a list. Depends on the list
    * ownership and list type. For example, external remarketing user lists are
    * not editable.
    * This field is read-only.
@@ -64,7 +64,7 @@ public interface UserListOrBuilder extends
   boolean hasReadOnly();
   /**
    * 
-   * Output only. A flag that indicates if a user may edit a list. Depends on the list
+   * Output only. An option that indicates if a user may edit a list. Depends on the list
    * ownership and list type. For example, external remarketing user lists are
    * not editable.
    * This field is read-only.
@@ -78,7 +78,7 @@ public interface UserListOrBuilder extends
   /**
    * 
    * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (e.g. if access_reason=SHARED)
+   * may not be unique (for example, if access_reason=SHARED)
    * 
* * optional string name = 27; @@ -88,7 +88,7 @@ public interface UserListOrBuilder extends /** *
    * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (e.g. if access_reason=SHARED)
+   * may not be unique (for example, if access_reason=SHARED)
    * 
* * optional string name = 27; @@ -98,7 +98,7 @@ public interface UserListOrBuilder extends /** *
    * Name of this user list. Depending on its access_reason, the user list name
-   * may not be unique (e.g. if access_reason=SHARED)
+   * may not be unique (for example, if access_reason=SHARED)
    * 
* * optional string name = 27; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceClient.java index 12cbda6164..9d5c5538b5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceClient.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceClient.java @@ -26,7 +26,7 @@ // AUTO-GENERATED DOCUMENTATION AND CLASS. /** - * Service Description: A service for managing account-level budgets via proposals. + * Service Description: A service for managing account-level budgets through proposals. * *

A proposal is a request to create a new budget or make changes to an existing one. * diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceGrpc.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceGrpc.java index 6142d53f19..e36c571a91 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceGrpc.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountBudgetProposalServiceGrpc.java @@ -4,7 +4,7 @@ /** *

- * A service for managing account-level budgets via proposals.
+ * A service for managing account-level budgets through proposals.
  * A proposal is a request to create a new budget or make changes to an
  * existing one.
  * Mutates:
@@ -101,7 +101,7 @@ public AccountBudgetProposalServiceFutureStub newStub(io.grpc.Channel channel, i
 
   /**
    * 
-   * A service for managing account-level budgets via proposals.
+   * A service for managing account-level budgets through proposals.
    * A proposal is a request to create a new budget or make changes to an
    * existing one.
    * Mutates:
@@ -152,7 +152,7 @@ public void mutateAccountBudgetProposal(com.google.ads.googleads.v11.services.Mu
 
   /**
    * 
-   * A service for managing account-level budgets via proposals.
+   * A service for managing account-level budgets through proposals.
    * A proposal is a request to create a new budget or make changes to an
    * existing one.
    * Mutates:
@@ -202,7 +202,7 @@ public void mutateAccountBudgetProposal(com.google.ads.googleads.v11.services.Mu
 
   /**
    * 
-   * A service for managing account-level budgets via proposals.
+   * A service for managing account-level budgets through proposals.
    * A proposal is a request to create a new budget or make changes to an
    * existing one.
    * Mutates:
@@ -251,7 +251,7 @@ public com.google.ads.googleads.v11.services.MutateAccountBudgetProposalResponse
 
   /**
    * 
-   * A service for managing account-level budgets via proposals.
+   * A service for managing account-level budgets through proposals.
    * A proposal is a request to create a new budget or make changes to an
    * existing one.
    * Mutates:
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceClient.java
index eae9e1dce7..6826739b46 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceClient.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceClient.java
@@ -246,7 +246,7 @@ public final CreateAccountLinkResponse createAccountLink(CreateAccountLinkReques
   // AUTO-GENERATED DOCUMENTATION AND METHOD.
   /**
    * Creates or removes an account link. From V5, create is not supported through
-   * AccountLinkService.MutateAccountLink. Please use AccountLinkService.CreateAccountLink instead.
+   * AccountLinkService.MutateAccountLink. Use AccountLinkService.CreateAccountLink instead.
    *
    * 

List of thrown errors: [AccountLinkError]() [AuthenticationError]() [AuthorizationError]() * [FieldMaskError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() @@ -282,7 +282,7 @@ public final MutateAccountLinkResponse mutateAccountLink( // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Creates or removes an account link. From V5, create is not supported through - * AccountLinkService.MutateAccountLink. Please use AccountLinkService.CreateAccountLink instead. + * AccountLinkService.MutateAccountLink. Use AccountLinkService.CreateAccountLink instead. * *

List of thrown errors: [AccountLinkError]() [AuthenticationError]() [AuthorizationError]() * [FieldMaskError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() @@ -315,7 +315,7 @@ public final MutateAccountLinkResponse mutateAccountLink(MutateAccountLinkReques // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Creates or removes an account link. From V5, create is not supported through - * AccountLinkService.MutateAccountLink. Please use AccountLinkService.CreateAccountLink instead. + * AccountLinkService.MutateAccountLink. Use AccountLinkService.CreateAccountLink instead. * *

List of thrown errors: [AccountLinkError]() [AuthenticationError]() [AuthorizationError]() * [FieldMaskError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceGrpc.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceGrpc.java index f3da9b91fe..ccfcf34623 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceGrpc.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AccountLinkServiceGrpc.java @@ -158,7 +158,7 @@ public void createAccountLink(com.google.ads.googleads.v11.services.CreateAccoun *

      * Creates or removes an account link.
      * From V5, create is not supported through
-     * AccountLinkService.MutateAccountLink. Please use
+     * AccountLinkService.MutateAccountLink. Use
      * AccountLinkService.CreateAccountLink instead.
      * List of thrown errors:
      *   [AccountLinkError]()
@@ -241,7 +241,7 @@ public void createAccountLink(com.google.ads.googleads.v11.services.CreateAccoun
      * 
      * Creates or removes an account link.
      * From V5, create is not supported through
-     * AccountLinkService.MutateAccountLink. Please use
+     * AccountLinkService.MutateAccountLink. Use
      * AccountLinkService.CreateAccountLink instead.
      * List of thrown errors:
      *   [AccountLinkError]()
@@ -305,7 +305,7 @@ public com.google.ads.googleads.v11.services.CreateAccountLinkResponse createAcc
      * 
      * Creates or removes an account link.
      * From V5, create is not supported through
-     * AccountLinkService.MutateAccountLink. Please use
+     * AccountLinkService.MutateAccountLink. Use
      * AccountLinkService.CreateAccountLink instead.
      * List of thrown errors:
      *   [AccountLinkError]()
@@ -369,7 +369,7 @@ public com.google.common.util.concurrent.ListenableFuture
      * Creates or removes an account link.
      * From V5, create is not supported through
-     * AccountLinkService.MutateAccountLink. Please use
+     * AccountLinkService.MutateAccountLink. Use
      * AccountLinkService.CreateAccountLink instead.
      * List of thrown errors:
      *   [AccountLinkError]()
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperation.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperation.java
index 380a0869ae..4e347ed85d 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperation.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperation.java
@@ -234,7 +234,7 @@ public com.google.protobuf.FieldMaskOrBuilder getUpdateMaskOrBuilder() {
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -252,7 +252,7 @@ public java.util.List ge
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -271,7 +271,7 @@ public java.util.List ge
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -289,7 +289,7 @@ public int getExemptPolicyViolationKeysCount() {
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -307,7 +307,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey getExemptPolicyVio
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -1136,7 +1136,7 @@ private void ensureExemptPolicyViolationKeysIsMutable() {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1157,7 +1157,7 @@ public java.util.List ge
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1178,7 +1178,7 @@ public int getExemptPolicyViolationKeysCount() {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1199,7 +1199,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey getExemptPolicyVio
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1227,7 +1227,7 @@ public Builder setExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1252,7 +1252,7 @@ public Builder setExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1279,7 +1279,7 @@ public Builder addExemptPolicyViolationKeys(com.google.ads.googleads.v11.common.
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1307,7 +1307,7 @@ public Builder addExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1332,7 +1332,7 @@ public Builder addExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1357,7 +1357,7 @@ public Builder addExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1383,7 +1383,7 @@ public Builder addAllExemptPolicyViolationKeys(
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1407,7 +1407,7 @@ public Builder clearExemptPolicyViolationKeys() {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1431,7 +1431,7 @@ public Builder removeExemptPolicyViolationKeys(int index) {
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1449,7 +1449,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey.Builder getExemptP
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1470,7 +1470,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKeyOrBuilder getExempt
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1492,7 +1492,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKeyOrBuilder getExempt
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1510,7 +1510,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey.Builder addExemptP
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
@@ -1529,7 +1529,7 @@ public com.google.ads.googleads.v11.common.PolicyViolationKey.Builder addExemptP
      * 
      * The list of policy violation keys that should not cause a
      * PolicyViolationError to be reported. Not all policy violations are
-     * exemptable, please refer to the is_exemptible field in the returned
+     * exemptable, refer to the is_exemptible field in the returned
      * PolicyViolationError.
      * Resources violating these polices will be saved, but will not be eligible
      * to serve. They may begin serving at a later time due to a change in
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperationOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperationOrBuilder.java
index 84dbc2aeab..6699bfa38c 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperationOrBuilder.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdGroupCriterionOperationOrBuilder.java
@@ -38,7 +38,7 @@ public interface AdGroupCriterionOperationOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -54,7 +54,7 @@ public interface AdGroupCriterionOperationOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -69,7 +69,7 @@ public interface AdGroupCriterionOperationOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -84,7 +84,7 @@ public interface AdGroupCriterionOperationOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
@@ -100,7 +100,7 @@ public interface AdGroupCriterionOperationOrBuilder extends
    * 
    * The list of policy violation keys that should not cause a
    * PolicyViolationError to be reported. Not all policy violations are
-   * exemptable, please refer to the is_exemptible field in the returned
+   * exemptable, refer to the is_exemptible field in the returned
    * PolicyViolationError.
    * Resources violating these polices will be saved, but will not be eligible
    * to serve. They may begin serving at a later time due to a change in
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponse.java
index 197630132f..a94acc5a62 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponse.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponse.java
@@ -119,8 +119,8 @@ private AddOfflineUserDataJobOperationsResponse(
    * 
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -558,8 +558,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -572,8 +572,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -590,8 +590,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -613,8 +613,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -634,8 +634,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -659,8 +659,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -680,8 +680,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -695,8 +695,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -713,8 +713,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponseOrBuilder.java index 066cda6a70..825de9f245 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AddOfflineUserDataJobOperationsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface AddOfflineUserDataJobOperationsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface AddOfflineUserDataJobOperationsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface AddOfflineUserDataJobOperationsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdvancedProductTargeting.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdvancedProductTargeting.java new file mode 100644 index 0000000000..42fb40d39e --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdvancedProductTargeting.java @@ -0,0 +1,761 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * Advanced targeting settings for products.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AdvancedProductTargeting} + */ +public final class AdvancedProductTargeting extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.AdvancedProductTargeting) + AdvancedProductTargetingOrBuilder { +private static final long serialVersionUID = 0L; + // Use AdvancedProductTargeting.newBuilder() to construct. + private AdvancedProductTargeting(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AdvancedProductTargeting() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AdvancedProductTargeting(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AdvancedProductTargeting( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder subBuilder = null; + if (advancedTargetingCase_ == 1) { + subBuilder = ((com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_).toBuilder(); + } + advancedTargeting_ = + input.readMessage(com.google.ads.googleads.v11.services.YouTubeSelectSettings.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_); + advancedTargeting_ = subBuilder.buildPartial(); + } + advancedTargetingCase_ = 1; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AdvancedProductTargeting.class, com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder.class); + } + + private int advancedTargetingCase_ = 0; + private java.lang.Object advancedTargeting_; + public enum AdvancedTargetingCase + implements com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + YOUTUBE_SELECT_SETTINGS(1), + ADVANCEDTARGETING_NOT_SET(0); + private final int value; + private AdvancedTargetingCase(int value) { + this.value = value; + } + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static AdvancedTargetingCase valueOf(int value) { + return forNumber(value); + } + + public static AdvancedTargetingCase forNumber(int value) { + switch (value) { + case 1: return YOUTUBE_SELECT_SETTINGS; + case 0: return ADVANCEDTARGETING_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public AdvancedTargetingCase + getAdvancedTargetingCase() { + return AdvancedTargetingCase.forNumber( + advancedTargetingCase_); + } + + public static final int YOUTUBE_SELECT_SETTINGS_FIELD_NUMBER = 1; + /** + *
+   * Settings for YouTube Select targeting.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + * @return Whether the youtubeSelectSettings field is set. + */ + @java.lang.Override + public boolean hasYoutubeSelectSettings() { + return advancedTargetingCase_ == 1; + } + /** + *
+   * Settings for YouTube Select targeting.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + * @return The youtubeSelectSettings. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettings getYoutubeSelectSettings() { + if (advancedTargetingCase_ == 1) { + return (com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_; + } + return com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance(); + } + /** + *
+   * Settings for YouTube Select targeting.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettingsOrBuilder getYoutubeSelectSettingsOrBuilder() { + if (advancedTargetingCase_ == 1) { + return (com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_; + } + return com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance(); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (advancedTargetingCase_ == 1) { + output.writeMessage(1, (com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (advancedTargetingCase_ == 1) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, (com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.AdvancedProductTargeting)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.AdvancedProductTargeting other = (com.google.ads.googleads.v11.services.AdvancedProductTargeting) obj; + + if (!getAdvancedTargetingCase().equals(other.getAdvancedTargetingCase())) return false; + switch (advancedTargetingCase_) { + case 1: + if (!getYoutubeSelectSettings() + .equals(other.getYoutubeSelectSettings())) return false; + break; + case 0: + default: + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + switch (advancedTargetingCase_) { + case 1: + hash = (37 * hash) + YOUTUBE_SELECT_SETTINGS_FIELD_NUMBER; + hash = (53 * hash) + getYoutubeSelectSettings().hashCode(); + break; + case 0: + default: + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.AdvancedProductTargeting prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Advanced targeting settings for products.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AdvancedProductTargeting} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.AdvancedProductTargeting) + com.google.ads.googleads.v11.services.AdvancedProductTargetingOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AdvancedProductTargeting.class, com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.AdvancedProductTargeting.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + advancedTargetingCase_ = 0; + advancedTargeting_ = null; + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AdvancedProductTargeting getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.AdvancedProductTargeting.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AdvancedProductTargeting build() { + com.google.ads.googleads.v11.services.AdvancedProductTargeting result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AdvancedProductTargeting buildPartial() { + com.google.ads.googleads.v11.services.AdvancedProductTargeting result = new com.google.ads.googleads.v11.services.AdvancedProductTargeting(this); + if (advancedTargetingCase_ == 1) { + if (youtubeSelectSettingsBuilder_ == null) { + result.advancedTargeting_ = advancedTargeting_; + } else { + result.advancedTargeting_ = youtubeSelectSettingsBuilder_.build(); + } + } + result.advancedTargetingCase_ = advancedTargetingCase_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.AdvancedProductTargeting) { + return mergeFrom((com.google.ads.googleads.v11.services.AdvancedProductTargeting)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.AdvancedProductTargeting other) { + if (other == com.google.ads.googleads.v11.services.AdvancedProductTargeting.getDefaultInstance()) return this; + switch (other.getAdvancedTargetingCase()) { + case YOUTUBE_SELECT_SETTINGS: { + mergeYoutubeSelectSettings(other.getYoutubeSelectSettings()); + break; + } + case ADVANCEDTARGETING_NOT_SET: { + break; + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.AdvancedProductTargeting parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.AdvancedProductTargeting) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int advancedTargetingCase_ = 0; + private java.lang.Object advancedTargeting_; + public AdvancedTargetingCase + getAdvancedTargetingCase() { + return AdvancedTargetingCase.forNumber( + advancedTargetingCase_); + } + + public Builder clearAdvancedTargeting() { + advancedTargetingCase_ = 0; + advancedTargeting_ = null; + onChanged(); + return this; + } + + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeSelectSettings, com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder, com.google.ads.googleads.v11.services.YouTubeSelectSettingsOrBuilder> youtubeSelectSettingsBuilder_; + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + * @return Whether the youtubeSelectSettings field is set. + */ + @java.lang.Override + public boolean hasYoutubeSelectSettings() { + return advancedTargetingCase_ == 1; + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + * @return The youtubeSelectSettings. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettings getYoutubeSelectSettings() { + if (youtubeSelectSettingsBuilder_ == null) { + if (advancedTargetingCase_ == 1) { + return (com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_; + } + return com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance(); + } else { + if (advancedTargetingCase_ == 1) { + return youtubeSelectSettingsBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance(); + } + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + public Builder setYoutubeSelectSettings(com.google.ads.googleads.v11.services.YouTubeSelectSettings value) { + if (youtubeSelectSettingsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + advancedTargeting_ = value; + onChanged(); + } else { + youtubeSelectSettingsBuilder_.setMessage(value); + } + advancedTargetingCase_ = 1; + return this; + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + public Builder setYoutubeSelectSettings( + com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder builderForValue) { + if (youtubeSelectSettingsBuilder_ == null) { + advancedTargeting_ = builderForValue.build(); + onChanged(); + } else { + youtubeSelectSettingsBuilder_.setMessage(builderForValue.build()); + } + advancedTargetingCase_ = 1; + return this; + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + public Builder mergeYoutubeSelectSettings(com.google.ads.googleads.v11.services.YouTubeSelectSettings value) { + if (youtubeSelectSettingsBuilder_ == null) { + if (advancedTargetingCase_ == 1 && + advancedTargeting_ != com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance()) { + advancedTargeting_ = com.google.ads.googleads.v11.services.YouTubeSelectSettings.newBuilder((com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_) + .mergeFrom(value).buildPartial(); + } else { + advancedTargeting_ = value; + } + onChanged(); + } else { + if (advancedTargetingCase_ == 1) { + youtubeSelectSettingsBuilder_.mergeFrom(value); + } else { + youtubeSelectSettingsBuilder_.setMessage(value); + } + } + advancedTargetingCase_ = 1; + return this; + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + public Builder clearYoutubeSelectSettings() { + if (youtubeSelectSettingsBuilder_ == null) { + if (advancedTargetingCase_ == 1) { + advancedTargetingCase_ = 0; + advancedTargeting_ = null; + onChanged(); + } + } else { + if (advancedTargetingCase_ == 1) { + advancedTargetingCase_ = 0; + advancedTargeting_ = null; + } + youtubeSelectSettingsBuilder_.clear(); + } + return this; + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + public com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder getYoutubeSelectSettingsBuilder() { + return getYoutubeSelectSettingsFieldBuilder().getBuilder(); + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettingsOrBuilder getYoutubeSelectSettingsOrBuilder() { + if ((advancedTargetingCase_ == 1) && (youtubeSelectSettingsBuilder_ != null)) { + return youtubeSelectSettingsBuilder_.getMessageOrBuilder(); + } else { + if (advancedTargetingCase_ == 1) { + return (com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_; + } + return com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance(); + } + } + /** + *
+     * Settings for YouTube Select targeting.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeSelectSettings, com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder, com.google.ads.googleads.v11.services.YouTubeSelectSettingsOrBuilder> + getYoutubeSelectSettingsFieldBuilder() { + if (youtubeSelectSettingsBuilder_ == null) { + if (!(advancedTargetingCase_ == 1)) { + advancedTargeting_ = com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance(); + } + youtubeSelectSettingsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeSelectSettings, com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder, com.google.ads.googleads.v11.services.YouTubeSelectSettingsOrBuilder>( + (com.google.ads.googleads.v11.services.YouTubeSelectSettings) advancedTargeting_, + getParentForChildren(), + isClean()); + advancedTargeting_ = null; + } + advancedTargetingCase_ = 1; + onChanged();; + return youtubeSelectSettingsBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.AdvancedProductTargeting) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.AdvancedProductTargeting) + private static final com.google.ads.googleads.v11.services.AdvancedProductTargeting DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.AdvancedProductTargeting(); + } + + public static com.google.ads.googleads.v11.services.AdvancedProductTargeting getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AdvancedProductTargeting parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AdvancedProductTargeting(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AdvancedProductTargeting getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdvancedProductTargetingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdvancedProductTargetingOrBuilder.java new file mode 100644 index 0000000000..56815c1061 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AdvancedProductTargetingOrBuilder.java @@ -0,0 +1,38 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +public interface AdvancedProductTargetingOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.AdvancedProductTargeting) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Settings for YouTube Select targeting.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + * @return Whether the youtubeSelectSettings field is set. + */ + boolean hasYoutubeSelectSettings(); + /** + *
+   * Settings for YouTube Select targeting.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + * @return The youtubeSelectSettings. + */ + com.google.ads.googleads.v11.services.YouTubeSelectSettings getYoutubeSelectSettings(); + /** + *
+   * Settings for YouTube Select targeting.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeSelectSettings youtube_select_settings = 1; + */ + com.google.ads.googleads.v11.services.YouTubeSelectSettingsOrBuilder getYoutubeSelectSettingsOrBuilder(); + + public com.google.ads.googleads.v11.services.AdvancedProductTargeting.AdvancedTargetingCase getAdvancedTargetingCase(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponse.java index ffeb60a08c..9cf1fbd04d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.ApplyRecommendationResultOrBuilder *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.ApplyRecommendationResult.Builder a *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponseOrBuilder.java index 6413e168cd..0fad83fdd9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ApplyRecommendationResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.ApplyRecommendationResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.ApplyRecommendationResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.ApplyRecommendationResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttribute.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttribute.java new file mode 100644 index 0000000000..d80260f0ab --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttribute.java @@ -0,0 +1,901 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * An audience attribute with metadata and metrics.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionAttribute} + */ +public final class AudienceCompositionAttribute extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.AudienceCompositionAttribute) + AudienceCompositionAttributeOrBuilder { +private static final long serialVersionUID = 0L; + // Use AudienceCompositionAttribute.newBuilder() to construct. + private AudienceCompositionAttribute(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AudienceCompositionAttribute() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AudienceCompositionAttribute(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AudienceCompositionAttribute( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.Builder subBuilder = null; + if (attributeMetadata_ != null) { + subBuilder = attributeMetadata_.toBuilder(); + } + attributeMetadata_ = input.readMessage(com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(attributeMetadata_); + attributeMetadata_ = subBuilder.buildPartial(); + } + + break; + } + case 18: { + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder subBuilder = null; + if (metrics_ != null) { + subBuilder = metrics_.toBuilder(); + } + metrics_ = input.readMessage(com.google.ads.googleads.v11.services.AudienceCompositionMetrics.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(metrics_); + metrics_ = subBuilder.buildPartial(); + } + + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionAttribute.class, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder.class); + } + + public static final int ATTRIBUTE_METADATA_FIELD_NUMBER = 1; + private com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attributeMetadata_; + /** + *
+   * The attribute with its metadata.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + * @return Whether the attributeMetadata field is set. + */ + @java.lang.Override + public boolean hasAttributeMetadata() { + return attributeMetadata_ != null; + } + /** + *
+   * The attribute with its metadata.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + * @return The attributeMetadata. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata getAttributeMetadata() { + return attributeMetadata_ == null ? com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.getDefaultInstance() : attributeMetadata_; + } + /** + *
+   * The attribute with its metadata.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadataOrBuilder getAttributeMetadataOrBuilder() { + return getAttributeMetadata(); + } + + public static final int METRICS_FIELD_NUMBER = 2; + private com.google.ads.googleads.v11.services.AudienceCompositionMetrics metrics_; + /** + *
+   * Share and index metrics for the attribute.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + * @return Whether the metrics field is set. + */ + @java.lang.Override + public boolean hasMetrics() { + return metrics_ != null; + } + /** + *
+   * Share and index metrics for the attribute.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + * @return The metrics. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics getMetrics() { + return metrics_ == null ? com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance() : metrics_; + } + /** + *
+   * Share and index metrics for the attribute.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder getMetricsOrBuilder() { + return getMetrics(); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (attributeMetadata_ != null) { + output.writeMessage(1, getAttributeMetadata()); + } + if (metrics_ != null) { + output.writeMessage(2, getMetrics()); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (attributeMetadata_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getAttributeMetadata()); + } + if (metrics_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getMetrics()); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.AudienceCompositionAttribute)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.AudienceCompositionAttribute other = (com.google.ads.googleads.v11.services.AudienceCompositionAttribute) obj; + + if (hasAttributeMetadata() != other.hasAttributeMetadata()) return false; + if (hasAttributeMetadata()) { + if (!getAttributeMetadata() + .equals(other.getAttributeMetadata())) return false; + } + if (hasMetrics() != other.hasMetrics()) return false; + if (hasMetrics()) { + if (!getMetrics() + .equals(other.getMetrics())) return false; + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasAttributeMetadata()) { + hash = (37 * hash) + ATTRIBUTE_METADATA_FIELD_NUMBER; + hash = (53 * hash) + getAttributeMetadata().hashCode(); + } + if (hasMetrics()) { + hash = (37 * hash) + METRICS_FIELD_NUMBER; + hash = (53 * hash) + getMetrics().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.AudienceCompositionAttribute prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * An audience attribute with metadata and metrics.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionAttribute} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.AudienceCompositionAttribute) + com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionAttribute.class, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.AudienceCompositionAttribute.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (attributeMetadataBuilder_ == null) { + attributeMetadata_ = null; + } else { + attributeMetadata_ = null; + attributeMetadataBuilder_ = null; + } + if (metricsBuilder_ == null) { + metrics_ = null; + } else { + metrics_ = null; + metricsBuilder_ = null; + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.AudienceCompositionAttribute.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute build() { + com.google.ads.googleads.v11.services.AudienceCompositionAttribute result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute buildPartial() { + com.google.ads.googleads.v11.services.AudienceCompositionAttribute result = new com.google.ads.googleads.v11.services.AudienceCompositionAttribute(this); + if (attributeMetadataBuilder_ == null) { + result.attributeMetadata_ = attributeMetadata_; + } else { + result.attributeMetadata_ = attributeMetadataBuilder_.build(); + } + if (metricsBuilder_ == null) { + result.metrics_ = metrics_; + } else { + result.metrics_ = metricsBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.AudienceCompositionAttribute) { + return mergeFrom((com.google.ads.googleads.v11.services.AudienceCompositionAttribute)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceCompositionAttribute other) { + if (other == com.google.ads.googleads.v11.services.AudienceCompositionAttribute.getDefaultInstance()) return this; + if (other.hasAttributeMetadata()) { + mergeAttributeMetadata(other.getAttributeMetadata()); + } + if (other.hasMetrics()) { + mergeMetrics(other.getMetrics()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.AudienceCompositionAttribute parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.AudienceCompositionAttribute) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attributeMetadata_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata, com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.Builder, com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadataOrBuilder> attributeMetadataBuilder_; + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + * @return Whether the attributeMetadata field is set. + */ + public boolean hasAttributeMetadata() { + return attributeMetadataBuilder_ != null || attributeMetadata_ != null; + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + * @return The attributeMetadata. + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata getAttributeMetadata() { + if (attributeMetadataBuilder_ == null) { + return attributeMetadata_ == null ? com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.getDefaultInstance() : attributeMetadata_; + } else { + return attributeMetadataBuilder_.getMessage(); + } + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + public Builder setAttributeMetadata(com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata value) { + if (attributeMetadataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + attributeMetadata_ = value; + onChanged(); + } else { + attributeMetadataBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + public Builder setAttributeMetadata( + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.Builder builderForValue) { + if (attributeMetadataBuilder_ == null) { + attributeMetadata_ = builderForValue.build(); + onChanged(); + } else { + attributeMetadataBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + public Builder mergeAttributeMetadata(com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata value) { + if (attributeMetadataBuilder_ == null) { + if (attributeMetadata_ != null) { + attributeMetadata_ = + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.newBuilder(attributeMetadata_).mergeFrom(value).buildPartial(); + } else { + attributeMetadata_ = value; + } + onChanged(); + } else { + attributeMetadataBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + public Builder clearAttributeMetadata() { + if (attributeMetadataBuilder_ == null) { + attributeMetadata_ = null; + onChanged(); + } else { + attributeMetadata_ = null; + attributeMetadataBuilder_ = null; + } + + return this; + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.Builder getAttributeMetadataBuilder() { + + onChanged(); + return getAttributeMetadataFieldBuilder().getBuilder(); + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadataOrBuilder getAttributeMetadataOrBuilder() { + if (attributeMetadataBuilder_ != null) { + return attributeMetadataBuilder_.getMessageOrBuilder(); + } else { + return attributeMetadata_ == null ? + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.getDefaultInstance() : attributeMetadata_; + } + } + /** + *
+     * The attribute with its metadata.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata, com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.Builder, com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadataOrBuilder> + getAttributeMetadataFieldBuilder() { + if (attributeMetadataBuilder_ == null) { + attributeMetadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata, com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.Builder, com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadataOrBuilder>( + getAttributeMetadata(), + getParentForChildren(), + isClean()); + attributeMetadata_ = null; + } + return attributeMetadataBuilder_; + } + + private com.google.ads.googleads.v11.services.AudienceCompositionMetrics metrics_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionMetrics, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder, com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder> metricsBuilder_; + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + * @return Whether the metrics field is set. + */ + public boolean hasMetrics() { + return metricsBuilder_ != null || metrics_ != null; + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + * @return The metrics. + */ + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics getMetrics() { + if (metricsBuilder_ == null) { + return metrics_ == null ? com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance() : metrics_; + } else { + return metricsBuilder_.getMessage(); + } + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + public Builder setMetrics(com.google.ads.googleads.v11.services.AudienceCompositionMetrics value) { + if (metricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + metrics_ = value; + onChanged(); + } else { + metricsBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + public Builder setMetrics( + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder builderForValue) { + if (metricsBuilder_ == null) { + metrics_ = builderForValue.build(); + onChanged(); + } else { + metricsBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + public Builder mergeMetrics(com.google.ads.googleads.v11.services.AudienceCompositionMetrics value) { + if (metricsBuilder_ == null) { + if (metrics_ != null) { + metrics_ = + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.newBuilder(metrics_).mergeFrom(value).buildPartial(); + } else { + metrics_ = value; + } + onChanged(); + } else { + metricsBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + public Builder clearMetrics() { + if (metricsBuilder_ == null) { + metrics_ = null; + onChanged(); + } else { + metrics_ = null; + metricsBuilder_ = null; + } + + return this; + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder getMetricsBuilder() { + + onChanged(); + return getMetricsFieldBuilder().getBuilder(); + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder getMetricsOrBuilder() { + if (metricsBuilder_ != null) { + return metricsBuilder_.getMessageOrBuilder(); + } else { + return metrics_ == null ? + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance() : metrics_; + } + } + /** + *
+     * Share and index metrics for the attribute.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionMetrics, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder, com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder> + getMetricsFieldBuilder() { + if (metricsBuilder_ == null) { + metricsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionMetrics, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder, com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder>( + getMetrics(), + getParentForChildren(), + isClean()); + metrics_ = null; + } + return metricsBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.AudienceCompositionAttribute) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.AudienceCompositionAttribute) + private static final com.google.ads.googleads.v11.services.AudienceCompositionAttribute DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.AudienceCompositionAttribute(); + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionAttribute getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AudienceCompositionAttribute parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AudienceCompositionAttribute(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeCluster.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeCluster.java new file mode 100644 index 0000000000..039cd73eb0 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeCluster.java @@ -0,0 +1,1323 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * A collection of related attributes, with metadata and metrics, in an audience
+ * composition insights report.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionAttributeCluster} + */ +public final class AudienceCompositionAttributeCluster extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) + AudienceCompositionAttributeClusterOrBuilder { +private static final long serialVersionUID = 0L; + // Use AudienceCompositionAttributeCluster.newBuilder() to construct. + private AudienceCompositionAttributeCluster(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AudienceCompositionAttributeCluster() { + clusterDisplayName_ = ""; + attributes_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AudienceCompositionAttributeCluster(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AudienceCompositionAttributeCluster( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + clusterDisplayName_ = s; + break; + } + case 26: { + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder subBuilder = null; + if (clusterMetrics_ != null) { + subBuilder = clusterMetrics_.toBuilder(); + } + clusterMetrics_ = input.readMessage(com.google.ads.googleads.v11.services.AudienceCompositionMetrics.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(clusterMetrics_); + clusterMetrics_ = subBuilder.buildPartial(); + } + + break; + } + case 34: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + attributes_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + attributes_.add( + input.readMessage(com.google.ads.googleads.v11.services.AudienceCompositionAttribute.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + attributes_ = java.util.Collections.unmodifiableList(attributes_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.class, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder.class); + } + + public static final int CLUSTER_DISPLAY_NAME_FIELD_NUMBER = 1; + private volatile java.lang.Object clusterDisplayName_; + /** + *
+   * The name of this cluster of attributes
+   * 
+ * + * string cluster_display_name = 1; + * @return The clusterDisplayName. + */ + @java.lang.Override + public java.lang.String getClusterDisplayName() { + java.lang.Object ref = clusterDisplayName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + clusterDisplayName_ = s; + return s; + } + } + /** + *
+   * The name of this cluster of attributes
+   * 
+ * + * string cluster_display_name = 1; + * @return The bytes for clusterDisplayName. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getClusterDisplayNameBytes() { + java.lang.Object ref = clusterDisplayName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + clusterDisplayName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int CLUSTER_METRICS_FIELD_NUMBER = 3; + private com.google.ads.googleads.v11.services.AudienceCompositionMetrics clusterMetrics_; + /** + *
+   * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+   * cluster_metrics are metrics associated with the cluster as a whole.
+   * For other dimensions, this field is unset.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + * @return Whether the clusterMetrics field is set. + */ + @java.lang.Override + public boolean hasClusterMetrics() { + return clusterMetrics_ != null; + } + /** + *
+   * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+   * cluster_metrics are metrics associated with the cluster as a whole.
+   * For other dimensions, this field is unset.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + * @return The clusterMetrics. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics getClusterMetrics() { + return clusterMetrics_ == null ? com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance() : clusterMetrics_; + } + /** + *
+   * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+   * cluster_metrics are metrics associated with the cluster as a whole.
+   * For other dimensions, this field is unset.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder getClusterMetricsOrBuilder() { + return getClusterMetrics(); + } + + public static final int ATTRIBUTES_FIELD_NUMBER = 4; + private java.util.List attributes_; + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + @java.lang.Override + public java.util.List getAttributesList() { + return attributes_; + } + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + @java.lang.Override + public java.util.List + getAttributesOrBuilderList() { + return attributes_; + } + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + @java.lang.Override + public int getAttributesCount() { + return attributes_.size(); + } + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute getAttributes(int index) { + return attributes_.get(index); + } + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder getAttributesOrBuilder( + int index) { + return attributes_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(clusterDisplayName_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, clusterDisplayName_); + } + if (clusterMetrics_ != null) { + output.writeMessage(3, getClusterMetrics()); + } + for (int i = 0; i < attributes_.size(); i++) { + output.writeMessage(4, attributes_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(clusterDisplayName_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, clusterDisplayName_); + } + if (clusterMetrics_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getClusterMetrics()); + } + for (int i = 0; i < attributes_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, attributes_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster other = (com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) obj; + + if (!getClusterDisplayName() + .equals(other.getClusterDisplayName())) return false; + if (hasClusterMetrics() != other.hasClusterMetrics()) return false; + if (hasClusterMetrics()) { + if (!getClusterMetrics() + .equals(other.getClusterMetrics())) return false; + } + if (!getAttributesList() + .equals(other.getAttributesList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + CLUSTER_DISPLAY_NAME_FIELD_NUMBER; + hash = (53 * hash) + getClusterDisplayName().hashCode(); + if (hasClusterMetrics()) { + hash = (37 * hash) + CLUSTER_METRICS_FIELD_NUMBER; + hash = (53 * hash) + getClusterMetrics().hashCode(); + } + if (getAttributesCount() > 0) { + hash = (37 * hash) + ATTRIBUTES_FIELD_NUMBER; + hash = (53 * hash) + getAttributesList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * A collection of related attributes, with metadata and metrics, in an audience
+   * composition insights report.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionAttributeCluster} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) + com.google.ads.googleads.v11.services.AudienceCompositionAttributeClusterOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.class, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getAttributesFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + clusterDisplayName_ = ""; + + if (clusterMetricsBuilder_ == null) { + clusterMetrics_ = null; + } else { + clusterMetrics_ = null; + clusterMetricsBuilder_ = null; + } + if (attributesBuilder_ == null) { + attributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + attributesBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster build() { + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster buildPartial() { + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster result = new com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster(this); + int from_bitField0_ = bitField0_; + result.clusterDisplayName_ = clusterDisplayName_; + if (clusterMetricsBuilder_ == null) { + result.clusterMetrics_ = clusterMetrics_; + } else { + result.clusterMetrics_ = clusterMetricsBuilder_.build(); + } + if (attributesBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + attributes_ = java.util.Collections.unmodifiableList(attributes_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.attributes_ = attributes_; + } else { + result.attributes_ = attributesBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) { + return mergeFrom((com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster other) { + if (other == com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.getDefaultInstance()) return this; + if (!other.getClusterDisplayName().isEmpty()) { + clusterDisplayName_ = other.clusterDisplayName_; + onChanged(); + } + if (other.hasClusterMetrics()) { + mergeClusterMetrics(other.getClusterMetrics()); + } + if (attributesBuilder_ == null) { + if (!other.attributes_.isEmpty()) { + if (attributes_.isEmpty()) { + attributes_ = other.attributes_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureAttributesIsMutable(); + attributes_.addAll(other.attributes_); + } + onChanged(); + } + } else { + if (!other.attributes_.isEmpty()) { + if (attributesBuilder_.isEmpty()) { + attributesBuilder_.dispose(); + attributesBuilder_ = null; + attributes_ = other.attributes_; + bitField0_ = (bitField0_ & ~0x00000001); + attributesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getAttributesFieldBuilder() : null; + } else { + attributesBuilder_.addAllMessages(other.attributes_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.lang.Object clusterDisplayName_ = ""; + /** + *
+     * The name of this cluster of attributes
+     * 
+ * + * string cluster_display_name = 1; + * @return The clusterDisplayName. + */ + public java.lang.String getClusterDisplayName() { + java.lang.Object ref = clusterDisplayName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + clusterDisplayName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * The name of this cluster of attributes
+     * 
+ * + * string cluster_display_name = 1; + * @return The bytes for clusterDisplayName. + */ + public com.google.protobuf.ByteString + getClusterDisplayNameBytes() { + java.lang.Object ref = clusterDisplayName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + clusterDisplayName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * The name of this cluster of attributes
+     * 
+ * + * string cluster_display_name = 1; + * @param value The clusterDisplayName to set. + * @return This builder for chaining. + */ + public Builder setClusterDisplayName( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + clusterDisplayName_ = value; + onChanged(); + return this; + } + /** + *
+     * The name of this cluster of attributes
+     * 
+ * + * string cluster_display_name = 1; + * @return This builder for chaining. + */ + public Builder clearClusterDisplayName() { + + clusterDisplayName_ = getDefaultInstance().getClusterDisplayName(); + onChanged(); + return this; + } + /** + *
+     * The name of this cluster of attributes
+     * 
+ * + * string cluster_display_name = 1; + * @param value The bytes for clusterDisplayName to set. + * @return This builder for chaining. + */ + public Builder setClusterDisplayNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + clusterDisplayName_ = value; + onChanged(); + return this; + } + + private com.google.ads.googleads.v11.services.AudienceCompositionMetrics clusterMetrics_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionMetrics, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder, com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder> clusterMetricsBuilder_; + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + * @return Whether the clusterMetrics field is set. + */ + public boolean hasClusterMetrics() { + return clusterMetricsBuilder_ != null || clusterMetrics_ != null; + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + * @return The clusterMetrics. + */ + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics getClusterMetrics() { + if (clusterMetricsBuilder_ == null) { + return clusterMetrics_ == null ? com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance() : clusterMetrics_; + } else { + return clusterMetricsBuilder_.getMessage(); + } + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + public Builder setClusterMetrics(com.google.ads.googleads.v11.services.AudienceCompositionMetrics value) { + if (clusterMetricsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + clusterMetrics_ = value; + onChanged(); + } else { + clusterMetricsBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + public Builder setClusterMetrics( + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder builderForValue) { + if (clusterMetricsBuilder_ == null) { + clusterMetrics_ = builderForValue.build(); + onChanged(); + } else { + clusterMetricsBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + public Builder mergeClusterMetrics(com.google.ads.googleads.v11.services.AudienceCompositionMetrics value) { + if (clusterMetricsBuilder_ == null) { + if (clusterMetrics_ != null) { + clusterMetrics_ = + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.newBuilder(clusterMetrics_).mergeFrom(value).buildPartial(); + } else { + clusterMetrics_ = value; + } + onChanged(); + } else { + clusterMetricsBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + public Builder clearClusterMetrics() { + if (clusterMetricsBuilder_ == null) { + clusterMetrics_ = null; + onChanged(); + } else { + clusterMetrics_ = null; + clusterMetricsBuilder_ = null; + } + + return this; + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder getClusterMetricsBuilder() { + + onChanged(); + return getClusterMetricsFieldBuilder().getBuilder(); + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder getClusterMetricsOrBuilder() { + if (clusterMetricsBuilder_ != null) { + return clusterMetricsBuilder_.getMessageOrBuilder(); + } else { + return clusterMetrics_ == null ? + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance() : clusterMetrics_; + } + } + /** + *
+     * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+     * cluster_metrics are metrics associated with the cluster as a whole.
+     * For other dimensions, this field is unset.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionMetrics, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder, com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder> + getClusterMetricsFieldBuilder() { + if (clusterMetricsBuilder_ == null) { + clusterMetricsBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionMetrics, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder, com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder>( + getClusterMetrics(), + getParentForChildren(), + isClean()); + clusterMetrics_ = null; + } + return clusterMetricsBuilder_; + } + + private java.util.List attributes_ = + java.util.Collections.emptyList(); + private void ensureAttributesIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + attributes_ = new java.util.ArrayList(attributes_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttribute, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder> attributesBuilder_; + + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public java.util.List getAttributesList() { + if (attributesBuilder_ == null) { + return java.util.Collections.unmodifiableList(attributes_); + } else { + return attributesBuilder_.getMessageList(); + } + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public int getAttributesCount() { + if (attributesBuilder_ == null) { + return attributes_.size(); + } else { + return attributesBuilder_.getCount(); + } + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute getAttributes(int index) { + if (attributesBuilder_ == null) { + return attributes_.get(index); + } else { + return attributesBuilder_.getMessage(index); + } + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder setAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute value) { + if (attributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttributesIsMutable(); + attributes_.set(index, value); + onChanged(); + } else { + attributesBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder setAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder builderForValue) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.set(index, builderForValue.build()); + onChanged(); + } else { + attributesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder addAttributes(com.google.ads.googleads.v11.services.AudienceCompositionAttribute value) { + if (attributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttributesIsMutable(); + attributes_.add(value); + onChanged(); + } else { + attributesBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder addAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute value) { + if (attributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttributesIsMutable(); + attributes_.add(index, value); + onChanged(); + } else { + attributesBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder addAttributes( + com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder builderForValue) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.add(builderForValue.build()); + onChanged(); + } else { + attributesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder addAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder builderForValue) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.add(index, builderForValue.build()); + onChanged(); + } else { + attributesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder addAllAttributes( + java.lang.Iterable values) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, attributes_); + onChanged(); + } else { + attributesBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder clearAttributes() { + if (attributesBuilder_ == null) { + attributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + attributesBuilder_.clear(); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public Builder removeAttributes(int index) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.remove(index); + onChanged(); + } else { + attributesBuilder_.remove(index); + } + return this; + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder getAttributesBuilder( + int index) { + return getAttributesFieldBuilder().getBuilder(index); + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder getAttributesOrBuilder( + int index) { + if (attributesBuilder_ == null) { + return attributes_.get(index); } else { + return attributesBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public java.util.List + getAttributesOrBuilderList() { + if (attributesBuilder_ != null) { + return attributesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(attributes_); + } + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder addAttributesBuilder() { + return getAttributesFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.AudienceCompositionAttribute.getDefaultInstance()); + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder addAttributesBuilder( + int index) { + return getAttributesFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.getDefaultInstance()); + } + /** + *
+     * The individual attributes that make up this cluster, with metadata and
+     * metrics.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + public java.util.List + getAttributesBuilderList() { + return getAttributesFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttribute, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder> + getAttributesFieldBuilder() { + if (attributesBuilder_ == null) { + attributesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttribute, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder>( + attributes_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + attributes_ = null; + } + return attributesBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) + private static final com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster(); + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AudienceCompositionAttributeCluster parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AudienceCompositionAttributeCluster(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeClusterOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeClusterOrBuilder.java new file mode 100644 index 0000000000..74ee3392e9 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeClusterOrBuilder.java @@ -0,0 +1,111 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface AudienceCompositionAttributeClusterOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.AudienceCompositionAttributeCluster) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The name of this cluster of attributes
+   * 
+ * + * string cluster_display_name = 1; + * @return The clusterDisplayName. + */ + java.lang.String getClusterDisplayName(); + /** + *
+   * The name of this cluster of attributes
+   * 
+ * + * string cluster_display_name = 1; + * @return The bytes for clusterDisplayName. + */ + com.google.protobuf.ByteString + getClusterDisplayNameBytes(); + + /** + *
+   * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+   * cluster_metrics are metrics associated with the cluster as a whole.
+   * For other dimensions, this field is unset.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + * @return Whether the clusterMetrics field is set. + */ + boolean hasClusterMetrics(); + /** + *
+   * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+   * cluster_metrics are metrics associated with the cluster as a whole.
+   * For other dimensions, this field is unset.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + * @return The clusterMetrics. + */ + com.google.ads.googleads.v11.services.AudienceCompositionMetrics getClusterMetrics(); + /** + *
+   * If the dimension associated with this cluster is YOUTUBE_CHANNEL, then
+   * cluster_metrics are metrics associated with the cluster as a whole.
+   * For other dimensions, this field is unset.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics cluster_metrics = 3; + */ + com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder getClusterMetricsOrBuilder(); + + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + java.util.List + getAttributesList(); + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + com.google.ads.googleads.v11.services.AudienceCompositionAttribute getAttributes(int index); + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + int getAttributesCount(); + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + java.util.List + getAttributesOrBuilderList(); + /** + *
+   * The individual attributes that make up this cluster, with metadata and
+   * metrics.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute attributes = 4; + */ + com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder getAttributesOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeOrBuilder.java new file mode 100644 index 0000000000..022e28a6b0 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionAttributeOrBuilder.java @@ -0,0 +1,63 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface AudienceCompositionAttributeOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.AudienceCompositionAttribute) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The attribute with its metadata.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + * @return Whether the attributeMetadata field is set. + */ + boolean hasAttributeMetadata(); + /** + *
+   * The attribute with its metadata.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + * @return The attributeMetadata. + */ + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata getAttributeMetadata(); + /** + *
+   * The attribute with its metadata.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata attribute_metadata = 1; + */ + com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadataOrBuilder getAttributeMetadataOrBuilder(); + + /** + *
+   * Share and index metrics for the attribute.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + * @return Whether the metrics field is set. + */ + boolean hasMetrics(); + /** + *
+   * Share and index metrics for the attribute.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + * @return The metrics. + */ + com.google.ads.googleads.v11.services.AudienceCompositionMetrics getMetrics(); + /** + *
+   * Share and index metrics for the attribute.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceCompositionMetrics metrics = 2; + */ + com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder getMetricsOrBuilder(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionMetrics.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionMetrics.java new file mode 100644 index 0000000000..2336dd5898 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionMetrics.java @@ -0,0 +1,771 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * The share and index metrics associated with an attribute in an audience
+ * composition insights report.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionMetrics} + */ +public final class AudienceCompositionMetrics extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.AudienceCompositionMetrics) + AudienceCompositionMetricsOrBuilder { +private static final long serialVersionUID = 0L; + // Use AudienceCompositionMetrics.newBuilder() to construct. + private AudienceCompositionMetrics(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AudienceCompositionMetrics() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AudienceCompositionMetrics(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AudienceCompositionMetrics( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 9: { + + baselineAudienceShare_ = input.readDouble(); + break; + } + case 17: { + + audienceShare_ = input.readDouble(); + break; + } + case 25: { + + index_ = input.readDouble(); + break; + } + case 33: { + + score_ = input.readDouble(); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.class, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder.class); + } + + public static final int BASELINE_AUDIENCE_SHARE_FIELD_NUMBER = 1; + private double baselineAudienceShare_; + /** + *
+   * The fraction (from 0 to 1 inclusive) of the baseline audience that match
+   * the attribute.
+   * 
+ * + * double baseline_audience_share = 1; + * @return The baselineAudienceShare. + */ + @java.lang.Override + public double getBaselineAudienceShare() { + return baselineAudienceShare_; + } + + public static final int AUDIENCE_SHARE_FIELD_NUMBER = 2; + private double audienceShare_; + /** + *
+   * The fraction (from 0 to 1 inclusive) of the specific audience that match
+   * the attribute.
+   * 
+ * + * double audience_share = 2; + * @return The audienceShare. + */ + @java.lang.Override + public double getAudienceShare() { + return audienceShare_; + } + + public static final int INDEX_FIELD_NUMBER = 3; + private double index_; + /** + *
+   * The ratio of audience_share to baseline_audience_share, or zero if this
+   * ratio is undefined or is not meaningful.
+   * 
+ * + * double index = 3; + * @return The index. + */ + @java.lang.Override + public double getIndex() { + return index_; + } + + public static final int SCORE_FIELD_NUMBER = 4; + private double score_; + /** + *
+   * A relevance score from 0 to 1 inclusive.
+   * 
+ * + * double score = 4; + * @return The score. + */ + @java.lang.Override + public double getScore() { + return score_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (java.lang.Double.doubleToRawLongBits(baselineAudienceShare_) != 0) { + output.writeDouble(1, baselineAudienceShare_); + } + if (java.lang.Double.doubleToRawLongBits(audienceShare_) != 0) { + output.writeDouble(2, audienceShare_); + } + if (java.lang.Double.doubleToRawLongBits(index_) != 0) { + output.writeDouble(3, index_); + } + if (java.lang.Double.doubleToRawLongBits(score_) != 0) { + output.writeDouble(4, score_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (java.lang.Double.doubleToRawLongBits(baselineAudienceShare_) != 0) { + size += com.google.protobuf.CodedOutputStream + .computeDoubleSize(1, baselineAudienceShare_); + } + if (java.lang.Double.doubleToRawLongBits(audienceShare_) != 0) { + size += com.google.protobuf.CodedOutputStream + .computeDoubleSize(2, audienceShare_); + } + if (java.lang.Double.doubleToRawLongBits(index_) != 0) { + size += com.google.protobuf.CodedOutputStream + .computeDoubleSize(3, index_); + } + if (java.lang.Double.doubleToRawLongBits(score_) != 0) { + size += com.google.protobuf.CodedOutputStream + .computeDoubleSize(4, score_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.AudienceCompositionMetrics)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.AudienceCompositionMetrics other = (com.google.ads.googleads.v11.services.AudienceCompositionMetrics) obj; + + if (java.lang.Double.doubleToLongBits(getBaselineAudienceShare()) + != java.lang.Double.doubleToLongBits( + other.getBaselineAudienceShare())) return false; + if (java.lang.Double.doubleToLongBits(getAudienceShare()) + != java.lang.Double.doubleToLongBits( + other.getAudienceShare())) return false; + if (java.lang.Double.doubleToLongBits(getIndex()) + != java.lang.Double.doubleToLongBits( + other.getIndex())) return false; + if (java.lang.Double.doubleToLongBits(getScore()) + != java.lang.Double.doubleToLongBits( + other.getScore())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + BASELINE_AUDIENCE_SHARE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + java.lang.Double.doubleToLongBits(getBaselineAudienceShare())); + hash = (37 * hash) + AUDIENCE_SHARE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + java.lang.Double.doubleToLongBits(getAudienceShare())); + hash = (37 * hash) + INDEX_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + java.lang.Double.doubleToLongBits(getIndex())); + hash = (37 * hash) + SCORE_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + java.lang.Double.doubleToLongBits(getScore())); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.AudienceCompositionMetrics prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * The share and index metrics associated with an attribute in an audience
+   * composition insights report.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionMetrics} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.AudienceCompositionMetrics) + com.google.ads.googleads.v11.services.AudienceCompositionMetricsOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionMetrics.class, com.google.ads.googleads.v11.services.AudienceCompositionMetrics.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.AudienceCompositionMetrics.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + baselineAudienceShare_ = 0D; + + audienceShare_ = 0D; + + index_ = 0D; + + score_ = 0D; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics build() { + com.google.ads.googleads.v11.services.AudienceCompositionMetrics result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics buildPartial() { + com.google.ads.googleads.v11.services.AudienceCompositionMetrics result = new com.google.ads.googleads.v11.services.AudienceCompositionMetrics(this); + result.baselineAudienceShare_ = baselineAudienceShare_; + result.audienceShare_ = audienceShare_; + result.index_ = index_; + result.score_ = score_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.AudienceCompositionMetrics) { + return mergeFrom((com.google.ads.googleads.v11.services.AudienceCompositionMetrics)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceCompositionMetrics other) { + if (other == com.google.ads.googleads.v11.services.AudienceCompositionMetrics.getDefaultInstance()) return this; + if (other.getBaselineAudienceShare() != 0D) { + setBaselineAudienceShare(other.getBaselineAudienceShare()); + } + if (other.getAudienceShare() != 0D) { + setAudienceShare(other.getAudienceShare()); + } + if (other.getIndex() != 0D) { + setIndex(other.getIndex()); + } + if (other.getScore() != 0D) { + setScore(other.getScore()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.AudienceCompositionMetrics parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.AudienceCompositionMetrics) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private double baselineAudienceShare_ ; + /** + *
+     * The fraction (from 0 to 1 inclusive) of the baseline audience that match
+     * the attribute.
+     * 
+ * + * double baseline_audience_share = 1; + * @return The baselineAudienceShare. + */ + @java.lang.Override + public double getBaselineAudienceShare() { + return baselineAudienceShare_; + } + /** + *
+     * The fraction (from 0 to 1 inclusive) of the baseline audience that match
+     * the attribute.
+     * 
+ * + * double baseline_audience_share = 1; + * @param value The baselineAudienceShare to set. + * @return This builder for chaining. + */ + public Builder setBaselineAudienceShare(double value) { + + baselineAudienceShare_ = value; + onChanged(); + return this; + } + /** + *
+     * The fraction (from 0 to 1 inclusive) of the baseline audience that match
+     * the attribute.
+     * 
+ * + * double baseline_audience_share = 1; + * @return This builder for chaining. + */ + public Builder clearBaselineAudienceShare() { + + baselineAudienceShare_ = 0D; + onChanged(); + return this; + } + + private double audienceShare_ ; + /** + *
+     * The fraction (from 0 to 1 inclusive) of the specific audience that match
+     * the attribute.
+     * 
+ * + * double audience_share = 2; + * @return The audienceShare. + */ + @java.lang.Override + public double getAudienceShare() { + return audienceShare_; + } + /** + *
+     * The fraction (from 0 to 1 inclusive) of the specific audience that match
+     * the attribute.
+     * 
+ * + * double audience_share = 2; + * @param value The audienceShare to set. + * @return This builder for chaining. + */ + public Builder setAudienceShare(double value) { + + audienceShare_ = value; + onChanged(); + return this; + } + /** + *
+     * The fraction (from 0 to 1 inclusive) of the specific audience that match
+     * the attribute.
+     * 
+ * + * double audience_share = 2; + * @return This builder for chaining. + */ + public Builder clearAudienceShare() { + + audienceShare_ = 0D; + onChanged(); + return this; + } + + private double index_ ; + /** + *
+     * The ratio of audience_share to baseline_audience_share, or zero if this
+     * ratio is undefined or is not meaningful.
+     * 
+ * + * double index = 3; + * @return The index. + */ + @java.lang.Override + public double getIndex() { + return index_; + } + /** + *
+     * The ratio of audience_share to baseline_audience_share, or zero if this
+     * ratio is undefined or is not meaningful.
+     * 
+ * + * double index = 3; + * @param value The index to set. + * @return This builder for chaining. + */ + public Builder setIndex(double value) { + + index_ = value; + onChanged(); + return this; + } + /** + *
+     * The ratio of audience_share to baseline_audience_share, or zero if this
+     * ratio is undefined or is not meaningful.
+     * 
+ * + * double index = 3; + * @return This builder for chaining. + */ + public Builder clearIndex() { + + index_ = 0D; + onChanged(); + return this; + } + + private double score_ ; + /** + *
+     * A relevance score from 0 to 1 inclusive.
+     * 
+ * + * double score = 4; + * @return The score. + */ + @java.lang.Override + public double getScore() { + return score_; + } + /** + *
+     * A relevance score from 0 to 1 inclusive.
+     * 
+ * + * double score = 4; + * @param value The score to set. + * @return This builder for chaining. + */ + public Builder setScore(double value) { + + score_ = value; + onChanged(); + return this; + } + /** + *
+     * A relevance score from 0 to 1 inclusive.
+     * 
+ * + * double score = 4; + * @return This builder for chaining. + */ + public Builder clearScore() { + + score_ = 0D; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.AudienceCompositionMetrics) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.AudienceCompositionMetrics) + private static final com.google.ads.googleads.v11.services.AudienceCompositionMetrics DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.AudienceCompositionMetrics(); + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionMetrics getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AudienceCompositionMetrics parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AudienceCompositionMetrics(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionMetrics getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionMetricsOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionMetricsOrBuilder.java new file mode 100644 index 0000000000..361285e1c1 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionMetricsOrBuilder.java @@ -0,0 +1,52 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface AudienceCompositionMetricsOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.AudienceCompositionMetrics) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The fraction (from 0 to 1 inclusive) of the baseline audience that match
+   * the attribute.
+   * 
+ * + * double baseline_audience_share = 1; + * @return The baselineAudienceShare. + */ + double getBaselineAudienceShare(); + + /** + *
+   * The fraction (from 0 to 1 inclusive) of the specific audience that match
+   * the attribute.
+   * 
+ * + * double audience_share = 2; + * @return The audienceShare. + */ + double getAudienceShare(); + + /** + *
+   * The ratio of audience_share to baseline_audience_share, or zero if this
+   * ratio is undefined or is not meaningful.
+   * 
+ * + * double index = 3; + * @return The index. + */ + double getIndex(); + + /** + *
+   * A relevance score from 0 to 1 inclusive.
+   * 
+ * + * double score = 4; + * @return The score. + */ + double getScore(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionSection.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionSection.java new file mode 100644 index 0000000000..46af50a1e5 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionSection.java @@ -0,0 +1,1484 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * A collection of related attributes of the same type in an audience
+ * composition insights report.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionSection} + */ +public final class AudienceCompositionSection extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.AudienceCompositionSection) + AudienceCompositionSectionOrBuilder { +private static final long serialVersionUID = 0L; + // Use AudienceCompositionSection.newBuilder() to construct. + private AudienceCompositionSection(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AudienceCompositionSection() { + dimension_ = 0; + topAttributes_ = java.util.Collections.emptyList(); + clusteredAttributes_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AudienceCompositionSection(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AudienceCompositionSection( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + int rawValue = input.readEnum(); + + dimension_ = rawValue; + break; + } + case 26: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + topAttributes_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + topAttributes_.add( + input.readMessage(com.google.ads.googleads.v11.services.AudienceCompositionAttribute.parser(), extensionRegistry)); + break; + } + case 34: { + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + clusteredAttributes_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000002; + } + clusteredAttributes_.add( + input.readMessage(com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + topAttributes_ = java.util.Collections.unmodifiableList(topAttributes_); + } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + clusteredAttributes_ = java.util.Collections.unmodifiableList(clusteredAttributes_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionSection.class, com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder.class); + } + + public static final int DIMENSION_FIELD_NUMBER = 1; + private int dimension_; + /** + *
+   * The type of the attributes in this section.
+   * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @return The enum numeric value on the wire for dimension. + */ + @java.lang.Override public int getDimensionValue() { + return dimension_; + } + /** + *
+   * The type of the attributes in this section.
+   * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @return The dimension. + */ + @java.lang.Override public com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension getDimension() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension result = com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.valueOf(dimension_); + return result == null ? com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.UNRECOGNIZED : result; + } + + public static final int TOP_ATTRIBUTES_FIELD_NUMBER = 3; + private java.util.List topAttributes_; + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + @java.lang.Override + public java.util.List getTopAttributesList() { + return topAttributes_; + } + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + @java.lang.Override + public java.util.List + getTopAttributesOrBuilderList() { + return topAttributes_; + } + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + @java.lang.Override + public int getTopAttributesCount() { + return topAttributes_.size(); + } + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute getTopAttributes(int index) { + return topAttributes_.get(index); + } + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder getTopAttributesOrBuilder( + int index) { + return topAttributes_.get(index); + } + + public static final int CLUSTERED_ATTRIBUTES_FIELD_NUMBER = 4; + private java.util.List clusteredAttributes_; + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + @java.lang.Override + public java.util.List getClusteredAttributesList() { + return clusteredAttributes_; + } + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + @java.lang.Override + public java.util.List + getClusteredAttributesOrBuilderList() { + return clusteredAttributes_; + } + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + @java.lang.Override + public int getClusteredAttributesCount() { + return clusteredAttributes_.size(); + } + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster getClusteredAttributes(int index) { + return clusteredAttributes_.get(index); + } + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeClusterOrBuilder getClusteredAttributesOrBuilder( + int index) { + return clusteredAttributes_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (dimension_ != com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.UNSPECIFIED.getNumber()) { + output.writeEnum(1, dimension_); + } + for (int i = 0; i < topAttributes_.size(); i++) { + output.writeMessage(3, topAttributes_.get(i)); + } + for (int i = 0; i < clusteredAttributes_.size(); i++) { + output.writeMessage(4, clusteredAttributes_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (dimension_ != com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.UNSPECIFIED.getNumber()) { + size += com.google.protobuf.CodedOutputStream + .computeEnumSize(1, dimension_); + } + for (int i = 0; i < topAttributes_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, topAttributes_.get(i)); + } + for (int i = 0; i < clusteredAttributes_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, clusteredAttributes_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.AudienceCompositionSection)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.AudienceCompositionSection other = (com.google.ads.googleads.v11.services.AudienceCompositionSection) obj; + + if (dimension_ != other.dimension_) return false; + if (!getTopAttributesList() + .equals(other.getTopAttributesList())) return false; + if (!getClusteredAttributesList() + .equals(other.getClusteredAttributesList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DIMENSION_FIELD_NUMBER; + hash = (53 * hash) + dimension_; + if (getTopAttributesCount() > 0) { + hash = (37 * hash) + TOP_ATTRIBUTES_FIELD_NUMBER; + hash = (53 * hash) + getTopAttributesList().hashCode(); + } + if (getClusteredAttributesCount() > 0) { + hash = (37 * hash) + CLUSTERED_ATTRIBUTES_FIELD_NUMBER; + hash = (53 * hash) + getClusteredAttributesList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceCompositionSection parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.AudienceCompositionSection prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * A collection of related attributes of the same type in an audience
+   * composition insights report.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceCompositionSection} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.AudienceCompositionSection) + com.google.ads.googleads.v11.services.AudienceCompositionSectionOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceCompositionSection.class, com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.AudienceCompositionSection.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getTopAttributesFieldBuilder(); + getClusteredAttributesFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + dimension_ = 0; + + if (topAttributesBuilder_ == null) { + topAttributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + topAttributesBuilder_.clear(); + } + if (clusteredAttributesBuilder_ == null) { + clusteredAttributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + } else { + clusteredAttributesBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionSection getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.AudienceCompositionSection.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionSection build() { + com.google.ads.googleads.v11.services.AudienceCompositionSection result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionSection buildPartial() { + com.google.ads.googleads.v11.services.AudienceCompositionSection result = new com.google.ads.googleads.v11.services.AudienceCompositionSection(this); + int from_bitField0_ = bitField0_; + result.dimension_ = dimension_; + if (topAttributesBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + topAttributes_ = java.util.Collections.unmodifiableList(topAttributes_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.topAttributes_ = topAttributes_; + } else { + result.topAttributes_ = topAttributesBuilder_.build(); + } + if (clusteredAttributesBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + clusteredAttributes_ = java.util.Collections.unmodifiableList(clusteredAttributes_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.clusteredAttributes_ = clusteredAttributes_; + } else { + result.clusteredAttributes_ = clusteredAttributesBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.AudienceCompositionSection) { + return mergeFrom((com.google.ads.googleads.v11.services.AudienceCompositionSection)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceCompositionSection other) { + if (other == com.google.ads.googleads.v11.services.AudienceCompositionSection.getDefaultInstance()) return this; + if (other.dimension_ != 0) { + setDimensionValue(other.getDimensionValue()); + } + if (topAttributesBuilder_ == null) { + if (!other.topAttributes_.isEmpty()) { + if (topAttributes_.isEmpty()) { + topAttributes_ = other.topAttributes_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureTopAttributesIsMutable(); + topAttributes_.addAll(other.topAttributes_); + } + onChanged(); + } + } else { + if (!other.topAttributes_.isEmpty()) { + if (topAttributesBuilder_.isEmpty()) { + topAttributesBuilder_.dispose(); + topAttributesBuilder_ = null; + topAttributes_ = other.topAttributes_; + bitField0_ = (bitField0_ & ~0x00000001); + topAttributesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getTopAttributesFieldBuilder() : null; + } else { + topAttributesBuilder_.addAllMessages(other.topAttributes_); + } + } + } + if (clusteredAttributesBuilder_ == null) { + if (!other.clusteredAttributes_.isEmpty()) { + if (clusteredAttributes_.isEmpty()) { + clusteredAttributes_ = other.clusteredAttributes_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.addAll(other.clusteredAttributes_); + } + onChanged(); + } + } else { + if (!other.clusteredAttributes_.isEmpty()) { + if (clusteredAttributesBuilder_.isEmpty()) { + clusteredAttributesBuilder_.dispose(); + clusteredAttributesBuilder_ = null; + clusteredAttributes_ = other.clusteredAttributes_; + bitField0_ = (bitField0_ & ~0x00000002); + clusteredAttributesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getClusteredAttributesFieldBuilder() : null; + } else { + clusteredAttributesBuilder_.addAllMessages(other.clusteredAttributes_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.AudienceCompositionSection parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.AudienceCompositionSection) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private int dimension_ = 0; + /** + *
+     * The type of the attributes in this section.
+     * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @return The enum numeric value on the wire for dimension. + */ + @java.lang.Override public int getDimensionValue() { + return dimension_; + } + /** + *
+     * The type of the attributes in this section.
+     * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @param value The enum numeric value on the wire for dimension to set. + * @return This builder for chaining. + */ + public Builder setDimensionValue(int value) { + + dimension_ = value; + onChanged(); + return this; + } + /** + *
+     * The type of the attributes in this section.
+     * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @return The dimension. + */ + @java.lang.Override + public com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension getDimension() { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension result = com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.valueOf(dimension_); + return result == null ? com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.UNRECOGNIZED : result; + } + /** + *
+     * The type of the attributes in this section.
+     * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @param value The dimension to set. + * @return This builder for chaining. + */ + public Builder setDimension(com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension value) { + if (value == null) { + throw new NullPointerException(); + } + + dimension_ = value.getNumber(); + onChanged(); + return this; + } + /** + *
+     * The type of the attributes in this section.
+     * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @return This builder for chaining. + */ + public Builder clearDimension() { + + dimension_ = 0; + onChanged(); + return this; + } + + private java.util.List topAttributes_ = + java.util.Collections.emptyList(); + private void ensureTopAttributesIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + topAttributes_ = new java.util.ArrayList(topAttributes_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttribute, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder> topAttributesBuilder_; + + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public java.util.List getTopAttributesList() { + if (topAttributesBuilder_ == null) { + return java.util.Collections.unmodifiableList(topAttributes_); + } else { + return topAttributesBuilder_.getMessageList(); + } + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public int getTopAttributesCount() { + if (topAttributesBuilder_ == null) { + return topAttributes_.size(); + } else { + return topAttributesBuilder_.getCount(); + } + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute getTopAttributes(int index) { + if (topAttributesBuilder_ == null) { + return topAttributes_.get(index); + } else { + return topAttributesBuilder_.getMessage(index); + } + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder setTopAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute value) { + if (topAttributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTopAttributesIsMutable(); + topAttributes_.set(index, value); + onChanged(); + } else { + topAttributesBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder setTopAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder builderForValue) { + if (topAttributesBuilder_ == null) { + ensureTopAttributesIsMutable(); + topAttributes_.set(index, builderForValue.build()); + onChanged(); + } else { + topAttributesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder addTopAttributes(com.google.ads.googleads.v11.services.AudienceCompositionAttribute value) { + if (topAttributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTopAttributesIsMutable(); + topAttributes_.add(value); + onChanged(); + } else { + topAttributesBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder addTopAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute value) { + if (topAttributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTopAttributesIsMutable(); + topAttributes_.add(index, value); + onChanged(); + } else { + topAttributesBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder addTopAttributes( + com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder builderForValue) { + if (topAttributesBuilder_ == null) { + ensureTopAttributesIsMutable(); + topAttributes_.add(builderForValue.build()); + onChanged(); + } else { + topAttributesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder addTopAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder builderForValue) { + if (topAttributesBuilder_ == null) { + ensureTopAttributesIsMutable(); + topAttributes_.add(index, builderForValue.build()); + onChanged(); + } else { + topAttributesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder addAllTopAttributes( + java.lang.Iterable values) { + if (topAttributesBuilder_ == null) { + ensureTopAttributesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, topAttributes_); + onChanged(); + } else { + topAttributesBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder clearTopAttributes() { + if (topAttributesBuilder_ == null) { + topAttributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + topAttributesBuilder_.clear(); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public Builder removeTopAttributes(int index) { + if (topAttributesBuilder_ == null) { + ensureTopAttributesIsMutable(); + topAttributes_.remove(index); + onChanged(); + } else { + topAttributesBuilder_.remove(index); + } + return this; + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder getTopAttributesBuilder( + int index) { + return getTopAttributesFieldBuilder().getBuilder(index); + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder getTopAttributesOrBuilder( + int index) { + if (topAttributesBuilder_ == null) { + return topAttributes_.get(index); } else { + return topAttributesBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public java.util.List + getTopAttributesOrBuilderList() { + if (topAttributesBuilder_ != null) { + return topAttributesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(topAttributes_); + } + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder addTopAttributesBuilder() { + return getTopAttributesFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.AudienceCompositionAttribute.getDefaultInstance()); + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder addTopAttributesBuilder( + int index) { + return getTopAttributesFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.getDefaultInstance()); + } + /** + *
+     * The most relevant segments for this audience.  If dimension is GENDER,
+     * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + public java.util.List + getTopAttributesBuilderList() { + return getTopAttributesFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttribute, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder> + getTopAttributesFieldBuilder() { + if (topAttributesBuilder_ == null) { + topAttributesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttribute, com.google.ads.googleads.v11.services.AudienceCompositionAttribute.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder>( + topAttributes_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + topAttributes_ = null; + } + return topAttributesBuilder_; + } + + private java.util.List clusteredAttributes_ = + java.util.Collections.emptyList(); + private void ensureClusteredAttributesIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + clusteredAttributes_ = new java.util.ArrayList(clusteredAttributes_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeClusterOrBuilder> clusteredAttributesBuilder_; + + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public java.util.List getClusteredAttributesList() { + if (clusteredAttributesBuilder_ == null) { + return java.util.Collections.unmodifiableList(clusteredAttributes_); + } else { + return clusteredAttributesBuilder_.getMessageList(); + } + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public int getClusteredAttributesCount() { + if (clusteredAttributesBuilder_ == null) { + return clusteredAttributes_.size(); + } else { + return clusteredAttributesBuilder_.getCount(); + } + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster getClusteredAttributes(int index) { + if (clusteredAttributesBuilder_ == null) { + return clusteredAttributes_.get(index); + } else { + return clusteredAttributesBuilder_.getMessage(index); + } + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder setClusteredAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster value) { + if (clusteredAttributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.set(index, value); + onChanged(); + } else { + clusteredAttributesBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder setClusteredAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder builderForValue) { + if (clusteredAttributesBuilder_ == null) { + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.set(index, builderForValue.build()); + onChanged(); + } else { + clusteredAttributesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder addClusteredAttributes(com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster value) { + if (clusteredAttributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.add(value); + onChanged(); + } else { + clusteredAttributesBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder addClusteredAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster value) { + if (clusteredAttributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.add(index, value); + onChanged(); + } else { + clusteredAttributesBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder addClusteredAttributes( + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder builderForValue) { + if (clusteredAttributesBuilder_ == null) { + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.add(builderForValue.build()); + onChanged(); + } else { + clusteredAttributesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder addClusteredAttributes( + int index, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder builderForValue) { + if (clusteredAttributesBuilder_ == null) { + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.add(index, builderForValue.build()); + onChanged(); + } else { + clusteredAttributesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder addAllClusteredAttributes( + java.lang.Iterable values) { + if (clusteredAttributesBuilder_ == null) { + ensureClusteredAttributesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, clusteredAttributes_); + onChanged(); + } else { + clusteredAttributesBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder clearClusteredAttributes() { + if (clusteredAttributesBuilder_ == null) { + clusteredAttributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + clusteredAttributesBuilder_.clear(); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public Builder removeClusteredAttributes(int index) { + if (clusteredAttributesBuilder_ == null) { + ensureClusteredAttributesIsMutable(); + clusteredAttributes_.remove(index); + onChanged(); + } else { + clusteredAttributesBuilder_.remove(index); + } + return this; + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder getClusteredAttributesBuilder( + int index) { + return getClusteredAttributesFieldBuilder().getBuilder(index); + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeClusterOrBuilder getClusteredAttributesOrBuilder( + int index) { + if (clusteredAttributesBuilder_ == null) { + return clusteredAttributes_.get(index); } else { + return clusteredAttributesBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public java.util.List + getClusteredAttributesOrBuilderList() { + if (clusteredAttributesBuilder_ != null) { + return clusteredAttributesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(clusteredAttributes_); + } + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder addClusteredAttributesBuilder() { + return getClusteredAttributesFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.getDefaultInstance()); + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder addClusteredAttributesBuilder( + int index) { + return getClusteredAttributesFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.getDefaultInstance()); + } + /** + *
+     * Additional attributes for this audience, grouped into clusters.  Only
+     * populated if dimension is YOUTUBE_CHANNEL.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + public java.util.List + getClusteredAttributesBuilderList() { + return getClusteredAttributesFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeClusterOrBuilder> + getClusteredAttributesFieldBuilder() { + if (clusteredAttributesBuilder_ == null) { + clusteredAttributesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster, com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster.Builder, com.google.ads.googleads.v11.services.AudienceCompositionAttributeClusterOrBuilder>( + clusteredAttributes_, + ((bitField0_ & 0x00000002) != 0), + getParentForChildren(), + isClean()); + clusteredAttributes_ = null; + } + return clusteredAttributesBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.AudienceCompositionSection) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.AudienceCompositionSection) + private static final com.google.ads.googleads.v11.services.AudienceCompositionSection DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.AudienceCompositionSection(); + } + + public static com.google.ads.googleads.v11.services.AudienceCompositionSection getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AudienceCompositionSection parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AudienceCompositionSection(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionSection getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionSectionOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionSectionOrBuilder.java new file mode 100644 index 0000000000..931a8b5b1d --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceCompositionSectionOrBuilder.java @@ -0,0 +1,126 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface AudienceCompositionSectionOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.AudienceCompositionSection) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The type of the attributes in this section.
+   * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @return The enum numeric value on the wire for dimension. + */ + int getDimensionValue(); + /** + *
+   * The type of the attributes in this section.
+   * 
+ * + * .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimension = 1; + * @return The dimension. + */ + com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension getDimension(); + + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + java.util.List + getTopAttributesList(); + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + com.google.ads.googleads.v11.services.AudienceCompositionAttribute getTopAttributes(int index); + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + int getTopAttributesCount(); + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + java.util.List + getTopAttributesOrBuilderList(); + /** + *
+   * The most relevant segments for this audience.  If dimension is GENDER,
+   * AGE_RANGE or PARENTAL_STATUS, then this list of attributes is exhaustive.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttribute top_attributes = 3; + */ + com.google.ads.googleads.v11.services.AudienceCompositionAttributeOrBuilder getTopAttributesOrBuilder( + int index); + + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + java.util.List + getClusteredAttributesList(); + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + com.google.ads.googleads.v11.services.AudienceCompositionAttributeCluster getClusteredAttributes(int index); + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + int getClusteredAttributesCount(); + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + java.util.List + getClusteredAttributesOrBuilderList(); + /** + *
+   * Additional attributes for this audience, grouped into clusters.  Only
+   * populated if dimension is YOUTUBE_CHANNEL.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionAttributeCluster clustered_attributes = 4; + */ + com.google.ads.googleads.v11.services.AudienceCompositionAttributeClusterOrBuilder getClusteredAttributesOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttribute.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttribute.java index 957f55b029..f11a5e1705 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttribute.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttribute.java @@ -137,6 +137,62 @@ private AudienceInsightsAttribute( attributeCase_ = 6; break; } + case 58: { + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder subBuilder = null; + if (attributeCase_ == 7) { + subBuilder = ((com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_).toBuilder(); + } + attribute_ = + input.readMessage(com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_); + attribute_ = subBuilder.buildPartial(); + } + attributeCase_ = 7; + break; + } + case 66: { + com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder subBuilder = null; + if (attributeCase_ == 8) { + subBuilder = ((com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_).toBuilder(); + } + attribute_ = + input.readMessage(com.google.ads.googleads.v11.common.ParentalStatusInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_); + attribute_ = subBuilder.buildPartial(); + } + attributeCase_ = 8; + break; + } + case 74: { + com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder subBuilder = null; + if (attributeCase_ == 9) { + subBuilder = ((com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_).toBuilder(); + } + attribute_ = + input.readMessage(com.google.ads.googleads.v11.common.IncomeRangeInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_); + attribute_ = subBuilder.buildPartial(); + } + attributeCase_ = 9; + break; + } + case 82: { + com.google.ads.googleads.v11.common.YouTubeChannelInfo.Builder subBuilder = null; + if (attributeCase_ == 10) { + subBuilder = ((com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_).toBuilder(); + } + attribute_ = + input.readMessage(com.google.ads.googleads.v11.common.YouTubeChannelInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_); + attribute_ = subBuilder.buildPartial(); + } + attributeCase_ = 10; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -182,6 +238,10 @@ public enum AttributeCase USER_INTEREST(4), ENTITY(5), CATEGORY(6), + DYNAMIC_LINEUP(7), + PARENTAL_STATUS(8), + INCOME_RANGE(9), + YOUTUBE_CHANNEL(10), ATTRIBUTE_NOT_SET(0); private final int value; private AttributeCase(int value) { @@ -205,6 +265,10 @@ public static AttributeCase forNumber(int value) { case 4: return USER_INTEREST; case 5: return ENTITY; case 6: return CATEGORY; + case 7: return DYNAMIC_LINEUP; + case 8: return PARENTAL_STATUS; + case 9: return INCOME_RANGE; + case 10: return YOUTUBE_CHANNEL; case 0: return ATTRIBUTE_NOT_SET; default: return null; } @@ -309,7 +373,7 @@ public com.google.ads.googleads.v11.common.GenderInfoOrBuilder getGenderOrBuilde public static final int LOCATION_FIELD_NUMBER = 3; /** *
-   * An audience attribute defiend by a geographic location.
+   * An audience attribute defined by a geographic location.
    * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -321,7 +385,7 @@ public boolean hasLocation() { } /** *
-   * An audience attribute defiend by a geographic location.
+   * An audience attribute defined by a geographic location.
    * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -336,7 +400,7 @@ public com.google.ads.googleads.v11.common.LocationInfo getLocation() { } /** *
-   * An audience attribute defiend by a geographic location.
+   * An audience attribute defined by a geographic location.
    * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -484,6 +548,178 @@ public com.google.ads.googleads.v11.services.AudienceInsightsCategoryOrBuilder g return com.google.ads.googleads.v11.services.AudienceInsightsCategory.getDefaultInstance(); } + public static final int DYNAMIC_LINEUP_FIELD_NUMBER = 7; + /** + *
+   * A YouTube Dynamic Lineup
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + * @return Whether the dynamicLineup field is set. + */ + @java.lang.Override + public boolean hasDynamicLineup() { + return attributeCase_ == 7; + } + /** + *
+   * A YouTube Dynamic Lineup
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + * @return The dynamicLineup. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDynamicLineup() { + if (attributeCase_ == 7) { + return (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_; + } + return com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance(); + } + /** + *
+   * A YouTube Dynamic Lineup
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder getDynamicLineupOrBuilder() { + if (attributeCase_ == 7) { + return (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_; + } + return com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance(); + } + + public static final int PARENTAL_STATUS_FIELD_NUMBER = 8; + /** + *
+   * A Parental Status value (parent, or not a parent).
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + * @return Whether the parentalStatus field is set. + */ + @java.lang.Override + public boolean hasParentalStatus() { + return attributeCase_ == 8; + } + /** + *
+   * A Parental Status value (parent, or not a parent).
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + * @return The parentalStatus. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.ParentalStatusInfo getParentalStatus() { + if (attributeCase_ == 8) { + return (com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_; + } + return com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance(); + } + /** + *
+   * A Parental Status value (parent, or not a parent).
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder getParentalStatusOrBuilder() { + if (attributeCase_ == 8) { + return (com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_; + } + return com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance(); + } + + public static final int INCOME_RANGE_FIELD_NUMBER = 9; + /** + *
+   * A household income percentile range.
+   * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + * @return Whether the incomeRange field is set. + */ + @java.lang.Override + public boolean hasIncomeRange() { + return attributeCase_ == 9; + } + /** + *
+   * A household income percentile range.
+   * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + * @return The incomeRange. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.IncomeRangeInfo getIncomeRange() { + if (attributeCase_ == 9) { + return (com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_; + } + return com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance(); + } + /** + *
+   * A household income percentile range.
+   * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder getIncomeRangeOrBuilder() { + if (attributeCase_ == 9) { + return (com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_; + } + return com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance(); + } + + public static final int YOUTUBE_CHANNEL_FIELD_NUMBER = 10; + /** + *
+   * A YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + * @return Whether the youtubeChannel field is set. + */ + @java.lang.Override + public boolean hasYoutubeChannel() { + return attributeCase_ == 10; + } + /** + *
+   * A YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + * @return The youtubeChannel. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.YouTubeChannelInfo getYoutubeChannel() { + if (attributeCase_ == 10) { + return (com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_; + } + return com.google.ads.googleads.v11.common.YouTubeChannelInfo.getDefaultInstance(); + } + /** + *
+   * A YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.YouTubeChannelInfoOrBuilder getYoutubeChannelOrBuilder() { + if (attributeCase_ == 10) { + return (com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_; + } + return com.google.ads.googleads.v11.common.YouTubeChannelInfo.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -516,6 +752,18 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (attributeCase_ == 6) { output.writeMessage(6, (com.google.ads.googleads.v11.services.AudienceInsightsCategory) attribute_); } + if (attributeCase_ == 7) { + output.writeMessage(7, (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_); + } + if (attributeCase_ == 8) { + output.writeMessage(8, (com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_); + } + if (attributeCase_ == 9) { + output.writeMessage(9, (com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_); + } + if (attributeCase_ == 10) { + output.writeMessage(10, (com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_); + } unknownFields.writeTo(output); } @@ -549,6 +797,22 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(6, (com.google.ads.googleads.v11.services.AudienceInsightsCategory) attribute_); } + if (attributeCase_ == 7) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(7, (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_); + } + if (attributeCase_ == 8) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(8, (com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_); + } + if (attributeCase_ == 9) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(9, (com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_); + } + if (attributeCase_ == 10) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(10, (com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -590,6 +854,22 @@ public boolean equals(final java.lang.Object obj) { if (!getCategory() .equals(other.getCategory())) return false; break; + case 7: + if (!getDynamicLineup() + .equals(other.getDynamicLineup())) return false; + break; + case 8: + if (!getParentalStatus() + .equals(other.getParentalStatus())) return false; + break; + case 9: + if (!getIncomeRange() + .equals(other.getIncomeRange())) return false; + break; + case 10: + if (!getYoutubeChannel() + .equals(other.getYoutubeChannel())) return false; + break; case 0: default: } @@ -629,6 +909,22 @@ public int hashCode() { hash = (37 * hash) + CATEGORY_FIELD_NUMBER; hash = (53 * hash) + getCategory().hashCode(); break; + case 7: + hash = (37 * hash) + DYNAMIC_LINEUP_FIELD_NUMBER; + hash = (53 * hash) + getDynamicLineup().hashCode(); + break; + case 8: + hash = (37 * hash) + PARENTAL_STATUS_FIELD_NUMBER; + hash = (53 * hash) + getParentalStatus().hashCode(); + break; + case 9: + hash = (37 * hash) + INCOME_RANGE_FIELD_NUMBER; + hash = (53 * hash) + getIncomeRange().hashCode(); + break; + case 10: + hash = (37 * hash) + YOUTUBE_CHANNEL_FIELD_NUMBER; + hash = (53 * hash) + getYoutubeChannel().hashCode(); + break; case 0: default: } @@ -840,6 +1136,34 @@ public com.google.ads.googleads.v11.services.AudienceInsightsAttribute buildPart result.attribute_ = categoryBuilder_.build(); } } + if (attributeCase_ == 7) { + if (dynamicLineupBuilder_ == null) { + result.attribute_ = attribute_; + } else { + result.attribute_ = dynamicLineupBuilder_.build(); + } + } + if (attributeCase_ == 8) { + if (parentalStatusBuilder_ == null) { + result.attribute_ = attribute_; + } else { + result.attribute_ = parentalStatusBuilder_.build(); + } + } + if (attributeCase_ == 9) { + if (incomeRangeBuilder_ == null) { + result.attribute_ = attribute_; + } else { + result.attribute_ = incomeRangeBuilder_.build(); + } + } + if (attributeCase_ == 10) { + if (youtubeChannelBuilder_ == null) { + result.attribute_ = attribute_; + } else { + result.attribute_ = youtubeChannelBuilder_.build(); + } + } result.attributeCase_ = attributeCase_; onBuilt(); return result; @@ -914,6 +1238,22 @@ public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceInsightsA mergeCategory(other.getCategory()); break; } + case DYNAMIC_LINEUP: { + mergeDynamicLineup(other.getDynamicLineup()); + break; + } + case PARENTAL_STATUS: { + mergeParentalStatus(other.getParentalStatus()); + break; + } + case INCOME_RANGE: { + mergeIncomeRange(other.getIncomeRange()); + break; + } + case YOUTUBE_CHANNEL: { + mergeYoutubeChannel(other.getYoutubeChannel()); + break; + } case ATTRIBUTE_NOT_SET: { break; } @@ -1322,7 +1662,7 @@ public com.google.ads.googleads.v11.common.GenderInfoOrBuilder getGenderOrBuilde com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder> locationBuilder_; /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1334,7 +1674,7 @@ public boolean hasLocation() { } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1356,7 +1696,7 @@ public com.google.ads.googleads.v11.common.LocationInfo getLocation() { } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1376,7 +1716,7 @@ public Builder setLocation(com.google.ads.googleads.v11.common.LocationInfo valu } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1394,7 +1734,7 @@ public Builder setLocation( } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1421,7 +1761,7 @@ public Builder mergeLocation(com.google.ads.googleads.v11.common.LocationInfo va } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1444,7 +1784,7 @@ public Builder clearLocation() { } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1454,7 +1794,7 @@ public com.google.ads.googleads.v11.common.LocationInfo.Builder getLocationBuild } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -1472,7 +1812,7 @@ public com.google.ads.googleads.v11.common.LocationInfoOrBuilder getLocationOrBu } /** *
-     * An audience attribute defiend by a geographic location.
+     * An audience attribute defined by a geographic location.
      * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -2047,6 +2387,718 @@ public com.google.ads.googleads.v11.services.AudienceInsightsCategoryOrBuilder g onChanged();; return categoryBuilder_; } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder> dynamicLineupBuilder_; + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + * @return Whether the dynamicLineup field is set. + */ + @java.lang.Override + public boolean hasDynamicLineup() { + return attributeCase_ == 7; + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + * @return The dynamicLineup. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDynamicLineup() { + if (dynamicLineupBuilder_ == null) { + if (attributeCase_ == 7) { + return (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_; + } + return com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance(); + } else { + if (attributeCase_ == 7) { + return dynamicLineupBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance(); + } + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + public Builder setDynamicLineup(com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup value) { + if (dynamicLineupBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + attribute_ = value; + onChanged(); + } else { + dynamicLineupBuilder_.setMessage(value); + } + attributeCase_ = 7; + return this; + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + public Builder setDynamicLineup( + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder builderForValue) { + if (dynamicLineupBuilder_ == null) { + attribute_ = builderForValue.build(); + onChanged(); + } else { + dynamicLineupBuilder_.setMessage(builderForValue.build()); + } + attributeCase_ = 7; + return this; + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + public Builder mergeDynamicLineup(com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup value) { + if (dynamicLineupBuilder_ == null) { + if (attributeCase_ == 7 && + attribute_ != com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance()) { + attribute_ = com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.newBuilder((com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_) + .mergeFrom(value).buildPartial(); + } else { + attribute_ = value; + } + onChanged(); + } else { + if (attributeCase_ == 7) { + dynamicLineupBuilder_.mergeFrom(value); + } else { + dynamicLineupBuilder_.setMessage(value); + } + } + attributeCase_ = 7; + return this; + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + public Builder clearDynamicLineup() { + if (dynamicLineupBuilder_ == null) { + if (attributeCase_ == 7) { + attributeCase_ = 0; + attribute_ = null; + onChanged(); + } + } else { + if (attributeCase_ == 7) { + attributeCase_ = 0; + attribute_ = null; + } + dynamicLineupBuilder_.clear(); + } + return this; + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder getDynamicLineupBuilder() { + return getDynamicLineupFieldBuilder().getBuilder(); + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder getDynamicLineupOrBuilder() { + if ((attributeCase_ == 7) && (dynamicLineupBuilder_ != null)) { + return dynamicLineupBuilder_.getMessageOrBuilder(); + } else { + if (attributeCase_ == 7) { + return (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_; + } + return com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance(); + } + } + /** + *
+     * A YouTube Dynamic Lineup
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder> + getDynamicLineupFieldBuilder() { + if (dynamicLineupBuilder_ == null) { + if (!(attributeCase_ == 7)) { + attribute_ = com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance(); + } + dynamicLineupBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder>( + (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) attribute_, + getParentForChildren(), + isClean()); + attribute_ = null; + } + attributeCase_ = 7; + onChanged();; + return dynamicLineupBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.ParentalStatusInfo, com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder, com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder> parentalStatusBuilder_; + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + * @return Whether the parentalStatus field is set. + */ + @java.lang.Override + public boolean hasParentalStatus() { + return attributeCase_ == 8; + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + * @return The parentalStatus. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.ParentalStatusInfo getParentalStatus() { + if (parentalStatusBuilder_ == null) { + if (attributeCase_ == 8) { + return (com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_; + } + return com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance(); + } else { + if (attributeCase_ == 8) { + return parentalStatusBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance(); + } + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + public Builder setParentalStatus(com.google.ads.googleads.v11.common.ParentalStatusInfo value) { + if (parentalStatusBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + attribute_ = value; + onChanged(); + } else { + parentalStatusBuilder_.setMessage(value); + } + attributeCase_ = 8; + return this; + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + public Builder setParentalStatus( + com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder builderForValue) { + if (parentalStatusBuilder_ == null) { + attribute_ = builderForValue.build(); + onChanged(); + } else { + parentalStatusBuilder_.setMessage(builderForValue.build()); + } + attributeCase_ = 8; + return this; + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + public Builder mergeParentalStatus(com.google.ads.googleads.v11.common.ParentalStatusInfo value) { + if (parentalStatusBuilder_ == null) { + if (attributeCase_ == 8 && + attribute_ != com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance()) { + attribute_ = com.google.ads.googleads.v11.common.ParentalStatusInfo.newBuilder((com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_) + .mergeFrom(value).buildPartial(); + } else { + attribute_ = value; + } + onChanged(); + } else { + if (attributeCase_ == 8) { + parentalStatusBuilder_.mergeFrom(value); + } else { + parentalStatusBuilder_.setMessage(value); + } + } + attributeCase_ = 8; + return this; + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + public Builder clearParentalStatus() { + if (parentalStatusBuilder_ == null) { + if (attributeCase_ == 8) { + attributeCase_ = 0; + attribute_ = null; + onChanged(); + } + } else { + if (attributeCase_ == 8) { + attributeCase_ = 0; + attribute_ = null; + } + parentalStatusBuilder_.clear(); + } + return this; + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + public com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder getParentalStatusBuilder() { + return getParentalStatusFieldBuilder().getBuilder(); + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder getParentalStatusOrBuilder() { + if ((attributeCase_ == 8) && (parentalStatusBuilder_ != null)) { + return parentalStatusBuilder_.getMessageOrBuilder(); + } else { + if (attributeCase_ == 8) { + return (com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_; + } + return com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance(); + } + } + /** + *
+     * A Parental Status value (parent, or not a parent).
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.ParentalStatusInfo, com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder, com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder> + getParentalStatusFieldBuilder() { + if (parentalStatusBuilder_ == null) { + if (!(attributeCase_ == 8)) { + attribute_ = com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance(); + } + parentalStatusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.ParentalStatusInfo, com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder, com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder>( + (com.google.ads.googleads.v11.common.ParentalStatusInfo) attribute_, + getParentForChildren(), + isClean()); + attribute_ = null; + } + attributeCase_ = 8; + onChanged();; + return parentalStatusBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.IncomeRangeInfo, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder, com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder> incomeRangeBuilder_; + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + * @return Whether the incomeRange field is set. + */ + @java.lang.Override + public boolean hasIncomeRange() { + return attributeCase_ == 9; + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + * @return The incomeRange. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.IncomeRangeInfo getIncomeRange() { + if (incomeRangeBuilder_ == null) { + if (attributeCase_ == 9) { + return (com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_; + } + return com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance(); + } else { + if (attributeCase_ == 9) { + return incomeRangeBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance(); + } + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + public Builder setIncomeRange(com.google.ads.googleads.v11.common.IncomeRangeInfo value) { + if (incomeRangeBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + attribute_ = value; + onChanged(); + } else { + incomeRangeBuilder_.setMessage(value); + } + attributeCase_ = 9; + return this; + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + public Builder setIncomeRange( + com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder builderForValue) { + if (incomeRangeBuilder_ == null) { + attribute_ = builderForValue.build(); + onChanged(); + } else { + incomeRangeBuilder_.setMessage(builderForValue.build()); + } + attributeCase_ = 9; + return this; + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + public Builder mergeIncomeRange(com.google.ads.googleads.v11.common.IncomeRangeInfo value) { + if (incomeRangeBuilder_ == null) { + if (attributeCase_ == 9 && + attribute_ != com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance()) { + attribute_ = com.google.ads.googleads.v11.common.IncomeRangeInfo.newBuilder((com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_) + .mergeFrom(value).buildPartial(); + } else { + attribute_ = value; + } + onChanged(); + } else { + if (attributeCase_ == 9) { + incomeRangeBuilder_.mergeFrom(value); + } else { + incomeRangeBuilder_.setMessage(value); + } + } + attributeCase_ = 9; + return this; + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + public Builder clearIncomeRange() { + if (incomeRangeBuilder_ == null) { + if (attributeCase_ == 9) { + attributeCase_ = 0; + attribute_ = null; + onChanged(); + } + } else { + if (attributeCase_ == 9) { + attributeCase_ = 0; + attribute_ = null; + } + incomeRangeBuilder_.clear(); + } + return this; + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + public com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder getIncomeRangeBuilder() { + return getIncomeRangeFieldBuilder().getBuilder(); + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder getIncomeRangeOrBuilder() { + if ((attributeCase_ == 9) && (incomeRangeBuilder_ != null)) { + return incomeRangeBuilder_.getMessageOrBuilder(); + } else { + if (attributeCase_ == 9) { + return (com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_; + } + return com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance(); + } + } + /** + *
+     * A household income percentile range.
+     * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.IncomeRangeInfo, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder, com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder> + getIncomeRangeFieldBuilder() { + if (incomeRangeBuilder_ == null) { + if (!(attributeCase_ == 9)) { + attribute_ = com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance(); + } + incomeRangeBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.IncomeRangeInfo, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder, com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder>( + (com.google.ads.googleads.v11.common.IncomeRangeInfo) attribute_, + getParentForChildren(), + isClean()); + attribute_ = null; + } + attributeCase_ = 9; + onChanged();; + return incomeRangeBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.YouTubeChannelInfo, com.google.ads.googleads.v11.common.YouTubeChannelInfo.Builder, com.google.ads.googleads.v11.common.YouTubeChannelInfoOrBuilder> youtubeChannelBuilder_; + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + * @return Whether the youtubeChannel field is set. + */ + @java.lang.Override + public boolean hasYoutubeChannel() { + return attributeCase_ == 10; + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + * @return The youtubeChannel. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.YouTubeChannelInfo getYoutubeChannel() { + if (youtubeChannelBuilder_ == null) { + if (attributeCase_ == 10) { + return (com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_; + } + return com.google.ads.googleads.v11.common.YouTubeChannelInfo.getDefaultInstance(); + } else { + if (attributeCase_ == 10) { + return youtubeChannelBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.common.YouTubeChannelInfo.getDefaultInstance(); + } + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + public Builder setYoutubeChannel(com.google.ads.googleads.v11.common.YouTubeChannelInfo value) { + if (youtubeChannelBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + attribute_ = value; + onChanged(); + } else { + youtubeChannelBuilder_.setMessage(value); + } + attributeCase_ = 10; + return this; + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + public Builder setYoutubeChannel( + com.google.ads.googleads.v11.common.YouTubeChannelInfo.Builder builderForValue) { + if (youtubeChannelBuilder_ == null) { + attribute_ = builderForValue.build(); + onChanged(); + } else { + youtubeChannelBuilder_.setMessage(builderForValue.build()); + } + attributeCase_ = 10; + return this; + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + public Builder mergeYoutubeChannel(com.google.ads.googleads.v11.common.YouTubeChannelInfo value) { + if (youtubeChannelBuilder_ == null) { + if (attributeCase_ == 10 && + attribute_ != com.google.ads.googleads.v11.common.YouTubeChannelInfo.getDefaultInstance()) { + attribute_ = com.google.ads.googleads.v11.common.YouTubeChannelInfo.newBuilder((com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_) + .mergeFrom(value).buildPartial(); + } else { + attribute_ = value; + } + onChanged(); + } else { + if (attributeCase_ == 10) { + youtubeChannelBuilder_.mergeFrom(value); + } else { + youtubeChannelBuilder_.setMessage(value); + } + } + attributeCase_ = 10; + return this; + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + public Builder clearYoutubeChannel() { + if (youtubeChannelBuilder_ == null) { + if (attributeCase_ == 10) { + attributeCase_ = 0; + attribute_ = null; + onChanged(); + } + } else { + if (attributeCase_ == 10) { + attributeCase_ = 0; + attribute_ = null; + } + youtubeChannelBuilder_.clear(); + } + return this; + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + public com.google.ads.googleads.v11.common.YouTubeChannelInfo.Builder getYoutubeChannelBuilder() { + return getYoutubeChannelFieldBuilder().getBuilder(); + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.YouTubeChannelInfoOrBuilder getYoutubeChannelOrBuilder() { + if ((attributeCase_ == 10) && (youtubeChannelBuilder_ != null)) { + return youtubeChannelBuilder_.getMessageOrBuilder(); + } else { + if (attributeCase_ == 10) { + return (com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_; + } + return com.google.ads.googleads.v11.common.YouTubeChannelInfo.getDefaultInstance(); + } + } + /** + *
+     * A YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.YouTubeChannelInfo, com.google.ads.googleads.v11.common.YouTubeChannelInfo.Builder, com.google.ads.googleads.v11.common.YouTubeChannelInfoOrBuilder> + getYoutubeChannelFieldBuilder() { + if (youtubeChannelBuilder_ == null) { + if (!(attributeCase_ == 10)) { + attribute_ = com.google.ads.googleads.v11.common.YouTubeChannelInfo.getDefaultInstance(); + } + youtubeChannelBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.YouTubeChannelInfo, com.google.ads.googleads.v11.common.YouTubeChannelInfo.Builder, com.google.ads.googleads.v11.common.YouTubeChannelInfoOrBuilder>( + (com.google.ads.googleads.v11.common.YouTubeChannelInfo) attribute_, + getParentForChildren(), + isClean()); + attribute_ = null; + } + attributeCase_ = 10; + onChanged();; + return youtubeChannelBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadata.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadata.java index 5a13c3ef36..61c5adc0e6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadata.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadata.java @@ -92,6 +92,34 @@ private AudienceInsightsAttributeMetadata( displayInfo_ = s; break; } + case 50: { + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder subBuilder = null; + if (dimensionMetadataCase_ == 6) { + subBuilder = ((com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_).toBuilder(); + } + dimensionMetadata_ = + input.readMessage(com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_); + dimensionMetadata_ = subBuilder.buildPartial(); + } + dimensionMetadataCase_ = 6; + break; + } + case 58: { + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder subBuilder = null; + if (dimensionMetadataCase_ == 7) { + subBuilder = ((com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_).toBuilder(); + } + dimensionMetadata_ = + input.readMessage(com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_); + dimensionMetadata_ = subBuilder.buildPartial(); + } + dimensionMetadataCase_ = 7; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -126,6 +154,47 @@ private AudienceInsightsAttributeMetadata( com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.class, com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.Builder.class); } + private int dimensionMetadataCase_ = 0; + private java.lang.Object dimensionMetadata_; + public enum DimensionMetadataCase + implements com.google.protobuf.Internal.EnumLite, + com.google.protobuf.AbstractMessage.InternalOneOfEnum { + YOUTUBE_CHANNEL_METADATA(6), + DYNAMIC_ATTRIBUTE_METADATA(7), + DIMENSIONMETADATA_NOT_SET(0); + private final int value; + private DimensionMetadataCase(int value) { + this.value = value; + } + /** + * @param value The number of the enum to look for. + * @return The enum associated with the given number. + * @deprecated Use {@link #forNumber(int)} instead. + */ + @java.lang.Deprecated + public static DimensionMetadataCase valueOf(int value) { + return forNumber(value); + } + + public static DimensionMetadataCase forNumber(int value) { + switch (value) { + case 6: return YOUTUBE_CHANNEL_METADATA; + case 7: return DYNAMIC_ATTRIBUTE_METADATA; + case 0: return DIMENSIONMETADATA_NOT_SET; + default: return null; + } + } + public int getNumber() { + return this.value; + } + }; + + public DimensionMetadataCase + getDimensionMetadataCase() { + return DimensionMetadataCase.forNumber( + dimensionMetadataCase_); + } + public static final int DIMENSION_FIELD_NUMBER = 1; private int dimension_; /** @@ -308,6 +377,92 @@ public java.lang.String getDisplayInfo() { } } + public static final int YOUTUBE_CHANNEL_METADATA_FIELD_NUMBER = 6; + /** + *
+   * Special metadata for a YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + * @return Whether the youtubeChannelMetadata field is set. + */ + @java.lang.Override + public boolean hasYoutubeChannelMetadata() { + return dimensionMetadataCase_ == 6; + } + /** + *
+   * Special metadata for a YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + * @return The youtubeChannelMetadata. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata getYoutubeChannelMetadata() { + if (dimensionMetadataCase_ == 6) { + return (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance(); + } + /** + *
+   * Special metadata for a YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadataOrBuilder getYoutubeChannelMetadataOrBuilder() { + if (dimensionMetadataCase_ == 6) { + return (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance(); + } + + public static final int DYNAMIC_ATTRIBUTE_METADATA_FIELD_NUMBER = 7; + /** + *
+   * Special metadata for a YouTube Dynamic Lineup.
+   * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + * @return Whether the dynamicAttributeMetadata field is set. + */ + @java.lang.Override + public boolean hasDynamicAttributeMetadata() { + return dimensionMetadataCase_ == 7; + } + /** + *
+   * Special metadata for a YouTube Dynamic Lineup.
+   * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + * @return The dynamicAttributeMetadata. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata getDynamicAttributeMetadata() { + if (dimensionMetadataCase_ == 7) { + return (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance(); + } + /** + *
+   * Special metadata for a YouTube Dynamic Lineup.
+   * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadataOrBuilder getDynamicAttributeMetadataOrBuilder() { + if (dimensionMetadataCase_ == 7) { + return (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -337,6 +492,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(displayInfo_)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 5, displayInfo_); } + if (dimensionMetadataCase_ == 6) { + output.writeMessage(6, (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_); + } + if (dimensionMetadataCase_ == 7) { + output.writeMessage(7, (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_); + } unknownFields.writeTo(output); } @@ -364,6 +525,14 @@ public int getSerializedSize() { if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(displayInfo_)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, displayInfo_); } + if (dimensionMetadataCase_ == 6) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_); + } + if (dimensionMetadataCase_ == 7) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(7, (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -392,6 +561,19 @@ public boolean equals(final java.lang.Object obj) { other.getScore())) return false; if (!getDisplayInfo() .equals(other.getDisplayInfo())) return false; + if (!getDimensionMetadataCase().equals(other.getDimensionMetadataCase())) return false; + switch (dimensionMetadataCase_) { + case 6: + if (!getYoutubeChannelMetadata() + .equals(other.getYoutubeChannelMetadata())) return false; + break; + case 7: + if (!getDynamicAttributeMetadata() + .equals(other.getDynamicAttributeMetadata())) return false; + break; + case 0: + default: + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -416,6 +598,18 @@ public int hashCode() { java.lang.Double.doubleToLongBits(getScore())); hash = (37 * hash) + DISPLAY_INFO_FIELD_NUMBER; hash = (53 * hash) + getDisplayInfo().hashCode(); + switch (dimensionMetadataCase_) { + case 6: + hash = (37 * hash) + YOUTUBE_CHANNEL_METADATA_FIELD_NUMBER; + hash = (53 * hash) + getYoutubeChannelMetadata().hashCode(); + break; + case 7: + hash = (37 * hash) + DYNAMIC_ATTRIBUTE_METADATA_FIELD_NUMBER; + hash = (53 * hash) + getDynamicAttributeMetadata().hashCode(); + break; + case 0: + default: + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -568,6 +762,8 @@ public Builder clear() { displayInfo_ = ""; + dimensionMetadataCase_ = 0; + dimensionMetadata_ = null; return this; } @@ -603,6 +799,21 @@ public com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata b result.displayName_ = displayName_; result.score_ = score_; result.displayInfo_ = displayInfo_; + if (dimensionMetadataCase_ == 6) { + if (youtubeChannelMetadataBuilder_ == null) { + result.dimensionMetadata_ = dimensionMetadata_; + } else { + result.dimensionMetadata_ = youtubeChannelMetadataBuilder_.build(); + } + } + if (dimensionMetadataCase_ == 7) { + if (dynamicAttributeMetadataBuilder_ == null) { + result.dimensionMetadata_ = dimensionMetadata_; + } else { + result.dimensionMetadata_ = dynamicAttributeMetadataBuilder_.build(); + } + } + result.dimensionMetadataCase_ = dimensionMetadataCase_; onBuilt(); return result; } @@ -668,6 +879,19 @@ public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceInsightsA displayInfo_ = other.displayInfo_; onChanged(); } + switch (other.getDimensionMetadataCase()) { + case YOUTUBE_CHANNEL_METADATA: { + mergeYoutubeChannelMetadata(other.getYoutubeChannelMetadata()); + break; + } + case DYNAMIC_ATTRIBUTE_METADATA: { + mergeDynamicAttributeMetadata(other.getDynamicAttributeMetadata()); + break; + } + case DIMENSIONMETADATA_NOT_SET: { + break; + } + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -696,6 +920,21 @@ public Builder mergeFrom( } return this; } + private int dimensionMetadataCase_ = 0; + private java.lang.Object dimensionMetadata_; + public DimensionMetadataCase + getDimensionMetadataCase() { + return DimensionMetadataCase.forNumber( + dimensionMetadataCase_); + } + + public Builder clearDimensionMetadata() { + dimensionMetadataCase_ = 0; + dimensionMetadata_ = null; + onChanged(); + return this; + } + private int dimension_ = 0; /** @@ -1185,6 +1424,362 @@ public Builder setDisplayInfoBytes( onChanged(); return this; } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadataOrBuilder> youtubeChannelMetadataBuilder_; + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + * @return Whether the youtubeChannelMetadata field is set. + */ + @java.lang.Override + public boolean hasYoutubeChannelMetadata() { + return dimensionMetadataCase_ == 6; + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + * @return The youtubeChannelMetadata. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata getYoutubeChannelMetadata() { + if (youtubeChannelMetadataBuilder_ == null) { + if (dimensionMetadataCase_ == 6) { + return (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance(); + } else { + if (dimensionMetadataCase_ == 6) { + return youtubeChannelMetadataBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance(); + } + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + public Builder setYoutubeChannelMetadata(com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata value) { + if (youtubeChannelMetadataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + dimensionMetadata_ = value; + onChanged(); + } else { + youtubeChannelMetadataBuilder_.setMessage(value); + } + dimensionMetadataCase_ = 6; + return this; + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + public Builder setYoutubeChannelMetadata( + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder builderForValue) { + if (youtubeChannelMetadataBuilder_ == null) { + dimensionMetadata_ = builderForValue.build(); + onChanged(); + } else { + youtubeChannelMetadataBuilder_.setMessage(builderForValue.build()); + } + dimensionMetadataCase_ = 6; + return this; + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + public Builder mergeYoutubeChannelMetadata(com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata value) { + if (youtubeChannelMetadataBuilder_ == null) { + if (dimensionMetadataCase_ == 6 && + dimensionMetadata_ != com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance()) { + dimensionMetadata_ = com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.newBuilder((com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_) + .mergeFrom(value).buildPartial(); + } else { + dimensionMetadata_ = value; + } + onChanged(); + } else { + if (dimensionMetadataCase_ == 6) { + youtubeChannelMetadataBuilder_.mergeFrom(value); + } else { + youtubeChannelMetadataBuilder_.setMessage(value); + } + } + dimensionMetadataCase_ = 6; + return this; + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + public Builder clearYoutubeChannelMetadata() { + if (youtubeChannelMetadataBuilder_ == null) { + if (dimensionMetadataCase_ == 6) { + dimensionMetadataCase_ = 0; + dimensionMetadata_ = null; + onChanged(); + } + } else { + if (dimensionMetadataCase_ == 6) { + dimensionMetadataCase_ = 0; + dimensionMetadata_ = null; + } + youtubeChannelMetadataBuilder_.clear(); + } + return this; + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder getYoutubeChannelMetadataBuilder() { + return getYoutubeChannelMetadataFieldBuilder().getBuilder(); + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadataOrBuilder getYoutubeChannelMetadataOrBuilder() { + if ((dimensionMetadataCase_ == 6) && (youtubeChannelMetadataBuilder_ != null)) { + return youtubeChannelMetadataBuilder_.getMessageOrBuilder(); + } else { + if (dimensionMetadataCase_ == 6) { + return (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance(); + } + } + /** + *
+     * Special metadata for a YouTube channel.
+     * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadataOrBuilder> + getYoutubeChannelMetadataFieldBuilder() { + if (youtubeChannelMetadataBuilder_ == null) { + if (!(dimensionMetadataCase_ == 6)) { + dimensionMetadata_ = com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance(); + } + youtubeChannelMetadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadataOrBuilder>( + (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) dimensionMetadata_, + getParentForChildren(), + isClean()); + dimensionMetadata_ = null; + } + dimensionMetadataCase_ = 6; + onChanged();; + return youtubeChannelMetadataBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadataOrBuilder> dynamicAttributeMetadataBuilder_; + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + * @return Whether the dynamicAttributeMetadata field is set. + */ + @java.lang.Override + public boolean hasDynamicAttributeMetadata() { + return dimensionMetadataCase_ == 7; + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + * @return The dynamicAttributeMetadata. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata getDynamicAttributeMetadata() { + if (dynamicAttributeMetadataBuilder_ == null) { + if (dimensionMetadataCase_ == 7) { + return (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance(); + } else { + if (dimensionMetadataCase_ == 7) { + return dynamicAttributeMetadataBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance(); + } + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + public Builder setDynamicAttributeMetadata(com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata value) { + if (dynamicAttributeMetadataBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + dimensionMetadata_ = value; + onChanged(); + } else { + dynamicAttributeMetadataBuilder_.setMessage(value); + } + dimensionMetadataCase_ = 7; + return this; + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + public Builder setDynamicAttributeMetadata( + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder builderForValue) { + if (dynamicAttributeMetadataBuilder_ == null) { + dimensionMetadata_ = builderForValue.build(); + onChanged(); + } else { + dynamicAttributeMetadataBuilder_.setMessage(builderForValue.build()); + } + dimensionMetadataCase_ = 7; + return this; + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + public Builder mergeDynamicAttributeMetadata(com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata value) { + if (dynamicAttributeMetadataBuilder_ == null) { + if (dimensionMetadataCase_ == 7 && + dimensionMetadata_ != com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance()) { + dimensionMetadata_ = com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.newBuilder((com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_) + .mergeFrom(value).buildPartial(); + } else { + dimensionMetadata_ = value; + } + onChanged(); + } else { + if (dimensionMetadataCase_ == 7) { + dynamicAttributeMetadataBuilder_.mergeFrom(value); + } else { + dynamicAttributeMetadataBuilder_.setMessage(value); + } + } + dimensionMetadataCase_ = 7; + return this; + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + public Builder clearDynamicAttributeMetadata() { + if (dynamicAttributeMetadataBuilder_ == null) { + if (dimensionMetadataCase_ == 7) { + dimensionMetadataCase_ = 0; + dimensionMetadata_ = null; + onChanged(); + } + } else { + if (dimensionMetadataCase_ == 7) { + dimensionMetadataCase_ = 0; + dimensionMetadata_ = null; + } + dynamicAttributeMetadataBuilder_.clear(); + } + return this; + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder getDynamicAttributeMetadataBuilder() { + return getDynamicAttributeMetadataFieldBuilder().getBuilder(); + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadataOrBuilder getDynamicAttributeMetadataOrBuilder() { + if ((dimensionMetadataCase_ == 7) && (dynamicAttributeMetadataBuilder_ != null)) { + return dynamicAttributeMetadataBuilder_.getMessageOrBuilder(); + } else { + if (dimensionMetadataCase_ == 7) { + return (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_; + } + return com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance(); + } + } + /** + *
+     * Special metadata for a YouTube Dynamic Lineup.
+     * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadataOrBuilder> + getDynamicAttributeMetadataFieldBuilder() { + if (dynamicAttributeMetadataBuilder_ == null) { + if (!(dimensionMetadataCase_ == 7)) { + dimensionMetadata_ = com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance(); + } + dynamicAttributeMetadataBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadataOrBuilder>( + (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) dimensionMetadata_, + getParentForChildren(), + isClean()); + dimensionMetadata_ = null; + } + dimensionMetadataCase_ = 7; + onChanged();; + return dynamicAttributeMetadataBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadataOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadataOrBuilder.java index 54a7a2e5b5..6b1e1c9c7f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadataOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeMetadataOrBuilder.java @@ -112,4 +112,60 @@ public interface AudienceInsightsAttributeMetadataOrBuilder extends */ com.google.protobuf.ByteString getDisplayInfoBytes(); + + /** + *
+   * Special metadata for a YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + * @return Whether the youtubeChannelMetadata field is set. + */ + boolean hasYoutubeChannelMetadata(); + /** + *
+   * Special metadata for a YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + * @return The youtubeChannelMetadata. + */ + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata getYoutubeChannelMetadata(); + /** + *
+   * Special metadata for a YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata youtube_channel_metadata = 6; + */ + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadataOrBuilder getYoutubeChannelMetadataOrBuilder(); + + /** + *
+   * Special metadata for a YouTube Dynamic Lineup.
+   * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + * @return Whether the dynamicAttributeMetadata field is set. + */ + boolean hasDynamicAttributeMetadata(); + /** + *
+   * Special metadata for a YouTube Dynamic Lineup.
+   * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + * @return The dynamicAttributeMetadata. + */ + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata getDynamicAttributeMetadata(); + /** + *
+   * Special metadata for a YouTube Dynamic Lineup.
+   * 
+ * + * .google.ads.googleads.v11.services.DynamicLineupAttributeMetadata dynamic_attribute_metadata = 7; + */ + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadataOrBuilder getDynamicAttributeMetadataOrBuilder(); + + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeMetadata.DimensionMetadataCase getDimensionMetadataCase(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeOrBuilder.java index 29d57aad91..f140fe241a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsAttributeOrBuilder.java @@ -63,7 +63,7 @@ public interface AudienceInsightsAttributeOrBuilder extends /** *
-   * An audience attribute defiend by a geographic location.
+   * An audience attribute defined by a geographic location.
    * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -72,7 +72,7 @@ public interface AudienceInsightsAttributeOrBuilder extends boolean hasLocation(); /** *
-   * An audience attribute defiend by a geographic location.
+   * An audience attribute defined by a geographic location.
    * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -81,7 +81,7 @@ public interface AudienceInsightsAttributeOrBuilder extends com.google.ads.googleads.v11.common.LocationInfo getLocation(); /** *
-   * An audience attribute defiend by a geographic location.
+   * An audience attribute defined by a geographic location.
    * 
* * .google.ads.googleads.v11.common.LocationInfo location = 3; @@ -175,5 +175,113 @@ public interface AudienceInsightsAttributeOrBuilder extends */ com.google.ads.googleads.v11.services.AudienceInsightsCategoryOrBuilder getCategoryOrBuilder(); + /** + *
+   * A YouTube Dynamic Lineup
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + * @return Whether the dynamicLineup field is set. + */ + boolean hasDynamicLineup(); + /** + *
+   * A YouTube Dynamic Lineup
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + * @return The dynamicLineup. + */ + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDynamicLineup(); + /** + *
+   * A YouTube Dynamic Lineup
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineup = 7; + */ + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder getDynamicLineupOrBuilder(); + + /** + *
+   * A Parental Status value (parent, or not a parent).
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + * @return Whether the parentalStatus field is set. + */ + boolean hasParentalStatus(); + /** + *
+   * A Parental Status value (parent, or not a parent).
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + * @return The parentalStatus. + */ + com.google.ads.googleads.v11.common.ParentalStatusInfo getParentalStatus(); + /** + *
+   * A Parental Status value (parent, or not a parent).
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 8; + */ + com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder getParentalStatusOrBuilder(); + + /** + *
+   * A household income percentile range.
+   * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + * @return Whether the incomeRange field is set. + */ + boolean hasIncomeRange(); + /** + *
+   * A household income percentile range.
+   * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + * @return The incomeRange. + */ + com.google.ads.googleads.v11.common.IncomeRangeInfo getIncomeRange(); + /** + *
+   * A household income percentile range.
+   * 
+ * + * .google.ads.googleads.v11.common.IncomeRangeInfo income_range = 9; + */ + com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder getIncomeRangeOrBuilder(); + + /** + *
+   * A YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + * @return Whether the youtubeChannel field is set. + */ + boolean hasYoutubeChannel(); + /** + *
+   * A YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + * @return The youtubeChannel. + */ + com.google.ads.googleads.v11.common.YouTubeChannelInfo getYoutubeChannel(); + /** + *
+   * A YouTube channel.
+   * 
+ * + * .google.ads.googleads.v11.common.YouTubeChannelInfo youtube_channel = 10; + */ + com.google.ads.googleads.v11.common.YouTubeChannelInfoOrBuilder getYoutubeChannelOrBuilder(); + public com.google.ads.googleads.v11.services.AudienceInsightsAttribute.AttributeCase getAttributeCase(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsDynamicLineup.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsDynamicLineup.java new file mode 100644 index 0000000000..9341566451 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsDynamicLineup.java @@ -0,0 +1,595 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * A YouTube Dynamic Lineup.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceInsightsDynamicLineup} + */ +public final class AudienceInsightsDynamicLineup extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) + AudienceInsightsDynamicLineupOrBuilder { +private static final long serialVersionUID = 0L; + // Use AudienceInsightsDynamicLineup.newBuilder() to construct. + private AudienceInsightsDynamicLineup(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AudienceInsightsDynamicLineup() { + dynamicLineupId_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AudienceInsightsDynamicLineup(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AudienceInsightsDynamicLineup( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + dynamicLineupId_ = s; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.class, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder.class); + } + + public static final int DYNAMIC_LINEUP_ID_FIELD_NUMBER = 1; + private volatile java.lang.Object dynamicLineupId_; + /** + *
+   * Required. The numeric ID of the dynamic lineup.
+   * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The dynamicLineupId. + */ + @java.lang.Override + public java.lang.String getDynamicLineupId() { + java.lang.Object ref = dynamicLineupId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dynamicLineupId_ = s; + return s; + } + } + /** + *
+   * Required. The numeric ID of the dynamic lineup.
+   * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for dynamicLineupId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getDynamicLineupIdBytes() { + java.lang.Object ref = dynamicLineupId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + dynamicLineupId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dynamicLineupId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, dynamicLineupId_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dynamicLineupId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, dynamicLineupId_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup other = (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) obj; + + if (!getDynamicLineupId() + .equals(other.getDynamicLineupId())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + DYNAMIC_LINEUP_ID_FIELD_NUMBER; + hash = (53 * hash) + getDynamicLineupId().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * A YouTube Dynamic Lineup.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceInsightsDynamicLineup} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.class, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + dynamicLineupId_ = ""; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup build() { + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup buildPartial() { + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup result = new com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup(this); + result.dynamicLineupId_ = dynamicLineupId_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) { + return mergeFrom((com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup other) { + if (other == com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance()) return this; + if (!other.getDynamicLineupId().isEmpty()) { + dynamicLineupId_ = other.dynamicLineupId_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private java.lang.Object dynamicLineupId_ = ""; + /** + *
+     * Required. The numeric ID of the dynamic lineup.
+     * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The dynamicLineupId. + */ + public java.lang.String getDynamicLineupId() { + java.lang.Object ref = dynamicLineupId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dynamicLineupId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * Required. The numeric ID of the dynamic lineup.
+     * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for dynamicLineupId. + */ + public com.google.protobuf.ByteString + getDynamicLineupIdBytes() { + java.lang.Object ref = dynamicLineupId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + dynamicLineupId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * Required. The numeric ID of the dynamic lineup.
+     * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The dynamicLineupId to set. + * @return This builder for chaining. + */ + public Builder setDynamicLineupId( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + dynamicLineupId_ = value; + onChanged(); + return this; + } + /** + *
+     * Required. The numeric ID of the dynamic lineup.
+     * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearDynamicLineupId() { + + dynamicLineupId_ = getDefaultInstance().getDynamicLineupId(); + onChanged(); + return this; + } + /** + *
+     * Required. The numeric ID of the dynamic lineup.
+     * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The bytes for dynamicLineupId to set. + * @return This builder for chaining. + */ + public Builder setDynamicLineupIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + dynamicLineupId_ = value; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) + private static final com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup(); + } + + public static com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AudienceInsightsDynamicLineup parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AudienceInsightsDynamicLineup(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsDynamicLineupOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsDynamicLineupOrBuilder.java new file mode 100644 index 0000000000..16555ea7f0 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsDynamicLineupOrBuilder.java @@ -0,0 +1,29 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface AudienceInsightsDynamicLineupOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.AudienceInsightsDynamicLineup) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Required. The numeric ID of the dynamic lineup.
+   * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The dynamicLineupId. + */ + java.lang.String getDynamicLineupId(); + /** + *
+   * Required. The numeric ID of the dynamic lineup.
+   * 
+ * + * string dynamic_lineup_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for dynamicLineupId. + */ + com.google.protobuf.ByteString + getDynamicLineupIdBytes(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClient.java index e8250bd574..1db679f7e1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClient.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClient.java @@ -378,6 +378,131 @@ public final ListAudienceInsightsAttributesResponse listAudienceInsightsAttribut return stub.listAudienceInsightsAttributesCallable(); } + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Returns a collection of attributes that are represented in an audience of interest, with + * metrics that compare each attribute's share of the audience with its share of a baseline + * audience. + * + *

List of thrown errors: [AudienceInsightsError]() [AuthenticationError]() + * [AuthorizationError]() [FieldError]() [HeaderError]() [InternalError]() [QuotaError]() + * [RangeError]() [RequestError]() + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
+   * try (AudienceInsightsServiceClient audienceInsightsServiceClient =
+   *     AudienceInsightsServiceClient.create()) {
+   *   String customerId = "customerId-1581184615";
+   *   InsightsAudience audience = InsightsAudience.newBuilder().build();
+   *   List dimensions = new ArrayList<>();
+   *   GenerateAudienceCompositionInsightsResponse response =
+   *       audienceInsightsServiceClient.generateAudienceCompositionInsights(
+   *           customerId, audience, dimensions);
+   * }
+   * }
+ * + * @param customerId Required. The ID of the customer. + * @param audience Required. The audience of interest for which insights are being requested. + * @param dimensions Required. The audience dimensions for which composition insights should be + * returned. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights( + String customerId, + InsightsAudience audience, + List dimensions) { + GenerateAudienceCompositionInsightsRequest request = + GenerateAudienceCompositionInsightsRequest.newBuilder() + .setCustomerId(customerId) + .setAudience(audience) + .addAllDimensions(dimensions) + .build(); + return generateAudienceCompositionInsights(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Returns a collection of attributes that are represented in an audience of interest, with + * metrics that compare each attribute's share of the audience with its share of a baseline + * audience. + * + *

List of thrown errors: [AudienceInsightsError]() [AuthenticationError]() + * [AuthorizationError]() [FieldError]() [HeaderError]() [InternalError]() [QuotaError]() + * [RangeError]() [RequestError]() + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
+   * try (AudienceInsightsServiceClient audienceInsightsServiceClient =
+   *     AudienceInsightsServiceClient.create()) {
+   *   GenerateAudienceCompositionInsightsRequest request =
+   *       GenerateAudienceCompositionInsightsRequest.newBuilder()
+   *           .setCustomerId("customerId-1581184615")
+   *           .setAudience(InsightsAudience.newBuilder().build())
+   *           .setDataMonth("dataMonth-380142346")
+   *           .addAllDimensions(
+   *               new ArrayList())
+   *           .setCustomerInsightsGroup("customerInsightsGroup1092118566")
+   *           .build();
+   *   GenerateAudienceCompositionInsightsResponse response =
+   *       audienceInsightsServiceClient.generateAudienceCompositionInsights(request);
+   * }
+   * }
+ * + * @param request The request object containing all of the parameters for the API call. + * @throws com.google.api.gax.rpc.ApiException if the remote call fails + */ + public final GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights( + GenerateAudienceCompositionInsightsRequest request) { + return generateAudienceCompositionInsightsCallable().call(request); + } + + // AUTO-GENERATED DOCUMENTATION AND METHOD. + /** + * Returns a collection of attributes that are represented in an audience of interest, with + * metrics that compare each attribute's share of the audience with its share of a baseline + * audience. + * + *

List of thrown errors: [AudienceInsightsError]() [AuthenticationError]() + * [AuthorizationError]() [FieldError]() [HeaderError]() [InternalError]() [QuotaError]() + * [RangeError]() [RequestError]() + * + *

Sample code: + * + *

{@code
+   * // This snippet has been automatically generated for illustrative purposes only.
+   * // It may require modifications to work in your environment.
+   * try (AudienceInsightsServiceClient audienceInsightsServiceClient =
+   *     AudienceInsightsServiceClient.create()) {
+   *   GenerateAudienceCompositionInsightsRequest request =
+   *       GenerateAudienceCompositionInsightsRequest.newBuilder()
+   *           .setCustomerId("customerId-1581184615")
+   *           .setAudience(InsightsAudience.newBuilder().build())
+   *           .setDataMonth("dataMonth-380142346")
+   *           .addAllDimensions(
+   *               new ArrayList())
+   *           .setCustomerInsightsGroup("customerInsightsGroup1092118566")
+   *           .build();
+   *   ApiFuture future =
+   *       audienceInsightsServiceClient
+   *           .generateAudienceCompositionInsightsCallable()
+   *           .futureCall(request);
+   *   // Do something.
+   *   GenerateAudienceCompositionInsightsResponse response = future.get();
+   * }
+   * }
+ */ + public final UnaryCallable< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsCallable() { + return stub.generateAudienceCompositionInsightsCallable(); + } + @Override public final void close() { stub.close(); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceGrpc.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceGrpc.java index eb94d6e260..d5eb316095 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceGrpc.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceGrpc.java @@ -81,6 +81,37 @@ com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesResponse> ge return getListAudienceInsightsAttributesMethod; } + private static volatile io.grpc.MethodDescriptor getGenerateAudienceCompositionInsightsMethod; + + @io.grpc.stub.annotations.RpcMethod( + fullMethodName = SERVICE_NAME + '/' + "GenerateAudienceCompositionInsights", + requestType = com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.class, + responseType = com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.class, + methodType = io.grpc.MethodDescriptor.MethodType.UNARY) + public static io.grpc.MethodDescriptor getGenerateAudienceCompositionInsightsMethod() { + io.grpc.MethodDescriptor getGenerateAudienceCompositionInsightsMethod; + if ((getGenerateAudienceCompositionInsightsMethod = AudienceInsightsServiceGrpc.getGenerateAudienceCompositionInsightsMethod) == null) { + synchronized (AudienceInsightsServiceGrpc.class) { + if ((getGenerateAudienceCompositionInsightsMethod = AudienceInsightsServiceGrpc.getGenerateAudienceCompositionInsightsMethod) == null) { + AudienceInsightsServiceGrpc.getGenerateAudienceCompositionInsightsMethod = getGenerateAudienceCompositionInsightsMethod = + io.grpc.MethodDescriptor.newBuilder() + .setType(io.grpc.MethodDescriptor.MethodType.UNARY) + .setFullMethodName(generateFullMethodName(SERVICE_NAME, "GenerateAudienceCompositionInsights")) + .setSampledToLocalTracing(true) + .setRequestMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.getDefaultInstance())) + .setResponseMarshaller(io.grpc.protobuf.ProtoUtils.marshaller( + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.getDefaultInstance())) + .setSchemaDescriptor(new AudienceInsightsServiceMethodDescriptorSupplier("GenerateAudienceCompositionInsights")) + .build(); + } + } + } + return getGenerateAudienceCompositionInsightsMethod; + } + /** * Creates a new async stub that supports all call types for the service */ @@ -171,6 +202,28 @@ public void listAudienceInsightsAttributes(com.google.ads.googleads.v11.services io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getListAudienceInsightsAttributesMethod(), responseObserver); } + /** + *
+     * Returns a collection of attributes that are represented in an audience of
+     * interest, with metrics that compare each attribute's share of the audience
+     * with its share of a baseline audience.
+     * List of thrown errors:
+     *   [AudienceInsightsError]()
+     *   [AuthenticationError]()
+     *   [AuthorizationError]()
+     *   [FieldError]()
+     *   [HeaderError]()
+     *   [InternalError]()
+     *   [QuotaError]()
+     *   [RangeError]()
+     *   [RequestError]()
+     * 
+ */ + public void generateAudienceCompositionInsights(com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ServerCalls.asyncUnimplementedUnaryCall(getGenerateAudienceCompositionInsightsMethod(), responseObserver); + } + @java.lang.Override public final io.grpc.ServerServiceDefinition bindService() { return io.grpc.ServerServiceDefinition.builder(getServiceDescriptor()) .addMethod( @@ -187,6 +240,13 @@ public void listAudienceInsightsAttributes(com.google.ads.googleads.v11.services com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesRequest, com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesResponse>( this, METHODID_LIST_AUDIENCE_INSIGHTS_ATTRIBUTES))) + .addMethod( + getGenerateAudienceCompositionInsightsMethod(), + io.grpc.stub.ServerCalls.asyncUnaryCall( + new MethodHandlers< + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest, + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse>( + this, METHODID_GENERATE_AUDIENCE_COMPOSITION_INSIGHTS))) .build(); } } @@ -248,6 +308,29 @@ public void listAudienceInsightsAttributes(com.google.ads.googleads.v11.services io.grpc.stub.ClientCalls.asyncUnaryCall( getChannel().newCall(getListAudienceInsightsAttributesMethod(), getCallOptions()), request, responseObserver); } + + /** + *
+     * Returns a collection of attributes that are represented in an audience of
+     * interest, with metrics that compare each attribute's share of the audience
+     * with its share of a baseline audience.
+     * List of thrown errors:
+     *   [AudienceInsightsError]()
+     *   [AuthenticationError]()
+     *   [AuthorizationError]()
+     *   [FieldError]()
+     *   [HeaderError]()
+     *   [InternalError]()
+     *   [QuotaError]()
+     *   [RangeError]()
+     *   [RequestError]()
+     * 
+ */ + public void generateAudienceCompositionInsights(com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest request, + io.grpc.stub.StreamObserver responseObserver) { + io.grpc.stub.ClientCalls.asyncUnaryCall( + getChannel().newCall(getGenerateAudienceCompositionInsightsMethod(), getCallOptions()), request, responseObserver); + } } /** @@ -305,6 +388,28 @@ public com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesRespo return io.grpc.stub.ClientCalls.blockingUnaryCall( getChannel(), getListAudienceInsightsAttributesMethod(), getCallOptions(), request); } + + /** + *
+     * Returns a collection of attributes that are represented in an audience of
+     * interest, with metrics that compare each attribute's share of the audience
+     * with its share of a baseline audience.
+     * List of thrown errors:
+     *   [AudienceInsightsError]()
+     *   [AuthenticationError]()
+     *   [AuthorizationError]()
+     *   [FieldError]()
+     *   [HeaderError]()
+     *   [InternalError]()
+     *   [QuotaError]()
+     *   [RangeError]()
+     *   [RequestError]()
+     * 
+ */ + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse generateAudienceCompositionInsights(com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest request) { + return io.grpc.stub.ClientCalls.blockingUnaryCall( + getChannel(), getGenerateAudienceCompositionInsightsMethod(), getCallOptions(), request); + } } /** @@ -364,10 +469,34 @@ public com.google.common.util.concurrent.ListenableFuture + * Returns a collection of attributes that are represented in an audience of + * interest, with metrics that compare each attribute's share of the audience + * with its share of a baseline audience. + * List of thrown errors: + * [AudienceInsightsError]() + * [AuthenticationError]() + * [AuthorizationError]() + * [FieldError]() + * [HeaderError]() + * [InternalError]() + * [QuotaError]() + * [RangeError]() + * [RequestError]() + *
+ */ + public com.google.common.util.concurrent.ListenableFuture generateAudienceCompositionInsights( + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest request) { + return io.grpc.stub.ClientCalls.futureUnaryCall( + getChannel().newCall(getGenerateAudienceCompositionInsightsMethod(), getCallOptions()), request); + } } private static final int METHODID_GENERATE_INSIGHTS_FINDER_REPORT = 0; private static final int METHODID_LIST_AUDIENCE_INSIGHTS_ATTRIBUTES = 1; + private static final int METHODID_GENERATE_AUDIENCE_COMPOSITION_INSIGHTS = 2; private static final class MethodHandlers implements io.grpc.stub.ServerCalls.UnaryMethod, @@ -394,6 +523,10 @@ public void invoke(Req request, io.grpc.stub.StreamObserver responseObserv serviceImpl.listAudienceInsightsAttributes((com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesRequest) request, (io.grpc.stub.StreamObserver) responseObserver); break; + case METHODID_GENERATE_AUDIENCE_COMPOSITION_INSIGHTS: + serviceImpl.generateAudienceCompositionInsights((com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) request, + (io.grpc.stub.StreamObserver) responseObserver); + break; default: throw new AssertionError(); } @@ -457,6 +590,7 @@ public static io.grpc.ServiceDescriptor getServiceDescriptor() { .setSchemaDescriptor(new AudienceInsightsServiceFileDescriptorSupplier()) .addMethod(getGenerateInsightsFinderReportMethod()) .addMethod(getListAudienceInsightsAttributesMethod()) + .addMethod(getGenerateAudienceCompositionInsightsMethod()) .build(); } } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceProto.java index c2571b28f7..6b8fbddf9e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceProto.java @@ -24,6 +24,16 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v11_services_GenerateInsightsFinderReportResponse_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesRequest_descriptor; static final @@ -54,6 +64,11 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v11_services_AudienceInsightsCategory_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_fieldAccessorTable; static final com.google.protobuf.Descriptors.Descriptor internal_static_google_ads_googleads_v11_services_BasicInsightsAudience_descriptor; static final @@ -64,6 +79,46 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v11_services_AudienceInsightsAttributeMetadata_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_InsightsAudience_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_InsightsAudience_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -89,79 +144,164 @@ public static void registerAllExtensions( "ces.BasicInsightsAudienceB\003\340A\002\022\037\n\027custom" + "er_insights_group\030\004 \001(\t\"@\n$GenerateInsig" + "htsFinderReportResponse\022\030\n\020saved_report_" + - "url\030\001 \001(\t\"\355\001\n%ListAudienceInsightsAttrib" + - "utesRequest\022\030\n\013customer_id\030\001 \001(\tB\003\340A\002\022p\n" + - "\ndimensions\030\002 \003(\0162W.google.ads.googleads" + - ".v11.enums.AudienceInsightsDimensionEnum" + - ".AudienceInsightsDimensionB\003\340A\002\022\027\n\nquery" + - "_text\030\003 \001(\tB\003\340A\002\022\037\n\027customer_insights_gr" + - "oup\030\004 \001(\t\"\202\001\n&ListAudienceInsightsAttrib" + - "utesResponse\022X\n\nattributes\030\001 \003(\0132D.googl" + + "url\030\001 \001(\t\"\271\002\n*GenerateAudienceCompositio" + + "nInsightsRequest\022\030\n\013customer_id\030\001 \001(\tB\003\340" + + "A\002\022J\n\010audience\030\002 \001(\01323.google.ads.google" + + "ads.v11.services.InsightsAudienceB\003\340A\002\022\022" + + "\n\ndata_month\030\003 \001(\t\022p\n\ndimensions\030\004 \003(\0162W" + + ".google.ads.googleads.v11.enums.Audience" + + "InsightsDimensionEnum.AudienceInsightsDi" + + "mensionB\003\340A\002\022\037\n\027customer_insights_group\030" + + "\005 \001(\t\"~\n+GenerateAudienceCompositionInsi" + + "ghtsResponse\022O\n\010sections\030\001 \003(\0132=.google." + + "ads.googleads.v11.services.AudienceCompo" + + "sitionSection\"\355\001\n%ListAudienceInsightsAt" + + "tributesRequest\022\030\n\013customer_id\030\001 \001(\tB\003\340A" + + "\002\022p\n\ndimensions\030\002 \003(\0162W.google.ads.googl" + + "eads.v11.enums.AudienceInsightsDimension" + + "Enum.AudienceInsightsDimensionB\003\340A\002\022\027\n\nq" + + "uery_text\030\003 \001(\tB\003\340A\002\022\037\n\027customer_insight" + + "s_group\030\004 \001(\t\"\202\001\n&ListAudienceInsightsAt" + + "tributesResponse\022X\n\nattributes\030\001 \003(\0132D.g" + + "oogle.ads.googleads.v11.services.Audienc" + + "eInsightsAttributeMetadata\"\236\006\n\031AudienceI" + + "nsightsAttribute\022B\n\tage_range\030\001 \001(\0132-.go" + + "ogle.ads.googleads.v11.common.AgeRangeIn" + + "foH\000\022=\n\006gender\030\002 \001(\0132+.google.ads.google" + + "ads.v11.common.GenderInfoH\000\022A\n\010location\030" + + "\003 \001(\0132-.google.ads.googleads.v11.common." + + "LocationInfoH\000\022J\n\ruser_interest\030\004 \001(\01321." + + "google.ads.googleads.v11.common.UserInte" + + "restInfoH\000\022K\n\006entity\030\005 \001(\01329.google.ads." + + "googleads.v11.services.AudienceInsightsE" + + "ntityH\000\022O\n\010category\030\006 \001(\0132;.google.ads.g" + + "oogleads.v11.services.AudienceInsightsCa" + + "tegoryH\000\022Z\n\016dynamic_lineup\030\007 \001(\0132@.googl" + "e.ads.googleads.v11.services.AudienceIns" + - "ightsAttributeMetadata\"\330\003\n\031AudienceInsig" + - "htsAttribute\022B\n\tage_range\030\001 \001(\0132-.google" + - ".ads.googleads.v11.common.AgeRangeInfoH\000" + - "\022=\n\006gender\030\002 \001(\0132+.google.ads.googleads." + - "v11.common.GenderInfoH\000\022A\n\010location\030\003 \001(" + - "\0132-.google.ads.googleads.v11.common.Loca" + - "tionInfoH\000\022J\n\ruser_interest\030\004 \001(\01321.goog" + - "le.ads.googleads.v11.common.UserInterest" + - "InfoH\000\022K\n\006entity\030\005 \001(\01329.google.ads.goog" + - "leads.v11.services.AudienceInsightsEntit" + - "yH\000\022O\n\010category\030\006 \001(\0132;.google.ads.googl" + - "eads.v11.services.AudienceInsightsCatego" + - "ryH\000B\013\n\tattribute\"\276\001\n\025AudienceInsightsTo" + - "pic\022K\n\006entity\030\001 \001(\01329.google.ads.googlea" + - "ds.v11.services.AudienceInsightsEntityH\000" + - "\022O\n\010category\030\002 \001(\0132;.google.ads.googlead" + - "s.v11.services.AudienceInsightsCategoryH" + - "\000B\007\n\005topic\"A\n\026AudienceInsightsEntity\022\'\n\032" + - "knowledge_graph_machine_id\030\001 \001(\tB\003\340A\002\"4\n" + - "\030AudienceInsightsCategory\022\030\n\013category_id" + - "\030\001 \001(\tB\003\340A\002\"\310\003\n\025BasicInsightsAudience\022L\n" + - "\020country_location\030\001 \003(\0132-.google.ads.goo" + - "gleads.v11.common.LocationInfoB\003\340A\002\022L\n\025s" + - "ub_country_locations\030\002 \003(\0132-.google.ads." + - "googleads.v11.common.LocationInfo\022;\n\006gen" + - "der\030\003 \001(\0132+.google.ads.googleads.v11.com" + - "mon.GenderInfo\022A\n\nage_ranges\030\004 \003(\0132-.goo" + - "gle.ads.googleads.v11.common.AgeRangeInf" + - "o\022I\n\016user_interests\030\005 \003(\01321.google.ads.g" + - "oogleads.v11.common.UserInterestInfo\022H\n\006" + - "topics\030\006 \003(\01328.google.ads.googleads.v11." + - "services.AudienceInsightsTopic\"\233\002\n!Audie" + - "nceInsightsAttributeMetadata\022j\n\tdimensio" + - "n\030\001 \001(\0162W.google.ads.googleads.v11.enums" + - ".AudienceInsightsDimensionEnum.AudienceI" + - "nsightsDimension\022O\n\tattribute\030\002 \001(\0132<.go" + - "ogle.ads.googleads.v11.services.Audience" + - "InsightsAttribute\022\024\n\014display_name\030\003 \001(\t\022" + - "\r\n\005score\030\004 \001(\001\022\024\n\014display_info\030\005 \001(\t2\264\005\n" + - "\027AudienceInsightsService\022\251\002\n\034GenerateIns" + - "ightsFinderReport\022F.google.ads.googleads" + - ".v11.services.GenerateInsightsFinderRepo" + - "rtRequest\032G.google.ads.googleads.v11.ser" + - "vices.GenerateInsightsFinderReportRespon" + - "se\"x\202\323\344\223\002@\";/v11/customers/{customer_id=" + - "*}:generateInsightsFinderReport:\001*\332A/cus" + - "tomer_id,baseline_audience,specific_audi" + - "ence\022\245\002\n\036ListAudienceInsightsAttributes\022" + - "H.google.ads.googleads.v11.services.List" + - "AudienceInsightsAttributesRequest\032I.goog" + - "le.ads.googleads.v11.services.ListAudien" + - "ceInsightsAttributesResponse\"n\202\323\344\223\002D\"?/v" + - "11/customers/{customer_id=*}:searchAudie" + - "nceInsightsAttributes:\001*\332A!customer_id,d" + - "imensions,query_text\032E\312A\030googleads.googl" + - "eapis.com\322A\'https://www.googleapis.com/a" + - "uth/adwordsB\210\002\n%com.google.ads.googleads" + - ".v11.servicesB\034AudienceInsightsServicePr" + - "otoP\001ZIgoogle.golang.org/genproto/google" + - "apis/ads/googleads/v11/services;services" + - "\242\002\003GAA\252\002!Google.Ads.GoogleAds.V11.Servic" + - "es\312\002!Google\\Ads\\GoogleAds\\V11\\Services\352\002" + - "%Google::Ads::GoogleAds::V11::Servicesb\006" + - "proto3" + "ightsDynamicLineupH\000\022N\n\017parental_status\030" + + "\010 \001(\01323.google.ads.googleads.v11.common." + + "ParentalStatusInfoH\000\022H\n\014income_range\030\t \001" + + "(\01320.google.ads.googleads.v11.common.Inc" + + "omeRangeInfoH\000\022N\n\017youtube_channel\030\n \001(\0132" + + "3.google.ads.googleads.v11.common.YouTub" + + "eChannelInfoH\000B\013\n\tattribute\"\276\001\n\025Audience" + + "InsightsTopic\022K\n\006entity\030\001 \001(\01329.google.a" + + "ds.googleads.v11.services.AudienceInsigh" + + "tsEntityH\000\022O\n\010category\030\002 \001(\0132;.google.ad" + + "s.googleads.v11.services.AudienceInsight" + + "sCategoryH\000B\007\n\005topic\"A\n\026AudienceInsights" + + "Entity\022\'\n\032knowledge_graph_machine_id\030\001 \001" + + "(\tB\003\340A\002\"4\n\030AudienceInsightsCategory\022\030\n\013c" + + "ategory_id\030\001 \001(\tB\003\340A\002\"?\n\035AudienceInsight" + + "sDynamicLineup\022\036\n\021dynamic_lineup_id\030\001 \001(" + + "\tB\003\340A\002\"\310\003\n\025BasicInsightsAudience\022L\n\020coun" + + "try_location\030\001 \003(\0132-.google.ads.googlead" + + "s.v11.common.LocationInfoB\003\340A\002\022L\n\025sub_co" + + "untry_locations\030\002 \003(\0132-.google.ads.googl" + + "eads.v11.common.LocationInfo\022;\n\006gender\030\003" + + " \001(\0132+.google.ads.googleads.v11.common.G" + + "enderInfo\022A\n\nage_ranges\030\004 \003(\0132-.google.a" + + "ds.googleads.v11.common.AgeRangeInfo\022I\n\016" + + "user_interests\030\005 \003(\01321.google.ads.google" + + "ads.v11.common.UserInterestInfo\022H\n\006topic" + + "s\030\006 \003(\01328.google.ads.googleads.v11.servi" + + "ces.AudienceInsightsTopic\"\202\004\n!AudienceIn" + + "sightsAttributeMetadata\022j\n\tdimension\030\001 \001" + + "(\0162W.google.ads.googleads.v11.enums.Audi" + + "enceInsightsDimensionEnum.AudienceInsigh" + + "tsDimension\022O\n\tattribute\030\002 \001(\0132<.google." + + "ads.googleads.v11.services.AudienceInsig" + + "htsAttribute\022\024\n\014display_name\030\003 \001(\t\022\r\n\005sc" + + "ore\030\004 \001(\001\022\024\n\014display_info\030\005 \001(\t\022f\n\030youtu" + + "be_channel_metadata\030\006 \001(\0132B.google.ads.g" + + "oogleads.v11.services.YouTubeChannelAttr" + + "ibuteMetadataH\000\022g\n\032dynamic_attribute_met" + + "adata\030\007 \001(\0132A.google.ads.googleads.v11.s" + + "ervices.DynamicLineupAttributeMetadataH\000" + + "B\024\n\022dimension_metadata\";\n\037YouTubeChannel" + + "AttributeMetadata\022\030\n\020subscriber_count\030\001 " + + "\001(\003\"\272\002\n\036DynamicLineupAttributeMetadata\022H" + + "\n\021inventory_country\030\001 \001(\0132-.google.ads.g" + + "oogleads.v11.common.LocationInfo\022%\n\030medi" + + "an_monthly_inventory\030\002 \001(\003H\000\210\001\001\022&\n\031chann" + + "el_count_lower_bound\030\003 \001(\003H\001\210\001\001\022&\n\031chann" + + "el_count_upper_bound\030\004 \001(\003H\002\210\001\001B\033\n\031_medi" + + "an_monthly_inventoryB\034\n\032_channel_count_l" + + "ower_boundB\034\n\032_channel_count_upper_bound" + + "\"\211\005\n\020InsightsAudience\022M\n\021country_locatio" + + "ns\030\001 \003(\0132-.google.ads.googleads.v11.comm" + + "on.LocationInfoB\003\340A\002\022L\n\025sub_country_loca" + + "tions\030\002 \003(\0132-.google.ads.googleads.v11.c" + + "ommon.LocationInfo\022;\n\006gender\030\003 \001(\0132+.goo" + + "gle.ads.googleads.v11.common.GenderInfo\022" + + "A\n\nage_ranges\030\004 \003(\0132-.google.ads.googlea" + + "ds.v11.common.AgeRangeInfo\022L\n\017parental_s" + + "tatus\030\005 \001(\01323.google.ads.googleads.v11.c" + + "ommon.ParentalStatusInfo\022G\n\rincome_range" + + "s\030\006 \003(\01320.google.ads.googleads.v11.commo" + + "n.IncomeRangeInfo\022Y\n\017dynamic_lineups\030\007 \003" + + "(\0132@.google.ads.googleads.v11.services.A" + + "udienceInsightsDynamicLineup\022f\n\033topic_au" + + "dience_combinations\030\010 \003(\0132A.google.ads.g" + + "oogleads.v11.services.InsightsAudienceAt" + + "tributeGroup\"w\n\036InsightsAudienceAttribut" + + "eGroup\022U\n\nattributes\030\001 \003(\0132<.google.ads." + + "googleads.v11.services.AudienceInsightsA" + + "ttributeB\003\340A\002\"\307\002\n\032AudienceCompositionSec" + + "tion\022j\n\tdimension\030\001 \001(\0162W.google.ads.goo" + + "gleads.v11.enums.AudienceInsightsDimensi" + + "onEnum.AudienceInsightsDimension\022W\n\016top_" + + "attributes\030\003 \003(\0132?.google.ads.googleads." + + "v11.services.AudienceCompositionAttribut" + + "e\022d\n\024clustered_attributes\030\004 \003(\0132F.google" + + ".ads.googleads.v11.services.AudienceComp" + + "ositionAttributeCluster\"\360\001\n#AudienceComp" + + "ositionAttributeCluster\022\034\n\024cluster_displ" + + "ay_name\030\001 \001(\t\022V\n\017cluster_metrics\030\003 \001(\0132=" + + ".google.ads.googleads.v11.services.Audie" + + "nceCompositionMetrics\022S\n\nattributes\030\004 \003(" + + "\0132?.google.ads.googleads.v11.services.Au" + + "dienceCompositionAttribute\"s\n\032AudienceCo" + + "mpositionMetrics\022\037\n\027baseline_audience_sh" + + "are\030\001 \001(\001\022\026\n\016audience_share\030\002 \001(\001\022\r\n\005ind" + + "ex\030\003 \001(\001\022\r\n\005score\030\004 \001(\001\"\320\001\n\034AudienceComp" + + "ositionAttribute\022`\n\022attribute_metadata\030\001" + + " \001(\0132D.google.ads.googleads.v11.services" + + ".AudienceInsightsAttributeMetadata\022N\n\007me" + + "trics\030\002 \001(\0132=.google.ads.googleads.v11.s" + + "ervices.AudienceCompositionMetrics2\354\007\n\027A" + + "udienceInsightsService\022\251\002\n\034GenerateInsig" + + "htsFinderReport\022F.google.ads.googleads.v" + + "11.services.GenerateInsightsFinderReport" + + "Request\032G.google.ads.googleads.v11.servi" + + "ces.GenerateInsightsFinderReportResponse" + + "\"x\202\323\344\223\002@\";/v11/customers/{customer_id=*}" + + ":generateInsightsFinderReport:\001*\332A/custo" + + "mer_id,baseline_audience,specific_audien" + + "ce\022\245\002\n\036ListAudienceInsightsAttributes\022H." + + "google.ads.googleads.v11.services.ListAu" + + "dienceInsightsAttributesRequest\032I.google" + + ".ads.googleads.v11.services.ListAudience" + + "InsightsAttributesResponse\"n\202\323\344\223\002D\"?/v11" + + "/customers/{customer_id=*}:searchAudienc" + + "eInsightsAttributes:\001*\332A!customer_id,dim" + + "ensions,query_text\022\265\002\n#GenerateAudienceC" + + "ompositionInsights\022M.google.ads.googlead" + + "s.v11.services.GenerateAudienceCompositi" + + "onInsightsRequest\032N.google.ads.googleads" + + ".v11.services.GenerateAudienceCompositio" + + "nInsightsResponse\"o\202\323\344\223\002G\"B/v11/customer" + + "s/{customer_id=*}:generateAudienceCompos" + + "itionInsights:\001*\332A\037customer_id,audience," + + "dimensions\032E\312A\030googleads.googleapis.com\322" + + "A\'https://www.googleapis.com/auth/adword" + + "sB\210\002\n%com.google.ads.googleads.v11.servi" + + "cesB\034AudienceInsightsServiceProtoP\001ZIgoo" + + "gle.golang.org/genproto/googleapis/ads/g" + + "oogleads/v11/services;services\242\002\003GAA\252\002!G" + + "oogle.Ads.GoogleAds.V11.Services\312\002!Googl" + + "e\\Ads\\GoogleAds\\V11\\Services\352\002%Google::A" + + "ds::GoogleAds::V11::Servicesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -184,54 +324,120 @@ public static void registerAllExtensions( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_GenerateInsightsFinderReportResponse_descriptor, new java.lang.String[] { "SavedReportUrl", }); - internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesRequest_descriptor = + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_descriptor = getDescriptor().getMessageTypes().get(2); + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_descriptor, + new java.lang.String[] { "CustomerId", "Audience", "DataMonth", "Dimensions", "CustomerInsightsGroup", }); + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_descriptor = + getDescriptor().getMessageTypes().get(3); + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_descriptor, + new java.lang.String[] { "Sections", }); + internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesRequest_descriptor = + getDescriptor().getMessageTypes().get(4); internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesRequest_descriptor, new java.lang.String[] { "CustomerId", "Dimensions", "QueryText", "CustomerInsightsGroup", }); internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesResponse_descriptor = - getDescriptor().getMessageTypes().get(3); + getDescriptor().getMessageTypes().get(5); internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_ListAudienceInsightsAttributesResponse_descriptor, new java.lang.String[] { "Attributes", }); internal_static_google_ads_googleads_v11_services_AudienceInsightsAttribute_descriptor = - getDescriptor().getMessageTypes().get(4); + getDescriptor().getMessageTypes().get(6); internal_static_google_ads_googleads_v11_services_AudienceInsightsAttribute_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_AudienceInsightsAttribute_descriptor, - new java.lang.String[] { "AgeRange", "Gender", "Location", "UserInterest", "Entity", "Category", "Attribute", }); + new java.lang.String[] { "AgeRange", "Gender", "Location", "UserInterest", "Entity", "Category", "DynamicLineup", "ParentalStatus", "IncomeRange", "YoutubeChannel", "Attribute", }); internal_static_google_ads_googleads_v11_services_AudienceInsightsTopic_descriptor = - getDescriptor().getMessageTypes().get(5); + getDescriptor().getMessageTypes().get(7); internal_static_google_ads_googleads_v11_services_AudienceInsightsTopic_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_AudienceInsightsTopic_descriptor, new java.lang.String[] { "Entity", "Category", "Topic", }); internal_static_google_ads_googleads_v11_services_AudienceInsightsEntity_descriptor = - getDescriptor().getMessageTypes().get(6); + getDescriptor().getMessageTypes().get(8); internal_static_google_ads_googleads_v11_services_AudienceInsightsEntity_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_AudienceInsightsEntity_descriptor, new java.lang.String[] { "KnowledgeGraphMachineId", }); internal_static_google_ads_googleads_v11_services_AudienceInsightsCategory_descriptor = - getDescriptor().getMessageTypes().get(7); + getDescriptor().getMessageTypes().get(9); internal_static_google_ads_googleads_v11_services_AudienceInsightsCategory_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_AudienceInsightsCategory_descriptor, new java.lang.String[] { "CategoryId", }); + internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_descriptor = + getDescriptor().getMessageTypes().get(10); + internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_AudienceInsightsDynamicLineup_descriptor, + new java.lang.String[] { "DynamicLineupId", }); internal_static_google_ads_googleads_v11_services_BasicInsightsAudience_descriptor = - getDescriptor().getMessageTypes().get(8); + getDescriptor().getMessageTypes().get(11); internal_static_google_ads_googleads_v11_services_BasicInsightsAudience_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_BasicInsightsAudience_descriptor, new java.lang.String[] { "CountryLocation", "SubCountryLocations", "Gender", "AgeRanges", "UserInterests", "Topics", }); internal_static_google_ads_googleads_v11_services_AudienceInsightsAttributeMetadata_descriptor = - getDescriptor().getMessageTypes().get(9); + getDescriptor().getMessageTypes().get(12); internal_static_google_ads_googleads_v11_services_AudienceInsightsAttributeMetadata_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_AudienceInsightsAttributeMetadata_descriptor, - new java.lang.String[] { "Dimension", "Attribute", "DisplayName", "Score", "DisplayInfo", }); + new java.lang.String[] { "Dimension", "Attribute", "DisplayName", "Score", "DisplayInfo", "YoutubeChannelMetadata", "DynamicAttributeMetadata", "DimensionMetadata", }); + internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_descriptor = + getDescriptor().getMessageTypes().get(13); + internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_descriptor, + new java.lang.String[] { "SubscriberCount", }); + internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_descriptor = + getDescriptor().getMessageTypes().get(14); + internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_descriptor, + new java.lang.String[] { "InventoryCountry", "MedianMonthlyInventory", "ChannelCountLowerBound", "ChannelCountUpperBound", "MedianMonthlyInventory", "ChannelCountLowerBound", "ChannelCountUpperBound", }); + internal_static_google_ads_googleads_v11_services_InsightsAudience_descriptor = + getDescriptor().getMessageTypes().get(15); + internal_static_google_ads_googleads_v11_services_InsightsAudience_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_InsightsAudience_descriptor, + new java.lang.String[] { "CountryLocations", "SubCountryLocations", "Gender", "AgeRanges", "ParentalStatus", "IncomeRanges", "DynamicLineups", "TopicAudienceCombinations", }); + internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_descriptor = + getDescriptor().getMessageTypes().get(16); + internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_descriptor, + new java.lang.String[] { "Attributes", }); + internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_descriptor = + getDescriptor().getMessageTypes().get(17); + internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_AudienceCompositionSection_descriptor, + new java.lang.String[] { "Dimension", "TopAttributes", "ClusteredAttributes", }); + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_descriptor = + getDescriptor().getMessageTypes().get(18); + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttributeCluster_descriptor, + new java.lang.String[] { "ClusterDisplayName", "ClusterMetrics", "Attributes", }); + internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_descriptor = + getDescriptor().getMessageTypes().get(19); + internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_AudienceCompositionMetrics_descriptor, + new java.lang.String[] { "BaselineAudienceShare", "AudienceShare", "Index", "Score", }); + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_descriptor = + getDescriptor().getMessageTypes().get(20); + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_AudienceCompositionAttribute_descriptor, + new java.lang.String[] { "AttributeMetadata", "Metrics", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.ClientProto.defaultHost); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceSettings.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceSettings.java index 7126a29e7b..da84c844b6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceSettings.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceSettings.java @@ -87,6 +87,14 @@ public class AudienceInsightsServiceSettings .listAudienceInsightsAttributesSettings(); } + /** Returns the object with the settings used for calls to generateAudienceCompositionInsights. */ + public UnaryCallSettings< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsSettings() { + return ((AudienceInsightsServiceStubSettings) getStubSettings()) + .generateAudienceCompositionInsightsSettings(); + } + public static final AudienceInsightsServiceSettings create( AudienceInsightsServiceStubSettings stub) throws IOException { return new AudienceInsightsServiceSettings.Builder(stub.toBuilder()).build(); @@ -199,6 +207,15 @@ public Builder applyToAllUnaryMethods( return getStubSettingsBuilder().listAudienceInsightsAttributesSettings(); } + /** + * Returns the builder for the settings used for calls to generateAudienceCompositionInsights. + */ + public UnaryCallSettings.Builder< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsSettings() { + return getStubSettingsBuilder().generateAudienceCompositionInsightsSettings(); + } + @Override public AudienceInsightsServiceSettings build() throws IOException { return new AudienceInsightsServiceSettings(this); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceTargeting.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceTargeting.java new file mode 100644 index 0000000000..ff395986ad --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceTargeting.java @@ -0,0 +1,872 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * Audience targeting for reach forecast.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceTargeting} + */ +public final class AudienceTargeting extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.AudienceTargeting) + AudienceTargetingOrBuilder { +private static final long serialVersionUID = 0L; + // Use AudienceTargeting.newBuilder() to construct. + private AudienceTargeting(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private AudienceTargeting() { + userInterest_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new AudienceTargeting(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private AudienceTargeting( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + userInterest_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + userInterest_.add( + input.readMessage(com.google.ads.googleads.v11.common.UserInterestInfo.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + userInterest_ = java.util.Collections.unmodifiableList(userInterest_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AudienceTargeting_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AudienceTargeting_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceTargeting.class, com.google.ads.googleads.v11.services.AudienceTargeting.Builder.class); + } + + public static final int USER_INTEREST_FIELD_NUMBER = 1; + private java.util.List userInterest_; + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + @java.lang.Override + public java.util.List getUserInterestList() { + return userInterest_; + } + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + @java.lang.Override + public java.util.List + getUserInterestOrBuilderList() { + return userInterest_; + } + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + @java.lang.Override + public int getUserInterestCount() { + return userInterest_.size(); + } + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.UserInterestInfo getUserInterest(int index) { + return userInterest_.get(index); + } + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.UserInterestInfoOrBuilder getUserInterestOrBuilder( + int index) { + return userInterest_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + for (int i = 0; i < userInterest_.size(); i++) { + output.writeMessage(1, userInterest_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < userInterest_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, userInterest_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.AudienceTargeting)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.AudienceTargeting other = (com.google.ads.googleads.v11.services.AudienceTargeting) obj; + + if (!getUserInterestList() + .equals(other.getUserInterestList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getUserInterestCount() > 0) { + hash = (37 * hash) + USER_INTEREST_FIELD_NUMBER; + hash = (53 * hash) + getUserInterestList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.AudienceTargeting parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.AudienceTargeting prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Audience targeting for reach forecast.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.AudienceTargeting} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.AudienceTargeting) + com.google.ads.googleads.v11.services.AudienceTargetingOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AudienceTargeting_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AudienceTargeting_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.AudienceTargeting.class, com.google.ads.googleads.v11.services.AudienceTargeting.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.AudienceTargeting.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getUserInterestFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (userInterestBuilder_ == null) { + userInterest_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + userInterestBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_AudienceTargeting_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceTargeting getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.AudienceTargeting.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceTargeting build() { + com.google.ads.googleads.v11.services.AudienceTargeting result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceTargeting buildPartial() { + com.google.ads.googleads.v11.services.AudienceTargeting result = new com.google.ads.googleads.v11.services.AudienceTargeting(this); + int from_bitField0_ = bitField0_; + if (userInterestBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + userInterest_ = java.util.Collections.unmodifiableList(userInterest_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.userInterest_ = userInterest_; + } else { + result.userInterest_ = userInterestBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.AudienceTargeting) { + return mergeFrom((com.google.ads.googleads.v11.services.AudienceTargeting)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.AudienceTargeting other) { + if (other == com.google.ads.googleads.v11.services.AudienceTargeting.getDefaultInstance()) return this; + if (userInterestBuilder_ == null) { + if (!other.userInterest_.isEmpty()) { + if (userInterest_.isEmpty()) { + userInterest_ = other.userInterest_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureUserInterestIsMutable(); + userInterest_.addAll(other.userInterest_); + } + onChanged(); + } + } else { + if (!other.userInterest_.isEmpty()) { + if (userInterestBuilder_.isEmpty()) { + userInterestBuilder_.dispose(); + userInterestBuilder_ = null; + userInterest_ = other.userInterest_; + bitField0_ = (bitField0_ & ~0x00000001); + userInterestBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getUserInterestFieldBuilder() : null; + } else { + userInterestBuilder_.addAllMessages(other.userInterest_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.AudienceTargeting parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.AudienceTargeting) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.util.List userInterest_ = + java.util.Collections.emptyList(); + private void ensureUserInterestIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + userInterest_ = new java.util.ArrayList(userInterest_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.UserInterestInfo, com.google.ads.googleads.v11.common.UserInterestInfo.Builder, com.google.ads.googleads.v11.common.UserInterestInfoOrBuilder> userInterestBuilder_; + + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public java.util.List getUserInterestList() { + if (userInterestBuilder_ == null) { + return java.util.Collections.unmodifiableList(userInterest_); + } else { + return userInterestBuilder_.getMessageList(); + } + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public int getUserInterestCount() { + if (userInterestBuilder_ == null) { + return userInterest_.size(); + } else { + return userInterestBuilder_.getCount(); + } + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public com.google.ads.googleads.v11.common.UserInterestInfo getUserInterest(int index) { + if (userInterestBuilder_ == null) { + return userInterest_.get(index); + } else { + return userInterestBuilder_.getMessage(index); + } + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder setUserInterest( + int index, com.google.ads.googleads.v11.common.UserInterestInfo value) { + if (userInterestBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureUserInterestIsMutable(); + userInterest_.set(index, value); + onChanged(); + } else { + userInterestBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder setUserInterest( + int index, com.google.ads.googleads.v11.common.UserInterestInfo.Builder builderForValue) { + if (userInterestBuilder_ == null) { + ensureUserInterestIsMutable(); + userInterest_.set(index, builderForValue.build()); + onChanged(); + } else { + userInterestBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder addUserInterest(com.google.ads.googleads.v11.common.UserInterestInfo value) { + if (userInterestBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureUserInterestIsMutable(); + userInterest_.add(value); + onChanged(); + } else { + userInterestBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder addUserInterest( + int index, com.google.ads.googleads.v11.common.UserInterestInfo value) { + if (userInterestBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureUserInterestIsMutable(); + userInterest_.add(index, value); + onChanged(); + } else { + userInterestBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder addUserInterest( + com.google.ads.googleads.v11.common.UserInterestInfo.Builder builderForValue) { + if (userInterestBuilder_ == null) { + ensureUserInterestIsMutable(); + userInterest_.add(builderForValue.build()); + onChanged(); + } else { + userInterestBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder addUserInterest( + int index, com.google.ads.googleads.v11.common.UserInterestInfo.Builder builderForValue) { + if (userInterestBuilder_ == null) { + ensureUserInterestIsMutable(); + userInterest_.add(index, builderForValue.build()); + onChanged(); + } else { + userInterestBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder addAllUserInterest( + java.lang.Iterable values) { + if (userInterestBuilder_ == null) { + ensureUserInterestIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, userInterest_); + onChanged(); + } else { + userInterestBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder clearUserInterest() { + if (userInterestBuilder_ == null) { + userInterest_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + userInterestBuilder_.clear(); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public Builder removeUserInterest(int index) { + if (userInterestBuilder_ == null) { + ensureUserInterestIsMutable(); + userInterest_.remove(index); + onChanged(); + } else { + userInterestBuilder_.remove(index); + } + return this; + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public com.google.ads.googleads.v11.common.UserInterestInfo.Builder getUserInterestBuilder( + int index) { + return getUserInterestFieldBuilder().getBuilder(index); + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public com.google.ads.googleads.v11.common.UserInterestInfoOrBuilder getUserInterestOrBuilder( + int index) { + if (userInterestBuilder_ == null) { + return userInterest_.get(index); } else { + return userInterestBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public java.util.List + getUserInterestOrBuilderList() { + if (userInterestBuilder_ != null) { + return userInterestBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(userInterest_); + } + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public com.google.ads.googleads.v11.common.UserInterestInfo.Builder addUserInterestBuilder() { + return getUserInterestFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.UserInterestInfo.getDefaultInstance()); + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public com.google.ads.googleads.v11.common.UserInterestInfo.Builder addUserInterestBuilder( + int index) { + return getUserInterestFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.UserInterestInfo.getDefaultInstance()); + } + /** + *
+     * List of audiences based on user interests to be targeted.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + public java.util.List + getUserInterestBuilderList() { + return getUserInterestFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.UserInterestInfo, com.google.ads.googleads.v11.common.UserInterestInfo.Builder, com.google.ads.googleads.v11.common.UserInterestInfoOrBuilder> + getUserInterestFieldBuilder() { + if (userInterestBuilder_ == null) { + userInterestBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.UserInterestInfo, com.google.ads.googleads.v11.common.UserInterestInfo.Builder, com.google.ads.googleads.v11.common.UserInterestInfoOrBuilder>( + userInterest_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + userInterest_ = null; + } + return userInterestBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.AudienceTargeting) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.AudienceTargeting) + private static final com.google.ads.googleads.v11.services.AudienceTargeting DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.AudienceTargeting(); + } + + public static com.google.ads.googleads.v11.services.AudienceTargeting getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public AudienceTargeting parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new AudienceTargeting(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceTargeting getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceTargetingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceTargetingOrBuilder.java new file mode 100644 index 0000000000..b1e9df3f0b --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/AudienceTargetingOrBuilder.java @@ -0,0 +1,53 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +public interface AudienceTargetingOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.AudienceTargeting) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + java.util.List + getUserInterestList(); + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + com.google.ads.googleads.v11.common.UserInterestInfo getUserInterest(int index); + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + int getUserInterestCount(); + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + java.util.List + getUserInterestOrBuilderList(); + /** + *
+   * List of audiences based on user interests to be targeted.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.UserInterestInfo user_interest = 1; + */ + com.google.ads.googleads.v11.common.UserInterestInfoOrBuilder getUserInterestOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversion.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversion.java index dcbb346f71..47220a7822 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversion.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversion.java @@ -146,7 +146,7 @@ private CallConversion( /** *
    * The caller id from which this call was placed. Caller id is expected to be
-   * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+   * in E.164 format with preceding '+' sign, for example, "+16502531234".
    * 
* * optional string caller_id = 7; @@ -159,7 +159,7 @@ public boolean hasCallerId() { /** *
    * The caller id from which this call was placed. Caller id is expected to be
-   * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+   * in E.164 format with preceding '+' sign, for example, "+16502531234".
    * 
* * optional string caller_id = 7; @@ -181,7 +181,7 @@ public java.lang.String getCallerId() { /** *
    * The caller id from which this call was placed. Caller id is expected to be
-   * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+   * in E.164 format with preceding '+' sign, for example, "+16502531234".
    * 
* * optional string caller_id = 7; @@ -208,7 +208,7 @@ public java.lang.String getCallerId() { *
    * The date time at which the call occurred. The timezone must be specified.
    * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-   * e.g. "2019-01-01 12:32:45-08:00".
+   * for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 8; @@ -222,7 +222,7 @@ public boolean hasCallStartDateTime() { *
    * The date time at which the call occurred. The timezone must be specified.
    * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-   * e.g. "2019-01-01 12:32:45-08:00".
+   * for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 8; @@ -245,7 +245,7 @@ public java.lang.String getCallStartDateTime() { *
    * The date time at which the call occurred. The timezone must be specified.
    * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-   * e.g. "2019-01-01 12:32:45-08:00".
+   * for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 8; @@ -339,7 +339,7 @@ public java.lang.String getConversionAction() { *
    * The date time at which the conversion occurred. Must be after the call
    * time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 10; @@ -353,7 +353,7 @@ public boolean hasConversionDateTime() { *
    * The date time at which the conversion occurred. Must be after the call
    * time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 10; @@ -376,7 +376,7 @@ public java.lang.String getConversionDateTime() { *
    * The date time at which the conversion occurred. Must be after the call
    * time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 10; @@ -1054,7 +1054,7 @@ public Builder mergeFrom( /** *
      * The caller id from which this call was placed. Caller id is expected to be
-     * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+     * in E.164 format with preceding '+' sign, for example, "+16502531234".
      * 
* * optional string caller_id = 7; @@ -1066,7 +1066,7 @@ public boolean hasCallerId() { /** *
      * The caller id from which this call was placed. Caller id is expected to be
-     * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+     * in E.164 format with preceding '+' sign, for example, "+16502531234".
      * 
* * optional string caller_id = 7; @@ -1087,7 +1087,7 @@ public java.lang.String getCallerId() { /** *
      * The caller id from which this call was placed. Caller id is expected to be
-     * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+     * in E.164 format with preceding '+' sign, for example, "+16502531234".
      * 
* * optional string caller_id = 7; @@ -1109,7 +1109,7 @@ public java.lang.String getCallerId() { /** *
      * The caller id from which this call was placed. Caller id is expected to be
-     * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+     * in E.164 format with preceding '+' sign, for example, "+16502531234".
      * 
* * optional string caller_id = 7; @@ -1129,7 +1129,7 @@ public Builder setCallerId( /** *
      * The caller id from which this call was placed. Caller id is expected to be
-     * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+     * in E.164 format with preceding '+' sign, for example, "+16502531234".
      * 
* * optional string caller_id = 7; @@ -1144,7 +1144,7 @@ public Builder clearCallerId() { /** *
      * The caller id from which this call was placed. Caller id is expected to be
-     * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+     * in E.164 format with preceding '+' sign, for example, "+16502531234".
      * 
* * optional string caller_id = 7; @@ -1168,7 +1168,7 @@ public Builder setCallerIdBytes( *
      * The date time at which the call occurred. The timezone must be specified.
      * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-     * e.g. "2019-01-01 12:32:45-08:00".
+     * for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 8; @@ -1181,7 +1181,7 @@ public boolean hasCallStartDateTime() { *
      * The date time at which the call occurred. The timezone must be specified.
      * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-     * e.g. "2019-01-01 12:32:45-08:00".
+     * for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 8; @@ -1203,7 +1203,7 @@ public java.lang.String getCallStartDateTime() { *
      * The date time at which the call occurred. The timezone must be specified.
      * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-     * e.g. "2019-01-01 12:32:45-08:00".
+     * for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 8; @@ -1226,7 +1226,7 @@ public java.lang.String getCallStartDateTime() { *
      * The date time at which the call occurred. The timezone must be specified.
      * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-     * e.g. "2019-01-01 12:32:45-08:00".
+     * for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 8; @@ -1247,7 +1247,7 @@ public Builder setCallStartDateTime( *
      * The date time at which the call occurred. The timezone must be specified.
      * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-     * e.g. "2019-01-01 12:32:45-08:00".
+     * for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 8; @@ -1263,7 +1263,7 @@ public Builder clearCallStartDateTime() { *
      * The date time at which the call occurred. The timezone must be specified.
      * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-     * e.g. "2019-01-01 12:32:45-08:00".
+     * for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 8; @@ -1412,7 +1412,7 @@ public Builder setConversionActionBytes( *
      * The date time at which the conversion occurred. Must be after the call
      * time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 10; @@ -1425,7 +1425,7 @@ public boolean hasConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after the call
      * time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 10; @@ -1447,7 +1447,7 @@ public java.lang.String getConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after the call
      * time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 10; @@ -1470,7 +1470,7 @@ public java.lang.String getConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after the call
      * time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 10; @@ -1491,7 +1491,7 @@ public Builder setConversionDateTime( *
      * The date time at which the conversion occurred. Must be after the call
      * time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 10; @@ -1507,7 +1507,7 @@ public Builder clearConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after the call
      * time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 10; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionOrBuilder.java index 1a07f75f9c..c6b24e1f0d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionOrBuilder.java @@ -10,7 +10,7 @@ public interface CallConversionOrBuilder extends /** *
    * The caller id from which this call was placed. Caller id is expected to be
-   * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+   * in E.164 format with preceding '+' sign, for example, "+16502531234".
    * 
* * optional string caller_id = 7; @@ -20,7 +20,7 @@ public interface CallConversionOrBuilder extends /** *
    * The caller id from which this call was placed. Caller id is expected to be
-   * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+   * in E.164 format with preceding '+' sign, for example, "+16502531234".
    * 
* * optional string caller_id = 7; @@ -30,7 +30,7 @@ public interface CallConversionOrBuilder extends /** *
    * The caller id from which this call was placed. Caller id is expected to be
-   * in E.164 format with preceding '+' sign. e.g. "+16502531234".
+   * in E.164 format with preceding '+' sign, for example, "+16502531234".
    * 
* * optional string caller_id = 7; @@ -43,7 +43,7 @@ public interface CallConversionOrBuilder extends *
    * The date time at which the call occurred. The timezone must be specified.
    * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-   * e.g. "2019-01-01 12:32:45-08:00".
+   * for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 8; @@ -54,7 +54,7 @@ public interface CallConversionOrBuilder extends *
    * The date time at which the call occurred. The timezone must be specified.
    * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-   * e.g. "2019-01-01 12:32:45-08:00".
+   * for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 8; @@ -65,7 +65,7 @@ public interface CallConversionOrBuilder extends *
    * The date time at which the call occurred. The timezone must be specified.
    * The format is "yyyy-mm-dd hh:mm:ss+|-hh:mm",
-   * e.g. "2019-01-01 12:32:45-08:00".
+   * for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 8; @@ -116,7 +116,7 @@ public interface CallConversionOrBuilder extends *
    * The date time at which the conversion occurred. Must be after the call
    * time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 10; @@ -127,7 +127,7 @@ public interface CallConversionOrBuilder extends *
    * The date time at which the conversion occurred. Must be after the call
    * time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 10; @@ -138,7 +138,7 @@ public interface CallConversionOrBuilder extends *
    * The date time at which the conversion occurred. Must be after the call
    * time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 10; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResult.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResult.java index 41acf3a04b..5fc6595a50 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResult.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResult.java @@ -182,7 +182,7 @@ public java.lang.String getCallerId() { /** *
    * The date time at which the call occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 6; @@ -195,7 +195,7 @@ public boolean hasCallStartDateTime() { /** *
    * The date time at which the call occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 6; @@ -217,7 +217,7 @@ public java.lang.String getCallStartDateTime() { /** *
    * The date time at which the call occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 6; @@ -301,7 +301,7 @@ public java.lang.String getConversionAction() { /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 8; @@ -314,7 +314,7 @@ public boolean hasConversionDateTime() { /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 8; @@ -336,7 +336,7 @@ public java.lang.String getConversionDateTime() { /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 8; @@ -871,7 +871,7 @@ public Builder setCallerIdBytes( /** *
      * The date time at which the call occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 6; @@ -883,7 +883,7 @@ public boolean hasCallStartDateTime() { /** *
      * The date time at which the call occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 6; @@ -904,7 +904,7 @@ public java.lang.String getCallStartDateTime() { /** *
      * The date time at which the call occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 6; @@ -926,7 +926,7 @@ public java.lang.String getCallStartDateTime() { /** *
      * The date time at which the call occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 6; @@ -946,7 +946,7 @@ public Builder setCallStartDateTime( /** *
      * The date time at which the call occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 6; @@ -961,7 +961,7 @@ public Builder clearCallStartDateTime() { /** *
      * The date time at which the call occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string call_start_date_time = 6; @@ -1091,7 +1091,7 @@ public Builder setConversionActionBytes( /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 8; @@ -1103,7 +1103,7 @@ public boolean hasConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 8; @@ -1124,7 +1124,7 @@ public java.lang.String getConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 8; @@ -1146,7 +1146,7 @@ public java.lang.String getConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 8; @@ -1166,7 +1166,7 @@ public Builder setConversionDateTime( /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 8; @@ -1181,7 +1181,7 @@ public Builder clearConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 8; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResultOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResultOrBuilder.java index f6afe212ec..025e97a818 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResultOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CallConversionResultOrBuilder.java @@ -42,7 +42,7 @@ public interface CallConversionResultOrBuilder extends /** *
    * The date time at which the call occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 6; @@ -52,7 +52,7 @@ public interface CallConversionResultOrBuilder extends /** *
    * The date time at which the call occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 6; @@ -62,7 +62,7 @@ public interface CallConversionResultOrBuilder extends /** *
    * The date time at which the call occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string call_start_date_time = 6; @@ -103,7 +103,7 @@ public interface CallConversionResultOrBuilder extends /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 8; @@ -113,7 +113,7 @@ public interface CallConversionResultOrBuilder extends /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 8; @@ -123,7 +123,7 @@ public interface CallConversionResultOrBuilder extends /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 8; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversion.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversion.java index 63f33639e3..8d5427892f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversion.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversion.java @@ -428,7 +428,7 @@ public java.lang.String getConversionAction() { *
    * The date time at which the conversion occurred. Must be after
    * the click time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 11; @@ -442,7 +442,7 @@ public boolean hasConversionDateTime() { *
    * The date time at which the conversion occurred. Must be after
    * the click time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 11; @@ -465,7 +465,7 @@ public java.lang.String getConversionDateTime() { *
    * The date time at which the conversion occurred. Must be after
    * the click time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 11; @@ -851,7 +851,7 @@ public com.google.ads.googleads.v11.common.UserIdentifierOrBuilder getUserIdenti private int conversionEnvironment_; /** *
-   * The environment this conversion was recorded on. e.g. App or Web.
+   * The environment this conversion was recorded on, for example, App or Web.
    * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; @@ -862,7 +862,7 @@ public com.google.ads.googleads.v11.common.UserIdentifierOrBuilder getUserIdenti } /** *
-   * The environment this conversion was recorded on. e.g. App or Web.
+   * The environment this conversion was recorded on, for example, App or Web.
    * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; @@ -1983,7 +1983,7 @@ public Builder setConversionActionBytes( *
      * The date time at which the conversion occurred. Must be after
      * the click time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 11; @@ -1996,7 +1996,7 @@ public boolean hasConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after
      * the click time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 11; @@ -2018,7 +2018,7 @@ public java.lang.String getConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after
      * the click time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 11; @@ -2041,7 +2041,7 @@ public java.lang.String getConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after
      * the click time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 11; @@ -2062,7 +2062,7 @@ public Builder setConversionDateTime( *
      * The date time at which the conversion occurred. Must be after
      * the click time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 11; @@ -2078,7 +2078,7 @@ public Builder clearConversionDateTime() { *
      * The date time at which the conversion occurred. Must be after
      * the click time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 11; @@ -3369,7 +3369,7 @@ public com.google.ads.googleads.v11.common.UserIdentifier.Builder addUserIdentif private int conversionEnvironment_ = 0; /** *
-     * The environment this conversion was recorded on. e.g. App or Web.
+     * The environment this conversion was recorded on, for example, App or Web.
      * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; @@ -3380,7 +3380,7 @@ public com.google.ads.googleads.v11.common.UserIdentifier.Builder addUserIdentif } /** *
-     * The environment this conversion was recorded on. e.g. App or Web.
+     * The environment this conversion was recorded on, for example, App or Web.
      * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; @@ -3395,7 +3395,7 @@ public Builder setConversionEnvironmentValue(int value) { } /** *
-     * The environment this conversion was recorded on. e.g. App or Web.
+     * The environment this conversion was recorded on, for example, App or Web.
      * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; @@ -3409,7 +3409,7 @@ public com.google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEn } /** *
-     * The environment this conversion was recorded on. e.g. App or Web.
+     * The environment this conversion was recorded on, for example, App or Web.
      * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; @@ -3427,7 +3427,7 @@ public Builder setConversionEnvironment(com.google.ads.googleads.v11.enums.Conve } /** *
-     * The environment this conversion was recorded on. e.g. App or Web.
+     * The environment this conversion was recorded on, for example, App or Web.
      * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionOrBuilder.java index 17b8fde89a..e3368ba03e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionOrBuilder.java @@ -122,7 +122,7 @@ public interface ClickConversionOrBuilder extends *
    * The date time at which the conversion occurred. Must be after
    * the click time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 11; @@ -133,7 +133,7 @@ public interface ClickConversionOrBuilder extends *
    * The date time at which the conversion occurred. Must be after
    * the click time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 11; @@ -144,7 +144,7 @@ public interface ClickConversionOrBuilder extends *
    * The date time at which the conversion occurred. Must be after
    * the click time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 11; @@ -396,7 +396,7 @@ com.google.ads.googleads.v11.common.UserIdentifierOrBuilder getUserIdentifiersOr /** *
-   * The environment this conversion was recorded on. e.g. App or Web.
+   * The environment this conversion was recorded on, for example, App or Web.
    * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; @@ -405,7 +405,7 @@ com.google.ads.googleads.v11.common.UserIdentifierOrBuilder getUserIdentifiersOr int getConversionEnvironmentValue(); /** *
-   * The environment this conversion was recorded on. e.g. App or Web.
+   * The environment this conversion was recorded on, for example, App or Web.
    * 
* * .google.ads.googleads.v11.enums.ConversionEnvironmentEnum.ConversionEnvironment conversion_environment = 20; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResult.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResult.java index 0b515a09c0..7d8f95edd1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResult.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResult.java @@ -353,7 +353,7 @@ public java.lang.String getConversionAction() { /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 6; @@ -366,7 +366,7 @@ public boolean hasConversionDateTime() { /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 6; @@ -388,7 +388,7 @@ public java.lang.String getConversionDateTime() { /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 6; @@ -1359,7 +1359,7 @@ public Builder setConversionActionBytes( /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 6; @@ -1371,7 +1371,7 @@ public boolean hasConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 6; @@ -1392,7 +1392,7 @@ public java.lang.String getConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 6; @@ -1414,7 +1414,7 @@ public java.lang.String getConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 6; @@ -1434,7 +1434,7 @@ public Builder setConversionDateTime( /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 6; @@ -1449,7 +1449,7 @@ public Builder clearConversionDateTime() { /** *
      * The date time at which the conversion occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 6; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResultOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResultOrBuilder.java index f37a5ea9de..bdb7d1c921 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResultOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ClickConversionResultOrBuilder.java @@ -112,7 +112,7 @@ public interface ClickConversionResultOrBuilder extends /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 6; @@ -122,7 +122,7 @@ public interface ClickConversionResultOrBuilder extends /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 6; @@ -132,7 +132,7 @@ public interface ClickConversionResultOrBuilder extends /** *
    * The date time at which the conversion occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 6; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustment.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustment.java index 5040a3bad1..856fe30c2e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustment.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustment.java @@ -343,7 +343,7 @@ public java.lang.String getConversionAction() { *
    * The date time at which the adjustment occurred. Must be after the
    * conversion_date_time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 9; @@ -357,7 +357,7 @@ public boolean hasAdjustmentDateTime() { *
    * The date time at which the adjustment occurred. Must be after the
    * conversion_date_time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 9; @@ -380,7 +380,7 @@ public java.lang.String getAdjustmentDateTime() { *
    * The date time at which the adjustment occurred. Must be after the
    * conversion_date_time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 9; @@ -1585,7 +1585,7 @@ public Builder setConversionActionBytes( *
      * The date time at which the adjustment occurred. Must be after the
      * conversion_date_time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 9; @@ -1598,7 +1598,7 @@ public boolean hasAdjustmentDateTime() { *
      * The date time at which the adjustment occurred. Must be after the
      * conversion_date_time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 9; @@ -1620,7 +1620,7 @@ public java.lang.String getAdjustmentDateTime() { *
      * The date time at which the adjustment occurred. Must be after the
      * conversion_date_time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 9; @@ -1643,7 +1643,7 @@ public java.lang.String getAdjustmentDateTime() { *
      * The date time at which the adjustment occurred. Must be after the
      * conversion_date_time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 9; @@ -1664,7 +1664,7 @@ public Builder setAdjustmentDateTime( *
      * The date time at which the adjustment occurred. Must be after the
      * conversion_date_time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 9; @@ -1680,7 +1680,7 @@ public Builder clearAdjustmentDateTime() { *
      * The date time at which the adjustment occurred. Must be after the
      * conversion_date_time. The timezone must be specified. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 9; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentOrBuilder.java index 46a5262452..1d73e52b04 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentOrBuilder.java @@ -117,7 +117,7 @@ public interface ConversionAdjustmentOrBuilder extends *
    * The date time at which the adjustment occurred. Must be after the
    * conversion_date_time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 9; @@ -128,7 +128,7 @@ public interface ConversionAdjustmentOrBuilder extends *
    * The date time at which the adjustment occurred. Must be after the
    * conversion_date_time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 9; @@ -139,7 +139,7 @@ public interface ConversionAdjustmentOrBuilder extends *
    * The date time at which the adjustment occurred. Must be after the
    * conversion_date_time. The timezone must be specified. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 9; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResult.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResult.java index 96f2c97545..acb3077f2d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResult.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResult.java @@ -279,7 +279,7 @@ public java.lang.String getConversionAction() { /** *
    * The date time at which the adjustment occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 8; @@ -292,7 +292,7 @@ public boolean hasAdjustmentDateTime() { /** *
    * The date time at which the adjustment occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 8; @@ -314,7 +314,7 @@ public java.lang.String getAdjustmentDateTime() { /** *
    * The date time at which the adjustment occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 8; @@ -1138,7 +1138,7 @@ public Builder setConversionActionBytes( /** *
      * The date time at which the adjustment occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 8; @@ -1150,7 +1150,7 @@ public boolean hasAdjustmentDateTime() { /** *
      * The date time at which the adjustment occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 8; @@ -1171,7 +1171,7 @@ public java.lang.String getAdjustmentDateTime() { /** *
      * The date time at which the adjustment occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 8; @@ -1193,7 +1193,7 @@ public java.lang.String getAdjustmentDateTime() { /** *
      * The date time at which the adjustment occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 8; @@ -1213,7 +1213,7 @@ public Builder setAdjustmentDateTime( /** *
      * The date time at which the adjustment occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 8; @@ -1228,7 +1228,7 @@ public Builder clearAdjustmentDateTime() { /** *
      * The date time at which the adjustment occurred. The format is
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string adjustment_date_time = 8; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResultOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResultOrBuilder.java index b9448d7e01..2f785d058e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResultOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ConversionAdjustmentResultOrBuilder.java @@ -89,7 +89,7 @@ public interface ConversionAdjustmentResultOrBuilder extends /** *
    * The date time at which the adjustment occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 8; @@ -99,7 +99,7 @@ public interface ConversionAdjustmentResultOrBuilder extends /** *
    * The date time at which the adjustment occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 8; @@ -109,7 +109,7 @@ public interface ConversionAdjustmentResultOrBuilder extends /** *
    * The date time at which the adjustment occurred. The format is
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string adjustment_date_time = 8; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceClient.java index 0188f65bfa..5a4b38c4e7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceClient.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceClient.java @@ -257,9 +257,9 @@ public final MutateCustomerManagerLinkResponse mutateCustomerManagerLink( // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Moves a client customer to a new manager customer. This simplifies the complex request that - * requires two operations to move a client customer to a new manager. i.e.: 1. Update operation - * with Status INACTIVE (previous manager) and, 2. Update operation with Status ACTIVE (new - * manager). + * requires two operations to move a client customer to a new manager, for example: 1. Update + * operation with Status INACTIVE (previous manager) and, 2. Update operation with Status ACTIVE + * (new manager). * *

List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() @@ -303,9 +303,9 @@ public final MoveManagerLinkResponse moveManagerLink( // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Moves a client customer to a new manager customer. This simplifies the complex request that - * requires two operations to move a client customer to a new manager. i.e.: 1. Update operation - * with Status INACTIVE (previous manager) and, 2. Update operation with Status ACTIVE (new - * manager). + * requires two operations to move a client customer to a new manager, for example: 1. Update + * operation with Status INACTIVE (previous manager) and, 2. Update operation with Status ACTIVE + * (new manager). * *

List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() @@ -339,9 +339,9 @@ public final MoveManagerLinkResponse moveManagerLink(MoveManagerLinkRequest requ // AUTO-GENERATED DOCUMENTATION AND METHOD. /** * Moves a client customer to a new manager customer. This simplifies the complex request that - * requires two operations to move a client customer to a new manager. i.e.: 1. Update operation - * with Status INACTIVE (previous manager) and, 2. Update operation with Status ACTIVE (new - * manager). + * requires two operations to move a client customer to a new manager, for example: 1. Update + * operation with Status INACTIVE (previous manager) and, 2. Update operation with Status ACTIVE + * (new manager). * *

List of thrown errors: [AuthenticationError]() [AuthorizationError]() [DatabaseError]() * [FieldError]() [HeaderError]() [InternalError]() [MutateError]() [QuotaError]() diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceGrpc.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceGrpc.java index 32aea23a72..db8384a66a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceGrpc.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/CustomerManagerLinkServiceGrpc.java @@ -157,7 +157,7 @@ public void mutateCustomerManagerLink(com.google.ads.googleads.v11.services.Muta *

      * Moves a client customer to a new manager customer.
      * This simplifies the complex request that requires two operations to move
-     * a client customer to a new manager. i.e.:
+     * a client customer to a new manager, for example:
      * 1. Update operation with Status INACTIVE (previous manager) and,
      * 2. Update operation with Status ACTIVE (new manager).
      * List of thrown errors:
@@ -241,7 +241,7 @@ public void mutateCustomerManagerLink(com.google.ads.googleads.v11.services.Muta
      * 
      * Moves a client customer to a new manager customer.
      * This simplifies the complex request that requires two operations to move
-     * a client customer to a new manager. i.e.:
+     * a client customer to a new manager, for example:
      * 1. Update operation with Status INACTIVE (previous manager) and,
      * 2. Update operation with Status ACTIVE (new manager).
      * List of thrown errors:
@@ -306,7 +306,7 @@ public com.google.ads.googleads.v11.services.MutateCustomerManagerLinkResponse m
      * 
      * Moves a client customer to a new manager customer.
      * This simplifies the complex request that requires two operations to move
-     * a client customer to a new manager. i.e.:
+     * a client customer to a new manager, for example:
      * 1. Update operation with Status INACTIVE (previous manager) and,
      * 2. Update operation with Status ACTIVE (new manager).
      * List of thrown errors:
@@ -371,7 +371,7 @@ public com.google.common.util.concurrent.ListenableFuture
      * Moves a client customer to a new manager customer.
      * This simplifies the complex request that requires two operations to move
-     * a client customer to a new manager. i.e.:
+     * a client customer to a new manager, for example:
      * 1. Update operation with Status INACTIVE (previous manager) and,
      * 2. Update operation with Status ACTIVE (new manager).
      * List of thrown errors:
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponse.java
index fbc35bcf02..27dac3e5bf 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponse.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponse.java
@@ -793,8 +793,8 @@ public com.google.ads.googleads.v11.services.DismissRecommendationResponse.Dismi
    * 
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -808,8 +808,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -823,8 +823,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1529,8 +1529,8 @@ public com.google.ads.googleads.v11.services.DismissRecommendationResponse.Dismi *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1543,8 +1543,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1561,8 +1561,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1584,8 +1584,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1605,8 +1605,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1630,8 +1630,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1651,8 +1651,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1666,8 +1666,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1684,8 +1684,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors)
-     * we return the RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors) we return the RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponseOrBuilder.java index 818a2cb02e..c8bdc4ef24 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DismissRecommendationResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.DismissRecommendationResponse.DismissRecom *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.DismissRecommendationResponse.DismissRecom *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.DismissRecommendationResponse.DismissRecom *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors)
-   * we return the RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors) we return the RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DynamicLineupAttributeMetadata.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DynamicLineupAttributeMetadata.java new file mode 100644 index 0000000000..ec599f49df --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DynamicLineupAttributeMetadata.java @@ -0,0 +1,1010 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * Metadata associated with a Dynamic Lineup attribute.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.DynamicLineupAttributeMetadata} + */ +public final class DynamicLineupAttributeMetadata extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) + DynamicLineupAttributeMetadataOrBuilder { +private static final long serialVersionUID = 0L; + // Use DynamicLineupAttributeMetadata.newBuilder() to construct. + private DynamicLineupAttributeMetadata(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private DynamicLineupAttributeMetadata() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new DynamicLineupAttributeMetadata(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private DynamicLineupAttributeMetadata( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + com.google.ads.googleads.v11.common.LocationInfo.Builder subBuilder = null; + if (inventoryCountry_ != null) { + subBuilder = inventoryCountry_.toBuilder(); + } + inventoryCountry_ = input.readMessage(com.google.ads.googleads.v11.common.LocationInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(inventoryCountry_); + inventoryCountry_ = subBuilder.buildPartial(); + } + + break; + } + case 16: { + bitField0_ |= 0x00000001; + medianMonthlyInventory_ = input.readInt64(); + break; + } + case 24: { + bitField0_ |= 0x00000002; + channelCountLowerBound_ = input.readInt64(); + break; + } + case 32: { + bitField0_ |= 0x00000004; + channelCountUpperBound_ = input.readInt64(); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.class, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder.class); + } + + private int bitField0_; + public static final int INVENTORY_COUNTRY_FIELD_NUMBER = 1; + private com.google.ads.googleads.v11.common.LocationInfo inventoryCountry_; + /** + *
+   * The national market associated with the lineup.
+   * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + * @return Whether the inventoryCountry field is set. + */ + @java.lang.Override + public boolean hasInventoryCountry() { + return inventoryCountry_ != null; + } + /** + *
+   * The national market associated with the lineup.
+   * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + * @return The inventoryCountry. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.LocationInfo getInventoryCountry() { + return inventoryCountry_ == null ? com.google.ads.googleads.v11.common.LocationInfo.getDefaultInstance() : inventoryCountry_; + } + /** + *
+   * The national market associated with the lineup.
+   * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.LocationInfoOrBuilder getInventoryCountryOrBuilder() { + return getInventoryCountry(); + } + + public static final int MEDIAN_MONTHLY_INVENTORY_FIELD_NUMBER = 2; + private long medianMonthlyInventory_; + /** + *
+   * The median number of impressions per month on this lineup.
+   * 
+ * + * optional int64 median_monthly_inventory = 2; + * @return Whether the medianMonthlyInventory field is set. + */ + @java.lang.Override + public boolean hasMedianMonthlyInventory() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
+   * The median number of impressions per month on this lineup.
+   * 
+ * + * optional int64 median_monthly_inventory = 2; + * @return The medianMonthlyInventory. + */ + @java.lang.Override + public long getMedianMonthlyInventory() { + return medianMonthlyInventory_; + } + + public static final int CHANNEL_COUNT_LOWER_BOUND_FIELD_NUMBER = 3; + private long channelCountLowerBound_; + /** + *
+   * The lower end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @return Whether the channelCountLowerBound field is set. + */ + @java.lang.Override + public boolean hasChannelCountLowerBound() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
+   * The lower end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @return The channelCountLowerBound. + */ + @java.lang.Override + public long getChannelCountLowerBound() { + return channelCountLowerBound_; + } + + public static final int CHANNEL_COUNT_UPPER_BOUND_FIELD_NUMBER = 4; + private long channelCountUpperBound_; + /** + *
+   * The upper end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @return Whether the channelCountUpperBound field is set. + */ + @java.lang.Override + public boolean hasChannelCountUpperBound() { + return ((bitField0_ & 0x00000004) != 0); + } + /** + *
+   * The upper end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @return The channelCountUpperBound. + */ + @java.lang.Override + public long getChannelCountUpperBound() { + return channelCountUpperBound_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (inventoryCountry_ != null) { + output.writeMessage(1, getInventoryCountry()); + } + if (((bitField0_ & 0x00000001) != 0)) { + output.writeInt64(2, medianMonthlyInventory_); + } + if (((bitField0_ & 0x00000002) != 0)) { + output.writeInt64(3, channelCountLowerBound_); + } + if (((bitField0_ & 0x00000004) != 0)) { + output.writeInt64(4, channelCountUpperBound_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (inventoryCountry_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, getInventoryCountry()); + } + if (((bitField0_ & 0x00000001) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(2, medianMonthlyInventory_); + } + if (((bitField0_ & 0x00000002) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(3, channelCountLowerBound_); + } + if (((bitField0_ & 0x00000004) != 0)) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(4, channelCountUpperBound_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata other = (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) obj; + + if (hasInventoryCountry() != other.hasInventoryCountry()) return false; + if (hasInventoryCountry()) { + if (!getInventoryCountry() + .equals(other.getInventoryCountry())) return false; + } + if (hasMedianMonthlyInventory() != other.hasMedianMonthlyInventory()) return false; + if (hasMedianMonthlyInventory()) { + if (getMedianMonthlyInventory() + != other.getMedianMonthlyInventory()) return false; + } + if (hasChannelCountLowerBound() != other.hasChannelCountLowerBound()) return false; + if (hasChannelCountLowerBound()) { + if (getChannelCountLowerBound() + != other.getChannelCountLowerBound()) return false; + } + if (hasChannelCountUpperBound() != other.hasChannelCountUpperBound()) return false; + if (hasChannelCountUpperBound()) { + if (getChannelCountUpperBound() + != other.getChannelCountUpperBound()) return false; + } + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (hasInventoryCountry()) { + hash = (37 * hash) + INVENTORY_COUNTRY_FIELD_NUMBER; + hash = (53 * hash) + getInventoryCountry().hashCode(); + } + if (hasMedianMonthlyInventory()) { + hash = (37 * hash) + MEDIAN_MONTHLY_INVENTORY_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getMedianMonthlyInventory()); + } + if (hasChannelCountLowerBound()) { + hash = (37 * hash) + CHANNEL_COUNT_LOWER_BOUND_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getChannelCountLowerBound()); + } + if (hasChannelCountUpperBound()) { + hash = (37 * hash) + CHANNEL_COUNT_UPPER_BOUND_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getChannelCountUpperBound()); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Metadata associated with a Dynamic Lineup attribute.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.DynamicLineupAttributeMetadata} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadataOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.class, com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (inventoryCountryBuilder_ == null) { + inventoryCountry_ = null; + } else { + inventoryCountry_ = null; + inventoryCountryBuilder_ = null; + } + medianMonthlyInventory_ = 0L; + bitField0_ = (bitField0_ & ~0x00000001); + channelCountLowerBound_ = 0L; + bitField0_ = (bitField0_ & ~0x00000002); + channelCountUpperBound_ = 0L; + bitField0_ = (bitField0_ & ~0x00000004); + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_DynamicLineupAttributeMetadata_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata build() { + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata buildPartial() { + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata result = new com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata(this); + int from_bitField0_ = bitField0_; + int to_bitField0_ = 0; + if (inventoryCountryBuilder_ == null) { + result.inventoryCountry_ = inventoryCountry_; + } else { + result.inventoryCountry_ = inventoryCountryBuilder_.build(); + } + if (((from_bitField0_ & 0x00000001) != 0)) { + result.medianMonthlyInventory_ = medianMonthlyInventory_; + to_bitField0_ |= 0x00000001; + } + if (((from_bitField0_ & 0x00000002) != 0)) { + result.channelCountLowerBound_ = channelCountLowerBound_; + to_bitField0_ |= 0x00000002; + } + if (((from_bitField0_ & 0x00000004) != 0)) { + result.channelCountUpperBound_ = channelCountUpperBound_; + to_bitField0_ |= 0x00000004; + } + result.bitField0_ = to_bitField0_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) { + return mergeFrom((com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata other) { + if (other == com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata.getDefaultInstance()) return this; + if (other.hasInventoryCountry()) { + mergeInventoryCountry(other.getInventoryCountry()); + } + if (other.hasMedianMonthlyInventory()) { + setMedianMonthlyInventory(other.getMedianMonthlyInventory()); + } + if (other.hasChannelCountLowerBound()) { + setChannelCountLowerBound(other.getChannelCountLowerBound()); + } + if (other.hasChannelCountUpperBound()) { + setChannelCountUpperBound(other.getChannelCountUpperBound()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private com.google.ads.googleads.v11.common.LocationInfo inventoryCountry_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder> inventoryCountryBuilder_; + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + * @return Whether the inventoryCountry field is set. + */ + public boolean hasInventoryCountry() { + return inventoryCountryBuilder_ != null || inventoryCountry_ != null; + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + * @return The inventoryCountry. + */ + public com.google.ads.googleads.v11.common.LocationInfo getInventoryCountry() { + if (inventoryCountryBuilder_ == null) { + return inventoryCountry_ == null ? com.google.ads.googleads.v11.common.LocationInfo.getDefaultInstance() : inventoryCountry_; + } else { + return inventoryCountryBuilder_.getMessage(); + } + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + public Builder setInventoryCountry(com.google.ads.googleads.v11.common.LocationInfo value) { + if (inventoryCountryBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + inventoryCountry_ = value; + onChanged(); + } else { + inventoryCountryBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + public Builder setInventoryCountry( + com.google.ads.googleads.v11.common.LocationInfo.Builder builderForValue) { + if (inventoryCountryBuilder_ == null) { + inventoryCountry_ = builderForValue.build(); + onChanged(); + } else { + inventoryCountryBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + public Builder mergeInventoryCountry(com.google.ads.googleads.v11.common.LocationInfo value) { + if (inventoryCountryBuilder_ == null) { + if (inventoryCountry_ != null) { + inventoryCountry_ = + com.google.ads.googleads.v11.common.LocationInfo.newBuilder(inventoryCountry_).mergeFrom(value).buildPartial(); + } else { + inventoryCountry_ = value; + } + onChanged(); + } else { + inventoryCountryBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + public Builder clearInventoryCountry() { + if (inventoryCountryBuilder_ == null) { + inventoryCountry_ = null; + onChanged(); + } else { + inventoryCountry_ = null; + inventoryCountryBuilder_ = null; + } + + return this; + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + public com.google.ads.googleads.v11.common.LocationInfo.Builder getInventoryCountryBuilder() { + + onChanged(); + return getInventoryCountryFieldBuilder().getBuilder(); + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + public com.google.ads.googleads.v11.common.LocationInfoOrBuilder getInventoryCountryOrBuilder() { + if (inventoryCountryBuilder_ != null) { + return inventoryCountryBuilder_.getMessageOrBuilder(); + } else { + return inventoryCountry_ == null ? + com.google.ads.googleads.v11.common.LocationInfo.getDefaultInstance() : inventoryCountry_; + } + } + /** + *
+     * The national market associated with the lineup.
+     * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder> + getInventoryCountryFieldBuilder() { + if (inventoryCountryBuilder_ == null) { + inventoryCountryBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder>( + getInventoryCountry(), + getParentForChildren(), + isClean()); + inventoryCountry_ = null; + } + return inventoryCountryBuilder_; + } + + private long medianMonthlyInventory_ ; + /** + *
+     * The median number of impressions per month on this lineup.
+     * 
+ * + * optional int64 median_monthly_inventory = 2; + * @return Whether the medianMonthlyInventory field is set. + */ + @java.lang.Override + public boolean hasMedianMonthlyInventory() { + return ((bitField0_ & 0x00000001) != 0); + } + /** + *
+     * The median number of impressions per month on this lineup.
+     * 
+ * + * optional int64 median_monthly_inventory = 2; + * @return The medianMonthlyInventory. + */ + @java.lang.Override + public long getMedianMonthlyInventory() { + return medianMonthlyInventory_; + } + /** + *
+     * The median number of impressions per month on this lineup.
+     * 
+ * + * optional int64 median_monthly_inventory = 2; + * @param value The medianMonthlyInventory to set. + * @return This builder for chaining. + */ + public Builder setMedianMonthlyInventory(long value) { + bitField0_ |= 0x00000001; + medianMonthlyInventory_ = value; + onChanged(); + return this; + } + /** + *
+     * The median number of impressions per month on this lineup.
+     * 
+ * + * optional int64 median_monthly_inventory = 2; + * @return This builder for chaining. + */ + public Builder clearMedianMonthlyInventory() { + bitField0_ = (bitField0_ & ~0x00000001); + medianMonthlyInventory_ = 0L; + onChanged(); + return this; + } + + private long channelCountLowerBound_ ; + /** + *
+     * The lower end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @return Whether the channelCountLowerBound field is set. + */ + @java.lang.Override + public boolean hasChannelCountLowerBound() { + return ((bitField0_ & 0x00000002) != 0); + } + /** + *
+     * The lower end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @return The channelCountLowerBound. + */ + @java.lang.Override + public long getChannelCountLowerBound() { + return channelCountLowerBound_; + } + /** + *
+     * The lower end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @param value The channelCountLowerBound to set. + * @return This builder for chaining. + */ + public Builder setChannelCountLowerBound(long value) { + bitField0_ |= 0x00000002; + channelCountLowerBound_ = value; + onChanged(); + return this; + } + /** + *
+     * The lower end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @return This builder for chaining. + */ + public Builder clearChannelCountLowerBound() { + bitField0_ = (bitField0_ & ~0x00000002); + channelCountLowerBound_ = 0L; + onChanged(); + return this; + } + + private long channelCountUpperBound_ ; + /** + *
+     * The upper end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @return Whether the channelCountUpperBound field is set. + */ + @java.lang.Override + public boolean hasChannelCountUpperBound() { + return ((bitField0_ & 0x00000004) != 0); + } + /** + *
+     * The upper end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @return The channelCountUpperBound. + */ + @java.lang.Override + public long getChannelCountUpperBound() { + return channelCountUpperBound_; + } + /** + *
+     * The upper end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @param value The channelCountUpperBound to set. + * @return This builder for chaining. + */ + public Builder setChannelCountUpperBound(long value) { + bitField0_ |= 0x00000004; + channelCountUpperBound_ = value; + onChanged(); + return this; + } + /** + *
+     * The upper end of a range containing the number of channels in the lineup.
+     * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @return This builder for chaining. + */ + public Builder clearChannelCountUpperBound() { + bitField0_ = (bitField0_ & ~0x00000004); + channelCountUpperBound_ = 0L; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) + private static final com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata(); + } + + public static com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public DynamicLineupAttributeMetadata parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new DynamicLineupAttributeMetadata(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.DynamicLineupAttributeMetadata getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DynamicLineupAttributeMetadataOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DynamicLineupAttributeMetadataOrBuilder.java new file mode 100644 index 0000000000..b8f649b73f --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/DynamicLineupAttributeMetadataOrBuilder.java @@ -0,0 +1,93 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface DynamicLineupAttributeMetadataOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.DynamicLineupAttributeMetadata) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The national market associated with the lineup.
+   * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + * @return Whether the inventoryCountry field is set. + */ + boolean hasInventoryCountry(); + /** + *
+   * The national market associated with the lineup.
+   * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + * @return The inventoryCountry. + */ + com.google.ads.googleads.v11.common.LocationInfo getInventoryCountry(); + /** + *
+   * The national market associated with the lineup.
+   * 
+ * + * .google.ads.googleads.v11.common.LocationInfo inventory_country = 1; + */ + com.google.ads.googleads.v11.common.LocationInfoOrBuilder getInventoryCountryOrBuilder(); + + /** + *
+   * The median number of impressions per month on this lineup.
+   * 
+ * + * optional int64 median_monthly_inventory = 2; + * @return Whether the medianMonthlyInventory field is set. + */ + boolean hasMedianMonthlyInventory(); + /** + *
+   * The median number of impressions per month on this lineup.
+   * 
+ * + * optional int64 median_monthly_inventory = 2; + * @return The medianMonthlyInventory. + */ + long getMedianMonthlyInventory(); + + /** + *
+   * The lower end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @return Whether the channelCountLowerBound field is set. + */ + boolean hasChannelCountLowerBound(); + /** + *
+   * The lower end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_lower_bound = 3; + * @return The channelCountLowerBound. + */ + long getChannelCountLowerBound(); + + /** + *
+   * The upper end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @return Whether the channelCountUpperBound field is set. + */ + boolean hasChannelCountUpperBound(); + /** + *
+   * The upper end of a range containing the number of channels in the lineup.
+   * 
+ * + * optional int64 channel_count_upper_bound = 4; + * @return The channelCountUpperBound. + */ + long getChannelCountUpperBound(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePair.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePair.java index ae59fdd379..1afbd077ea 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePair.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePair.java @@ -170,7 +170,7 @@ public java.lang.String getGclid() { *
    * The date time at which the original conversion for this adjustment
    * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-   * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 4; @@ -184,7 +184,7 @@ public boolean hasConversionDateTime() { *
    * The date time at which the original conversion for this adjustment
    * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-   * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 4; @@ -207,7 +207,7 @@ public java.lang.String getConversionDateTime() { *
    * The date time at which the original conversion for this adjustment
    * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-   * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 4; @@ -692,7 +692,7 @@ public Builder setGclidBytes( *
      * The date time at which the original conversion for this adjustment
      * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-     * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 4; @@ -705,7 +705,7 @@ public boolean hasConversionDateTime() { *
      * The date time at which the original conversion for this adjustment
      * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-     * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 4; @@ -727,7 +727,7 @@ public java.lang.String getConversionDateTime() { *
      * The date time at which the original conversion for this adjustment
      * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-     * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 4; @@ -750,7 +750,7 @@ public java.lang.String getConversionDateTime() { *
      * The date time at which the original conversion for this adjustment
      * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-     * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 4; @@ -771,7 +771,7 @@ public Builder setConversionDateTime( *
      * The date time at which the original conversion for this adjustment
      * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-     * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 4; @@ -787,7 +787,7 @@ public Builder clearConversionDateTime() { *
      * The date time at which the original conversion for this adjustment
      * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-     * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string conversion_date_time = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePairOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePairOrBuilder.java index c64ce09431..a65798b669 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePairOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GclidDateTimePairOrBuilder.java @@ -43,7 +43,7 @@ public interface GclidDateTimePairOrBuilder extends *
    * The date time at which the original conversion for this adjustment
    * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-   * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 4; @@ -54,7 +54,7 @@ public interface GclidDateTimePairOrBuilder extends *
    * The date time at which the original conversion for this adjustment
    * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-   * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 4; @@ -65,7 +65,7 @@ public interface GclidDateTimePairOrBuilder extends *
    * The date time at which the original conversion for this adjustment
    * occurred. The timezone must be specified. The format is "yyyy-mm-dd
-   * hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string conversion_date_time = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsRequest.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsRequest.java new file mode 100644 index 0000000000..99379e761b --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsRequest.java @@ -0,0 +1,1517 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * Request message for
+ * [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v11.services.AudienceInsightsService.GenerateAudienceCompositionInsights].
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest} + */ +public final class GenerateAudienceCompositionInsightsRequest extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) + GenerateAudienceCompositionInsightsRequestOrBuilder { +private static final long serialVersionUID = 0L; + // Use GenerateAudienceCompositionInsightsRequest.newBuilder() to construct. + private GenerateAudienceCompositionInsightsRequest(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private GenerateAudienceCompositionInsightsRequest() { + customerId_ = ""; + dataMonth_ = ""; + dimensions_ = java.util.Collections.emptyList(); + customerInsightsGroup_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new GenerateAudienceCompositionInsightsRequest(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GenerateAudienceCompositionInsightsRequest( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + java.lang.String s = input.readStringRequireUtf8(); + + customerId_ = s; + break; + } + case 18: { + com.google.ads.googleads.v11.services.InsightsAudience.Builder subBuilder = null; + if (audience_ != null) { + subBuilder = audience_.toBuilder(); + } + audience_ = input.readMessage(com.google.ads.googleads.v11.services.InsightsAudience.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(audience_); + audience_ = subBuilder.buildPartial(); + } + + break; + } + case 26: { + java.lang.String s = input.readStringRequireUtf8(); + + dataMonth_ = s; + break; + } + case 32: { + int rawValue = input.readEnum(); + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + dimensions_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + dimensions_.add(rawValue); + break; + } + case 34: { + int length = input.readRawVarint32(); + int oldLimit = input.pushLimit(length); + while(input.getBytesUntilLimit() > 0) { + int rawValue = input.readEnum(); + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + dimensions_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + dimensions_.add(rawValue); + } + input.popLimit(oldLimit); + break; + } + case 42: { + java.lang.String s = input.readStringRequireUtf8(); + + customerInsightsGroup_ = s; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + dimensions_ = java.util.Collections.unmodifiableList(dimensions_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.class, com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.Builder.class); + } + + public static final int CUSTOMER_ID_FIELD_NUMBER = 1; + private volatile java.lang.Object customerId_; + /** + *
+   * Required. The ID of the customer.
+   * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + @java.lang.Override + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } + } + /** + *
+   * Required. The ID of the customer.
+   * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int AUDIENCE_FIELD_NUMBER = 2; + private com.google.ads.googleads.v11.services.InsightsAudience audience_; + /** + *
+   * Required. The audience of interest for which insights are being requested.
+   * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the audience field is set. + */ + @java.lang.Override + public boolean hasAudience() { + return audience_ != null; + } + /** + *
+   * Required. The audience of interest for which insights are being requested.
+   * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The audience. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudience getAudience() { + return audience_ == null ? com.google.ads.googleads.v11.services.InsightsAudience.getDefaultInstance() : audience_; + } + /** + *
+   * Required. The audience of interest for which insights are being requested.
+   * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudienceOrBuilder getAudienceOrBuilder() { + return getAudience(); + } + + public static final int DATA_MONTH_FIELD_NUMBER = 3; + private volatile java.lang.Object dataMonth_; + /** + *
+   * The one-month range of historical data to use for insights, in the format
+   * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+   * data.
+   * 
+ * + * string data_month = 3; + * @return The dataMonth. + */ + @java.lang.Override + public java.lang.String getDataMonth() { + java.lang.Object ref = dataMonth_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataMonth_ = s; + return s; + } + } + /** + *
+   * The one-month range of historical data to use for insights, in the format
+   * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+   * data.
+   * 
+ * + * string data_month = 3; + * @return The bytes for dataMonth. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getDataMonthBytes() { + java.lang.Object ref = dataMonth_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + dataMonth_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + public static final int DIMENSIONS_FIELD_NUMBER = 4; + private java.util.List dimensions_; + private static final com.google.protobuf.Internal.ListAdapter.Converter< + java.lang.Integer, com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension> dimensions_converter_ = + new com.google.protobuf.Internal.ListAdapter.Converter< + java.lang.Integer, com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension>() { + public com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension convert(java.lang.Integer from) { + @SuppressWarnings("deprecation") + com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension result = com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.valueOf(from); + return result == null ? com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension.UNRECOGNIZED : result; + } + }; + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return A list containing the dimensions. + */ + @java.lang.Override + public java.util.List getDimensionsList() { + return new com.google.protobuf.Internal.ListAdapter< + java.lang.Integer, com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension>(dimensions_, dimensions_converter_); + } + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return The count of dimensions. + */ + @java.lang.Override + public int getDimensionsCount() { + return dimensions_.size(); + } + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index of the element to return. + * @return The dimensions at the given index. + */ + @java.lang.Override + public com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension getDimensions(int index) { + return dimensions_converter_.convert(dimensions_.get(index)); + } + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return A list containing the enum numeric values on the wire for dimensions. + */ + @java.lang.Override + public java.util.List + getDimensionsValueList() { + return dimensions_; + } + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index of the value to return. + * @return The enum numeric value on the wire of dimensions at the given index. + */ + @java.lang.Override + public int getDimensionsValue(int index) { + return dimensions_.get(index); + } + private int dimensionsMemoizedSerializedSize; + + public static final int CUSTOMER_INSIGHTS_GROUP_FIELD_NUMBER = 5; + private volatile java.lang.Object customerInsightsGroup_; + /** + *
+   * The name of the customer being planned for.  This is a user-defined value.
+   * 
+ * + * string customer_insights_group = 5; + * @return The customerInsightsGroup. + */ + @java.lang.Override + public java.lang.String getCustomerInsightsGroup() { + java.lang.Object ref = customerInsightsGroup_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerInsightsGroup_ = s; + return s; + } + } + /** + *
+   * The name of the customer being planned for.  This is a user-defined value.
+   * 
+ * + * string customer_insights_group = 5; + * @return The bytes for customerInsightsGroup. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getCustomerInsightsGroupBytes() { + java.lang.Object ref = customerInsightsGroup_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerInsightsGroup_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + getSerializedSize(); + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 1, customerId_); + } + if (audience_ != null) { + output.writeMessage(2, getAudience()); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dataMonth_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 3, dataMonth_); + } + if (getDimensionsList().size() > 0) { + output.writeUInt32NoTag(34); + output.writeUInt32NoTag(dimensionsMemoizedSerializedSize); + } + for (int i = 0; i < dimensions_.size(); i++) { + output.writeEnumNoTag(dimensions_.get(i)); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerInsightsGroup_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 5, customerInsightsGroup_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerId_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(1, customerId_); + } + if (audience_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, getAudience()); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(dataMonth_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(3, dataMonth_); + } + { + int dataSize = 0; + for (int i = 0; i < dimensions_.size(); i++) { + dataSize += com.google.protobuf.CodedOutputStream + .computeEnumSizeNoTag(dimensions_.get(i)); + } + size += dataSize; + if (!getDimensionsList().isEmpty()) { size += 1; + size += com.google.protobuf.CodedOutputStream + .computeUInt32SizeNoTag(dataSize); + }dimensionsMemoizedSerializedSize = dataSize; + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(customerInsightsGroup_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(5, customerInsightsGroup_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest other = (com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) obj; + + if (!getCustomerId() + .equals(other.getCustomerId())) return false; + if (hasAudience() != other.hasAudience()) return false; + if (hasAudience()) { + if (!getAudience() + .equals(other.getAudience())) return false; + } + if (!getDataMonth() + .equals(other.getDataMonth())) return false; + if (!dimensions_.equals(other.dimensions_)) return false; + if (!getCustomerInsightsGroup() + .equals(other.getCustomerInsightsGroup())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + CUSTOMER_ID_FIELD_NUMBER; + hash = (53 * hash) + getCustomerId().hashCode(); + if (hasAudience()) { + hash = (37 * hash) + AUDIENCE_FIELD_NUMBER; + hash = (53 * hash) + getAudience().hashCode(); + } + hash = (37 * hash) + DATA_MONTH_FIELD_NUMBER; + hash = (53 * hash) + getDataMonth().hashCode(); + if (getDimensionsCount() > 0) { + hash = (37 * hash) + DIMENSIONS_FIELD_NUMBER; + hash = (53 * hash) + dimensions_.hashCode(); + } + hash = (37 * hash) + CUSTOMER_INSIGHTS_GROUP_FIELD_NUMBER; + hash = (53 * hash) + getCustomerInsightsGroup().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Request message for
+   * [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v11.services.AudienceInsightsService.GenerateAudienceCompositionInsights].
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequestOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.class, com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + customerId_ = ""; + + if (audienceBuilder_ == null) { + audience_ = null; + } else { + audience_ = null; + audienceBuilder_ = null; + } + dataMonth_ = ""; + + dimensions_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + customerInsightsGroup_ = ""; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsRequest_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest build() { + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest buildPartial() { + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest result = new com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest(this); + int from_bitField0_ = bitField0_; + result.customerId_ = customerId_; + if (audienceBuilder_ == null) { + result.audience_ = audience_; + } else { + result.audience_ = audienceBuilder_.build(); + } + result.dataMonth_ = dataMonth_; + if (((bitField0_ & 0x00000001) != 0)) { + dimensions_ = java.util.Collections.unmodifiableList(dimensions_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.dimensions_ = dimensions_; + result.customerInsightsGroup_ = customerInsightsGroup_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) { + return mergeFrom((com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest other) { + if (other == com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest.getDefaultInstance()) return this; + if (!other.getCustomerId().isEmpty()) { + customerId_ = other.customerId_; + onChanged(); + } + if (other.hasAudience()) { + mergeAudience(other.getAudience()); + } + if (!other.getDataMonth().isEmpty()) { + dataMonth_ = other.dataMonth_; + onChanged(); + } + if (!other.dimensions_.isEmpty()) { + if (dimensions_.isEmpty()) { + dimensions_ = other.dimensions_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureDimensionsIsMutable(); + dimensions_.addAll(other.dimensions_); + } + onChanged(); + } + if (!other.getCustomerInsightsGroup().isEmpty()) { + customerInsightsGroup_ = other.customerInsightsGroup_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.lang.Object customerId_ = ""; + /** + *
+     * Required. The ID of the customer.
+     * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + public java.lang.String getCustomerId() { + java.lang.Object ref = customerId_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerId_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * Required. The ID of the customer.
+     * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + public com.google.protobuf.ByteString + getCustomerIdBytes() { + java.lang.Object ref = customerId_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerId_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * Required. The ID of the customer.
+     * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerId( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + customerId_ = value; + onChanged(); + return this; + } + /** + *
+     * Required. The ID of the customer.
+     * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearCustomerId() { + + customerId_ = getDefaultInstance().getCustomerId(); + onChanged(); + return this; + } + /** + *
+     * Required. The ID of the customer.
+     * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @param value The bytes for customerId to set. + * @return This builder for chaining. + */ + public Builder setCustomerIdBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + customerId_ = value; + onChanged(); + return this; + } + + private com.google.ads.googleads.v11.services.InsightsAudience audience_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.InsightsAudience, com.google.ads.googleads.v11.services.InsightsAudience.Builder, com.google.ads.googleads.v11.services.InsightsAudienceOrBuilder> audienceBuilder_; + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the audience field is set. + */ + public boolean hasAudience() { + return audienceBuilder_ != null || audience_ != null; + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The audience. + */ + public com.google.ads.googleads.v11.services.InsightsAudience getAudience() { + if (audienceBuilder_ == null) { + return audience_ == null ? com.google.ads.googleads.v11.services.InsightsAudience.getDefaultInstance() : audience_; + } else { + return audienceBuilder_.getMessage(); + } + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setAudience(com.google.ads.googleads.v11.services.InsightsAudience value) { + if (audienceBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + audience_ = value; + onChanged(); + } else { + audienceBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setAudience( + com.google.ads.googleads.v11.services.InsightsAudience.Builder builderForValue) { + if (audienceBuilder_ == null) { + audience_ = builderForValue.build(); + onChanged(); + } else { + audienceBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder mergeAudience(com.google.ads.googleads.v11.services.InsightsAudience value) { + if (audienceBuilder_ == null) { + if (audience_ != null) { + audience_ = + com.google.ads.googleads.v11.services.InsightsAudience.newBuilder(audience_).mergeFrom(value).buildPartial(); + } else { + audience_ = value; + } + onChanged(); + } else { + audienceBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearAudience() { + if (audienceBuilder_ == null) { + audience_ = null; + onChanged(); + } else { + audience_ = null; + audienceBuilder_ = null; + } + + return this; + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.services.InsightsAudience.Builder getAudienceBuilder() { + + onChanged(); + return getAudienceFieldBuilder().getBuilder(); + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.services.InsightsAudienceOrBuilder getAudienceOrBuilder() { + if (audienceBuilder_ != null) { + return audienceBuilder_.getMessageOrBuilder(); + } else { + return audience_ == null ? + com.google.ads.googleads.v11.services.InsightsAudience.getDefaultInstance() : audience_; + } + } + /** + *
+     * Required. The audience of interest for which insights are being requested.
+     * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.InsightsAudience, com.google.ads.googleads.v11.services.InsightsAudience.Builder, com.google.ads.googleads.v11.services.InsightsAudienceOrBuilder> + getAudienceFieldBuilder() { + if (audienceBuilder_ == null) { + audienceBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.InsightsAudience, com.google.ads.googleads.v11.services.InsightsAudience.Builder, com.google.ads.googleads.v11.services.InsightsAudienceOrBuilder>( + getAudience(), + getParentForChildren(), + isClean()); + audience_ = null; + } + return audienceBuilder_; + } + + private java.lang.Object dataMonth_ = ""; + /** + *
+     * The one-month range of historical data to use for insights, in the format
+     * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+     * data.
+     * 
+ * + * string data_month = 3; + * @return The dataMonth. + */ + public java.lang.String getDataMonth() { + java.lang.Object ref = dataMonth_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + dataMonth_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * The one-month range of historical data to use for insights, in the format
+     * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+     * data.
+     * 
+ * + * string data_month = 3; + * @return The bytes for dataMonth. + */ + public com.google.protobuf.ByteString + getDataMonthBytes() { + java.lang.Object ref = dataMonth_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + dataMonth_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * The one-month range of historical data to use for insights, in the format
+     * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+     * data.
+     * 
+ * + * string data_month = 3; + * @param value The dataMonth to set. + * @return This builder for chaining. + */ + public Builder setDataMonth( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + dataMonth_ = value; + onChanged(); + return this; + } + /** + *
+     * The one-month range of historical data to use for insights, in the format
+     * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+     * data.
+     * 
+ * + * string data_month = 3; + * @return This builder for chaining. + */ + public Builder clearDataMonth() { + + dataMonth_ = getDefaultInstance().getDataMonth(); + onChanged(); + return this; + } + /** + *
+     * The one-month range of historical data to use for insights, in the format
+     * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+     * data.
+     * 
+ * + * string data_month = 3; + * @param value The bytes for dataMonth to set. + * @return This builder for chaining. + */ + public Builder setDataMonthBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + dataMonth_ = value; + onChanged(); + return this; + } + + private java.util.List dimensions_ = + java.util.Collections.emptyList(); + private void ensureDimensionsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + dimensions_ = new java.util.ArrayList(dimensions_); + bitField0_ |= 0x00000001; + } + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return A list containing the dimensions. + */ + public java.util.List getDimensionsList() { + return new com.google.protobuf.Internal.ListAdapter< + java.lang.Integer, com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension>(dimensions_, dimensions_converter_); + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return The count of dimensions. + */ + public int getDimensionsCount() { + return dimensions_.size(); + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index of the element to return. + * @return The dimensions at the given index. + */ + public com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension getDimensions(int index) { + return dimensions_converter_.convert(dimensions_.get(index)); + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index to set the value at. + * @param value The dimensions to set. + * @return This builder for chaining. + */ + public Builder setDimensions( + int index, com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension value) { + if (value == null) { + throw new NullPointerException(); + } + ensureDimensionsIsMutable(); + dimensions_.set(index, value.getNumber()); + onChanged(); + return this; + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param value The dimensions to add. + * @return This builder for chaining. + */ + public Builder addDimensions(com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension value) { + if (value == null) { + throw new NullPointerException(); + } + ensureDimensionsIsMutable(); + dimensions_.add(value.getNumber()); + onChanged(); + return this; + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param values The dimensions to add. + * @return This builder for chaining. + */ + public Builder addAllDimensions( + java.lang.Iterable values) { + ensureDimensionsIsMutable(); + for (com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension value : values) { + dimensions_.add(value.getNumber()); + } + onChanged(); + return this; + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return This builder for chaining. + */ + public Builder clearDimensions() { + dimensions_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + return this; + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return A list containing the enum numeric values on the wire for dimensions. + */ + public java.util.List + getDimensionsValueList() { + return java.util.Collections.unmodifiableList(dimensions_); + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index of the value to return. + * @return The enum numeric value on the wire of dimensions at the given index. + */ + public int getDimensionsValue(int index) { + return dimensions_.get(index); + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for dimensions to set. + * @return This builder for chaining. + */ + public Builder setDimensionsValue( + int index, int value) { + ensureDimensionsIsMutable(); + dimensions_.set(index, value); + onChanged(); + return this; + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param value The enum numeric value on the wire for dimensions to add. + * @return This builder for chaining. + */ + public Builder addDimensionsValue(int value) { + ensureDimensionsIsMutable(); + dimensions_.add(value); + onChanged(); + return this; + } + /** + *
+     * Required. The audience dimensions for which composition insights should be returned.
+     * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param values The enum numeric values on the wire for dimensions to add. + * @return This builder for chaining. + */ + public Builder addAllDimensionsValue( + java.lang.Iterable values) { + ensureDimensionsIsMutable(); + for (int value : values) { + dimensions_.add(value); + } + onChanged(); + return this; + } + + private java.lang.Object customerInsightsGroup_ = ""; + /** + *
+     * The name of the customer being planned for.  This is a user-defined value.
+     * 
+ * + * string customer_insights_group = 5; + * @return The customerInsightsGroup. + */ + public java.lang.String getCustomerInsightsGroup() { + java.lang.Object ref = customerInsightsGroup_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerInsightsGroup_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * The name of the customer being planned for.  This is a user-defined value.
+     * 
+ * + * string customer_insights_group = 5; + * @return The bytes for customerInsightsGroup. + */ + public com.google.protobuf.ByteString + getCustomerInsightsGroupBytes() { + java.lang.Object ref = customerInsightsGroup_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerInsightsGroup_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * The name of the customer being planned for.  This is a user-defined value.
+     * 
+ * + * string customer_insights_group = 5; + * @param value The customerInsightsGroup to set. + * @return This builder for chaining. + */ + public Builder setCustomerInsightsGroup( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + customerInsightsGroup_ = value; + onChanged(); + return this; + } + /** + *
+     * The name of the customer being planned for.  This is a user-defined value.
+     * 
+ * + * string customer_insights_group = 5; + * @return This builder for chaining. + */ + public Builder clearCustomerInsightsGroup() { + + customerInsightsGroup_ = getDefaultInstance().getCustomerInsightsGroup(); + onChanged(); + return this; + } + /** + *
+     * The name of the customer being planned for.  This is a user-defined value.
+     * 
+ * + * string customer_insights_group = 5; + * @param value The bytes for customerInsightsGroup to set. + * @return This builder for chaining. + */ + public Builder setCustomerInsightsGroupBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + customerInsightsGroup_ = value; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) + private static final com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest(); + } + + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public GenerateAudienceCompositionInsightsRequest parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GenerateAudienceCompositionInsightsRequest(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsRequestOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsRequestOrBuilder.java new file mode 100644 index 0000000000..29b035146d --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsRequestOrBuilder.java @@ -0,0 +1,149 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface GenerateAudienceCompositionInsightsRequestOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Required. The ID of the customer.
+   * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The customerId. + */ + java.lang.String getCustomerId(); + /** + *
+   * Required. The ID of the customer.
+   * 
+ * + * string customer_id = 1 [(.google.api.field_behavior) = REQUIRED]; + * @return The bytes for customerId. + */ + com.google.protobuf.ByteString + getCustomerIdBytes(); + + /** + *
+   * Required. The audience of interest for which insights are being requested.
+   * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return Whether the audience field is set. + */ + boolean hasAudience(); + /** + *
+   * Required. The audience of interest for which insights are being requested.
+   * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + * @return The audience. + */ + com.google.ads.googleads.v11.services.InsightsAudience getAudience(); + /** + *
+   * Required. The audience of interest for which insights are being requested.
+   * 
+ * + * .google.ads.googleads.v11.services.InsightsAudience audience = 2 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v11.services.InsightsAudienceOrBuilder getAudienceOrBuilder(); + + /** + *
+   * The one-month range of historical data to use for insights, in the format
+   * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+   * data.
+   * 
+ * + * string data_month = 3; + * @return The dataMonth. + */ + java.lang.String getDataMonth(); + /** + *
+   * The one-month range of historical data to use for insights, in the format
+   * "yyyy-mm". If unset, insights will be returned for the last thirty days of
+   * data.
+   * 
+ * + * string data_month = 3; + * @return The bytes for dataMonth. + */ + com.google.protobuf.ByteString + getDataMonthBytes(); + + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return A list containing the dimensions. + */ + java.util.List getDimensionsList(); + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return The count of dimensions. + */ + int getDimensionsCount(); + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index of the element to return. + * @return The dimensions at the given index. + */ + com.google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension getDimensions(int index); + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @return A list containing the enum numeric values on the wire for dimensions. + */ + java.util.List + getDimensionsValueList(); + /** + *
+   * Required. The audience dimensions for which composition insights should be returned.
+   * 
+ * + * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 4 [(.google.api.field_behavior) = REQUIRED]; + * @param index The index of the value to return. + * @return The enum numeric value on the wire of dimensions at the given index. + */ + int getDimensionsValue(int index); + + /** + *
+   * The name of the customer being planned for.  This is a user-defined value.
+   * 
+ * + * string customer_insights_group = 5; + * @return The customerInsightsGroup. + */ + java.lang.String getCustomerInsightsGroup(); + /** + *
+   * The name of the customer being planned for.  This is a user-defined value.
+   * 
+ * + * string customer_insights_group = 5; + * @return The bytes for customerInsightsGroup. + */ + com.google.protobuf.ByteString + getCustomerInsightsGroupBytes(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsResponse.java new file mode 100644 index 0000000000..e60833148d --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsResponse.java @@ -0,0 +1,920 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * Response message for
+ * [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v11.services.AudienceInsightsService.GenerateAudienceCompositionInsights].
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse} + */ +public final class GenerateAudienceCompositionInsightsResponse extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) + GenerateAudienceCompositionInsightsResponseOrBuilder { +private static final long serialVersionUID = 0L; + // Use GenerateAudienceCompositionInsightsResponse.newBuilder() to construct. + private GenerateAudienceCompositionInsightsResponse(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private GenerateAudienceCompositionInsightsResponse() { + sections_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new GenerateAudienceCompositionInsightsResponse(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private GenerateAudienceCompositionInsightsResponse( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + sections_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + sections_.add( + input.readMessage(com.google.ads.googleads.v11.services.AudienceCompositionSection.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + sections_ = java.util.Collections.unmodifiableList(sections_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.class, com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.Builder.class); + } + + public static final int SECTIONS_FIELD_NUMBER = 1; + private java.util.List sections_; + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + @java.lang.Override + public java.util.List getSectionsList() { + return sections_; + } + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + @java.lang.Override + public java.util.List + getSectionsOrBuilderList() { + return sections_; + } + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + @java.lang.Override + public int getSectionsCount() { + return sections_.size(); + } + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionSection getSections(int index) { + return sections_.get(index); + } + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceCompositionSectionOrBuilder getSectionsOrBuilder( + int index) { + return sections_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + for (int i = 0; i < sections_.size(); i++) { + output.writeMessage(1, sections_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < sections_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, sections_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse other = (com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) obj; + + if (!getSectionsList() + .equals(other.getSectionsList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getSectionsCount() > 0) { + hash = (37 * hash) + SECTIONS_FIELD_NUMBER; + hash = (53 * hash) + getSectionsList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Response message for
+   * [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v11.services.AudienceInsightsService.GenerateAudienceCompositionInsights].
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponseOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.class, com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getSectionsFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (sectionsBuilder_ == null) { + sections_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + sectionsBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_GenerateAudienceCompositionInsightsResponse_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse build() { + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse buildPartial() { + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse result = new com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse(this); + int from_bitField0_ = bitField0_; + if (sectionsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + sections_ = java.util.Collections.unmodifiableList(sections_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.sections_ = sections_; + } else { + result.sections_ = sectionsBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) { + return mergeFrom((com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse other) { + if (other == com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse.getDefaultInstance()) return this; + if (sectionsBuilder_ == null) { + if (!other.sections_.isEmpty()) { + if (sections_.isEmpty()) { + sections_ = other.sections_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureSectionsIsMutable(); + sections_.addAll(other.sections_); + } + onChanged(); + } + } else { + if (!other.sections_.isEmpty()) { + if (sectionsBuilder_.isEmpty()) { + sectionsBuilder_.dispose(); + sectionsBuilder_ = null; + sections_ = other.sections_; + bitField0_ = (bitField0_ & ~0x00000001); + sectionsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getSectionsFieldBuilder() : null; + } else { + sectionsBuilder_.addAllMessages(other.sections_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.util.List sections_ = + java.util.Collections.emptyList(); + private void ensureSectionsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + sections_ = new java.util.ArrayList(sections_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionSection, com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder, com.google.ads.googleads.v11.services.AudienceCompositionSectionOrBuilder> sectionsBuilder_; + + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public java.util.List getSectionsList() { + if (sectionsBuilder_ == null) { + return java.util.Collections.unmodifiableList(sections_); + } else { + return sectionsBuilder_.getMessageList(); + } + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public int getSectionsCount() { + if (sectionsBuilder_ == null) { + return sections_.size(); + } else { + return sectionsBuilder_.getCount(); + } + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionSection getSections(int index) { + if (sectionsBuilder_ == null) { + return sections_.get(index); + } else { + return sectionsBuilder_.getMessage(index); + } + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder setSections( + int index, com.google.ads.googleads.v11.services.AudienceCompositionSection value) { + if (sectionsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSectionsIsMutable(); + sections_.set(index, value); + onChanged(); + } else { + sectionsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder setSections( + int index, com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder builderForValue) { + if (sectionsBuilder_ == null) { + ensureSectionsIsMutable(); + sections_.set(index, builderForValue.build()); + onChanged(); + } else { + sectionsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder addSections(com.google.ads.googleads.v11.services.AudienceCompositionSection value) { + if (sectionsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSectionsIsMutable(); + sections_.add(value); + onChanged(); + } else { + sectionsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder addSections( + int index, com.google.ads.googleads.v11.services.AudienceCompositionSection value) { + if (sectionsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSectionsIsMutable(); + sections_.add(index, value); + onChanged(); + } else { + sectionsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder addSections( + com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder builderForValue) { + if (sectionsBuilder_ == null) { + ensureSectionsIsMutable(); + sections_.add(builderForValue.build()); + onChanged(); + } else { + sectionsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder addSections( + int index, com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder builderForValue) { + if (sectionsBuilder_ == null) { + ensureSectionsIsMutable(); + sections_.add(index, builderForValue.build()); + onChanged(); + } else { + sectionsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder addAllSections( + java.lang.Iterable values) { + if (sectionsBuilder_ == null) { + ensureSectionsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, sections_); + onChanged(); + } else { + sectionsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder clearSections() { + if (sectionsBuilder_ == null) { + sections_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + sectionsBuilder_.clear(); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public Builder removeSections(int index) { + if (sectionsBuilder_ == null) { + ensureSectionsIsMutable(); + sections_.remove(index); + onChanged(); + } else { + sectionsBuilder_.remove(index); + } + return this; + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder getSectionsBuilder( + int index) { + return getSectionsFieldBuilder().getBuilder(index); + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionSectionOrBuilder getSectionsOrBuilder( + int index) { + if (sectionsBuilder_ == null) { + return sections_.get(index); } else { + return sectionsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public java.util.List + getSectionsOrBuilderList() { + if (sectionsBuilder_ != null) { + return sectionsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(sections_); + } + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder addSectionsBuilder() { + return getSectionsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.AudienceCompositionSection.getDefaultInstance()); + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder addSectionsBuilder( + int index) { + return getSectionsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.AudienceCompositionSection.getDefaultInstance()); + } + /** + *
+     * The contents of the insights report, organized into sections.
+     * Each section is associated with one of the AudienceInsightsDimension values
+     * in the request. There may be more than one section per dimension.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + public java.util.List + getSectionsBuilderList() { + return getSectionsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionSection, com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder, com.google.ads.googleads.v11.services.AudienceCompositionSectionOrBuilder> + getSectionsFieldBuilder() { + if (sectionsBuilder_ == null) { + sectionsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceCompositionSection, com.google.ads.googleads.v11.services.AudienceCompositionSection.Builder, com.google.ads.googleads.v11.services.AudienceCompositionSectionOrBuilder>( + sections_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + sections_ = null; + } + return sectionsBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) + private static final com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse(); + } + + public static com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public GenerateAudienceCompositionInsightsResponse parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new GenerateAudienceCompositionInsightsResponse(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsResponseOrBuilder.java new file mode 100644 index 0000000000..08996ae6f5 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateAudienceCompositionInsightsResponseOrBuilder.java @@ -0,0 +1,63 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface GenerateAudienceCompositionInsightsResponseOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + java.util.List + getSectionsList(); + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + com.google.ads.googleads.v11.services.AudienceCompositionSection getSections(int index); + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + int getSectionsCount(); + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + java.util.List + getSectionsOrBuilderList(); + /** + *
+   * The contents of the insights report, organized into sections.
+   * Each section is associated with one of the AudienceInsightsDimension values
+   * in the request. There may be more than one section per dimension.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceCompositionSection sections = 1; + */ + com.google.ads.googleads.v11.services.AudienceCompositionSectionOrBuilder getSectionsOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequest.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequest.java index ef62882077..28a613d7b4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequest.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequest.java @@ -737,7 +737,7 @@ public com.google.ads.googleads.v11.common.HistoricalMetricsOptionsOrBuilder get /** *
    * A Keyword and a specific Url to generate ideas from
-   * e.g. cars, www.example.com/cars.
+   * for example, cars, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -750,7 +750,7 @@ public boolean hasKeywordAndUrlSeed() { /** *
    * A Keyword and a specific Url to generate ideas from
-   * e.g. cars, www.example.com/cars.
+   * for example, cars, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -766,7 +766,7 @@ public com.google.ads.googleads.v11.services.KeywordAndUrlSeed getKeywordAndUrlS /** *
    * A Keyword and a specific Url to generate ideas from
-   * e.g. cars, www.example.com/cars.
+   * for example, cars, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -782,7 +782,7 @@ public com.google.ads.googleads.v11.services.KeywordAndUrlSeedOrBuilder getKeywo public static final int KEYWORD_SEED_FIELD_NUMBER = 3; /** *
-   * A Keyword or phrase to generate ideas from, e.g. cars.
+   * A Keyword or phrase to generate ideas from, for example, cars.
    * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -794,7 +794,7 @@ public boolean hasKeywordSeed() { } /** *
-   * A Keyword or phrase to generate ideas from, e.g. cars.
+   * A Keyword or phrase to generate ideas from, for example, cars.
    * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -809,7 +809,7 @@ public com.google.ads.googleads.v11.services.KeywordSeed getKeywordSeed() { } /** *
-   * A Keyword or phrase to generate ideas from, e.g. cars.
+   * A Keyword or phrase to generate ideas from, for example, cars.
    * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -825,7 +825,7 @@ public com.google.ads.googleads.v11.services.KeywordSeedOrBuilder getKeywordSeed public static final int URL_SEED_FIELD_NUMBER = 5; /** *
-   * A specific url to generate ideas from, e.g. www.example.com/cars.
+   * A specific url to generate ideas from, for example, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -837,7 +837,7 @@ public boolean hasUrlSeed() { } /** *
-   * A specific url to generate ideas from, e.g. www.example.com/cars.
+   * A specific url to generate ideas from, for example, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -852,7 +852,7 @@ public com.google.ads.googleads.v11.services.UrlSeed getUrlSeed() { } /** *
-   * A specific url to generate ideas from, e.g. www.example.com/cars.
+   * A specific url to generate ideas from, for example, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -868,7 +868,7 @@ public com.google.ads.googleads.v11.services.UrlSeedOrBuilder getUrlSeedOrBuilde public static final int SITE_SEED_FIELD_NUMBER = 11; /** *
-   * The site to generate ideas from, e.g. www.example.com.
+   * The site to generate ideas from, for example, www.example.com.
    * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -880,7 +880,7 @@ public boolean hasSiteSeed() { } /** *
-   * The site to generate ideas from, e.g. www.example.com.
+   * The site to generate ideas from, for example, www.example.com.
    * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -895,7 +895,7 @@ public com.google.ads.googleads.v11.services.SiteSeed getSiteSeed() { } /** *
-   * The site to generate ideas from, e.g. www.example.com.
+   * The site to generate ideas from, for example, www.example.com.
    * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -2400,8 +2400,8 @@ public int getKeywordAnnotationValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation keyword_annotation = 17; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of keywordAnnotation at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for keywordAnnotation to set. * @return This builder for chaining. */ public Builder setKeywordAnnotationValue( @@ -2760,7 +2760,7 @@ public com.google.ads.googleads.v11.common.HistoricalMetricsOptionsOrBuilder get /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2773,7 +2773,7 @@ public boolean hasKeywordAndUrlSeed() { /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2796,7 +2796,7 @@ public com.google.ads.googleads.v11.services.KeywordAndUrlSeed getKeywordAndUrlS /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2817,7 +2817,7 @@ public Builder setKeywordAndUrlSeed(com.google.ads.googleads.v11.services.Keywor /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2836,7 +2836,7 @@ public Builder setKeywordAndUrlSeed( /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2864,7 +2864,7 @@ public Builder mergeKeywordAndUrlSeed(com.google.ads.googleads.v11.services.Keyw /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2888,7 +2888,7 @@ public Builder clearKeywordAndUrlSeed() { /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2899,7 +2899,7 @@ public com.google.ads.googleads.v11.services.KeywordAndUrlSeed.Builder getKeywor /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2918,7 +2918,7 @@ public com.google.ads.googleads.v11.services.KeywordAndUrlSeedOrBuilder getKeywo /** *
      * A Keyword and a specific Url to generate ideas from
-     * e.g. cars, www.example.com/cars.
+     * for example, cars, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -2946,7 +2946,7 @@ public com.google.ads.googleads.v11.services.KeywordAndUrlSeedOrBuilder getKeywo com.google.ads.googleads.v11.services.KeywordSeed, com.google.ads.googleads.v11.services.KeywordSeed.Builder, com.google.ads.googleads.v11.services.KeywordSeedOrBuilder> keywordSeedBuilder_; /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -2958,7 +2958,7 @@ public boolean hasKeywordSeed() { } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -2980,7 +2980,7 @@ public com.google.ads.googleads.v11.services.KeywordSeed getKeywordSeed() { } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -3000,7 +3000,7 @@ public Builder setKeywordSeed(com.google.ads.googleads.v11.services.KeywordSeed } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -3018,7 +3018,7 @@ public Builder setKeywordSeed( } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -3045,7 +3045,7 @@ public Builder mergeKeywordSeed(com.google.ads.googleads.v11.services.KeywordSee } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -3068,7 +3068,7 @@ public Builder clearKeywordSeed() { } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -3078,7 +3078,7 @@ public com.google.ads.googleads.v11.services.KeywordSeed.Builder getKeywordSeedB } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -3096,7 +3096,7 @@ public com.google.ads.googleads.v11.services.KeywordSeedOrBuilder getKeywordSeed } /** *
-     * A Keyword or phrase to generate ideas from, e.g. cars.
+     * A Keyword or phrase to generate ideas from, for example, cars.
      * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -3124,7 +3124,7 @@ public com.google.ads.googleads.v11.services.KeywordSeedOrBuilder getKeywordSeed com.google.ads.googleads.v11.services.UrlSeed, com.google.ads.googleads.v11.services.UrlSeed.Builder, com.google.ads.googleads.v11.services.UrlSeedOrBuilder> urlSeedBuilder_; /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3136,7 +3136,7 @@ public boolean hasUrlSeed() { } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3158,7 +3158,7 @@ public com.google.ads.googleads.v11.services.UrlSeed getUrlSeed() { } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3178,7 +3178,7 @@ public Builder setUrlSeed(com.google.ads.googleads.v11.services.UrlSeed value) { } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3196,7 +3196,7 @@ public Builder setUrlSeed( } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3223,7 +3223,7 @@ public Builder mergeUrlSeed(com.google.ads.googleads.v11.services.UrlSeed value) } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3246,7 +3246,7 @@ public Builder clearUrlSeed() { } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3256,7 +3256,7 @@ public com.google.ads.googleads.v11.services.UrlSeed.Builder getUrlSeedBuilder() } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3274,7 +3274,7 @@ public com.google.ads.googleads.v11.services.UrlSeedOrBuilder getUrlSeedOrBuilde } /** *
-     * A specific url to generate ideas from, e.g. www.example.com/cars.
+     * A specific url to generate ideas from, for example, www.example.com/cars.
      * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -3302,7 +3302,7 @@ public com.google.ads.googleads.v11.services.UrlSeedOrBuilder getUrlSeedOrBuilde com.google.ads.googleads.v11.services.SiteSeed, com.google.ads.googleads.v11.services.SiteSeed.Builder, com.google.ads.googleads.v11.services.SiteSeedOrBuilder> siteSeedBuilder_; /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3314,7 +3314,7 @@ public boolean hasSiteSeed() { } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3336,7 +3336,7 @@ public com.google.ads.googleads.v11.services.SiteSeed getSiteSeed() { } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3356,7 +3356,7 @@ public Builder setSiteSeed(com.google.ads.googleads.v11.services.SiteSeed value) } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3374,7 +3374,7 @@ public Builder setSiteSeed( } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3401,7 +3401,7 @@ public Builder mergeSiteSeed(com.google.ads.googleads.v11.services.SiteSeed valu } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3424,7 +3424,7 @@ public Builder clearSiteSeed() { } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3434,7 +3434,7 @@ public com.google.ads.googleads.v11.services.SiteSeed.Builder getSiteSeedBuilder } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -3452,7 +3452,7 @@ public com.google.ads.googleads.v11.services.SiteSeedOrBuilder getSiteSeedOrBuil } /** *
-     * The site to generate ideas from, e.g. www.example.com.
+     * The site to generate ideas from, for example, www.example.com.
      * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequestOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequestOrBuilder.java index 592f2c1a86..2898aa5454 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequestOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateKeywordIdeasRequestOrBuilder.java @@ -290,7 +290,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends /** *
    * A Keyword and a specific Url to generate ideas from
-   * e.g. cars, www.example.com/cars.
+   * for example, cars, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -300,7 +300,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends /** *
    * A Keyword and a specific Url to generate ideas from
-   * e.g. cars, www.example.com/cars.
+   * for example, cars, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -310,7 +310,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends /** *
    * A Keyword and a specific Url to generate ideas from
-   * e.g. cars, www.example.com/cars.
+   * for example, cars, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.KeywordAndUrlSeed keyword_and_url_seed = 2; @@ -319,7 +319,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends /** *
-   * A Keyword or phrase to generate ideas from, e.g. cars.
+   * A Keyword or phrase to generate ideas from, for example, cars.
    * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -328,7 +328,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends boolean hasKeywordSeed(); /** *
-   * A Keyword or phrase to generate ideas from, e.g. cars.
+   * A Keyword or phrase to generate ideas from, for example, cars.
    * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -337,7 +337,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends com.google.ads.googleads.v11.services.KeywordSeed getKeywordSeed(); /** *
-   * A Keyword or phrase to generate ideas from, e.g. cars.
+   * A Keyword or phrase to generate ideas from, for example, cars.
    * 
* * .google.ads.googleads.v11.services.KeywordSeed keyword_seed = 3; @@ -346,7 +346,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends /** *
-   * A specific url to generate ideas from, e.g. www.example.com/cars.
+   * A specific url to generate ideas from, for example, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -355,7 +355,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends boolean hasUrlSeed(); /** *
-   * A specific url to generate ideas from, e.g. www.example.com/cars.
+   * A specific url to generate ideas from, for example, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -364,7 +364,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends com.google.ads.googleads.v11.services.UrlSeed getUrlSeed(); /** *
-   * A specific url to generate ideas from, e.g. www.example.com/cars.
+   * A specific url to generate ideas from, for example, www.example.com/cars.
    * 
* * .google.ads.googleads.v11.services.UrlSeed url_seed = 5; @@ -373,7 +373,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends /** *
-   * The site to generate ideas from, e.g. www.example.com.
+   * The site to generate ideas from, for example, www.example.com.
    * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -382,7 +382,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends boolean hasSiteSeed(); /** *
-   * The site to generate ideas from, e.g. www.example.com.
+   * The site to generate ideas from, for example, www.example.com.
    * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; @@ -391,7 +391,7 @@ public interface GenerateKeywordIdeasRequestOrBuilder extends com.google.ads.googleads.v11.services.SiteSeed getSiteSeed(); /** *
-   * The site to generate ideas from, e.g. www.example.com.
+   * The site to generate ideas from, for example, www.example.com.
    * 
* * .google.ads.googleads.v11.services.SiteSeed site_seed = 11; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequest.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequest.java index d257736e68..83320963af 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequest.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequest.java @@ -23,6 +23,7 @@ private GenerateReachForecastRequest() { customerId_ = ""; currencyCode_ = ""; plannedProducts_ = java.util.Collections.emptyList(); + customerReachGroup_ = ""; } @java.lang.Override @@ -152,6 +153,12 @@ private GenerateReachForecastRequest( break; } + case 114: { + java.lang.String s = input.readStringRequireUtf8(); + bitField0_ |= 0x00000010; + customerReachGroup_ = s; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -339,13 +346,13 @@ public com.google.ads.googleads.v11.services.CampaignDurationOrBuilder getCampai private int cookieFrequencyCap_; /** *
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user.
    * If not specified, no cap is applied.
    * This field is deprecated in v4 and will eventually be removed.
-   * Please use cookie_frequency_cap_setting instead.
+   * Use cookie_frequency_cap_setting instead.
    * 
* * optional int32 cookie_frequency_cap = 10; @@ -357,13 +364,13 @@ public boolean hasCookieFrequencyCap() { } /** *
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user.
    * If not specified, no cap is applied.
    * This field is deprecated in v4 and will eventually be removed.
-   * Please use cookie_frequency_cap_setting instead.
+   * Use cookie_frequency_cap_setting instead.
    * 
* * optional int32 cookie_frequency_cap = 10; @@ -378,7 +385,7 @@ public int getCookieFrequencyCap() { private com.google.ads.googleads.v11.services.FrequencyCap cookieFrequencyCapSetting_; /** *
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user during a specified time interval.
@@ -395,7 +402,7 @@ public boolean hasCookieFrequencyCapSetting() {
   }
   /**
    * 
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user during a specified time interval.
@@ -412,7 +419,7 @@ public com.google.ads.googleads.v11.services.FrequencyCap getCookieFrequencyCapS
   }
   /**
    * 
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user during a specified time interval.
@@ -431,7 +438,7 @@ public com.google.ads.googleads.v11.services.FrequencyCapOrBuilder getCookieFreq
   private int minEffectiveFrequency_;
   /**
    * 
-   * Desired minimum effective frequency (the number of times a person was
+   * Chosen minimum effective frequency (the number of times a person was
    * exposed to the ad) for the reported reach metrics [1-10].
    * This won't affect the targeting, but just the reporting.
    * If not specified, a default of 1 is applied.
@@ -447,7 +454,7 @@ public boolean hasMinEffectiveFrequency() {
   }
   /**
    * 
-   * Desired minimum effective frequency (the number of times a person was
+   * Chosen minimum effective frequency (the number of times a person was
    * exposed to the ad) for the reported reach metrics [1-10].
    * This won't affect the targeting, but just the reporting.
    * If not specified, a default of 1 is applied.
@@ -527,7 +534,7 @@ public com.google.ads.googleads.v11.services.EffectiveFrequencyLimitOrBuilder ge
    * 
    * The targeting to be applied to all products selected in the product mix.
    * This is planned targeting: execution details might vary based on the
-   * advertising product, please consult an implementation specialist.
+   * advertising product, consult an implementation specialist.
    * See specific metrics for details on how targeting affects them.
    * 
* @@ -542,7 +549,7 @@ public boolean hasTargeting() { *
    * The targeting to be applied to all products selected in the product mix.
    * This is planned targeting: execution details might vary based on the
-   * advertising product, please consult an implementation specialist.
+   * advertising product, consult an implementation specialist.
    * See specific metrics for details on how targeting affects them.
    * 
* @@ -557,7 +564,7 @@ public com.google.ads.googleads.v11.services.Targeting getTargeting() { *
    * The targeting to be applied to all products selected in the product mix.
    * This is planned targeting: execution details might vary based on the
-   * advertising product, please consult an implementation specialist.
+   * advertising product, consult an implementation specialist.
    * See specific metrics for details on how targeting affects them.
    * 
* @@ -671,6 +678,67 @@ public com.google.ads.googleads.v11.services.ForecastMetricOptionsOrBuilder getF return getForecastMetricOptions(); } + public static final int CUSTOMER_REACH_GROUP_FIELD_NUMBER = 14; + private volatile java.lang.Object customerReachGroup_; + /** + *
+   * The name of the customer being planned for. This is a user-defined value.
+   * Required if targeting.audience_targeting is set.
+   * 
+ * + * optional string customer_reach_group = 14; + * @return Whether the customerReachGroup field is set. + */ + @java.lang.Override + public boolean hasCustomerReachGroup() { + return ((bitField0_ & 0x00000010) != 0); + } + /** + *
+   * The name of the customer being planned for. This is a user-defined value.
+   * Required if targeting.audience_targeting is set.
+   * 
+ * + * optional string customer_reach_group = 14; + * @return The customerReachGroup. + */ + @java.lang.Override + public java.lang.String getCustomerReachGroup() { + java.lang.Object ref = customerReachGroup_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerReachGroup_ = s; + return s; + } + } + /** + *
+   * The name of the customer being planned for. This is a user-defined value.
+   * Required if targeting.audience_targeting is set.
+   * 
+ * + * optional string customer_reach_group = 14; + * @return The bytes for customerReachGroup. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getCustomerReachGroupBytes() { + java.lang.Object ref = customerReachGroup_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerReachGroup_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -715,6 +783,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (forecastMetricOptions_ != null) { output.writeMessage(13, getForecastMetricOptions()); } + if (((bitField0_ & 0x00000010) != 0)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 14, customerReachGroup_); + } unknownFields.writeTo(output); } @@ -762,6 +833,9 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeMessageSize(13, getForecastMetricOptions()); } + if (((bitField0_ & 0x00000010) != 0)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(14, customerReachGroup_); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -821,6 +895,11 @@ public boolean equals(final java.lang.Object obj) { if (!getForecastMetricOptions() .equals(other.getForecastMetricOptions())) return false; } + if (hasCustomerReachGroup() != other.hasCustomerReachGroup()) return false; + if (hasCustomerReachGroup()) { + if (!getCustomerReachGroup() + .equals(other.getCustomerReachGroup())) return false; + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -870,6 +949,10 @@ public int hashCode() { hash = (37 * hash) + FORECAST_METRIC_OPTIONS_FIELD_NUMBER; hash = (53 * hash) + getForecastMetricOptions().hashCode(); } + if (hasCustomerReachGroup()) { + hash = (37 * hash) + CUSTOMER_REACH_GROUP_FIELD_NUMBER; + hash = (53 * hash) + getCustomerReachGroup().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -1053,6 +1136,8 @@ public Builder clear() { forecastMetricOptions_ = null; forecastMetricOptionsBuilder_ = null; } + customerReachGroup_ = ""; + bitField0_ = (bitField0_ & ~0x00000020); return this; } @@ -1131,6 +1216,10 @@ public com.google.ads.googleads.v11.services.GenerateReachForecastRequest buildP } else { result.forecastMetricOptions_ = forecastMetricOptionsBuilder_.build(); } + if (((from_bitField0_ & 0x00000020) != 0)) { + to_bitField0_ |= 0x00000010; + } + result.customerReachGroup_ = customerReachGroup_; result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -1236,6 +1325,11 @@ public Builder mergeFrom(com.google.ads.googleads.v11.services.GenerateReachFore if (other.hasForecastMetricOptions()) { mergeForecastMetricOptions(other.getForecastMetricOptions()); } + if (other.hasCustomerReachGroup()) { + bitField0_ |= 0x00000020; + customerReachGroup_ = other.customerReachGroup_; + onChanged(); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1633,13 +1727,13 @@ public com.google.ads.googleads.v11.services.CampaignDurationOrBuilder getCampai private int cookieFrequencyCap_ ; /** *
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user.
      * If not specified, no cap is applied.
      * This field is deprecated in v4 and will eventually be removed.
-     * Please use cookie_frequency_cap_setting instead.
+     * Use cookie_frequency_cap_setting instead.
      * 
* * optional int32 cookie_frequency_cap = 10; @@ -1651,13 +1745,13 @@ public boolean hasCookieFrequencyCap() { } /** *
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user.
      * If not specified, no cap is applied.
      * This field is deprecated in v4 and will eventually be removed.
-     * Please use cookie_frequency_cap_setting instead.
+     * Use cookie_frequency_cap_setting instead.
      * 
* * optional int32 cookie_frequency_cap = 10; @@ -1669,13 +1763,13 @@ public int getCookieFrequencyCap() { } /** *
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user.
      * If not specified, no cap is applied.
      * This field is deprecated in v4 and will eventually be removed.
-     * Please use cookie_frequency_cap_setting instead.
+     * Use cookie_frequency_cap_setting instead.
      * 
* * optional int32 cookie_frequency_cap = 10; @@ -1690,13 +1784,13 @@ public Builder setCookieFrequencyCap(int value) { } /** *
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user.
      * If not specified, no cap is applied.
      * This field is deprecated in v4 and will eventually be removed.
-     * Please use cookie_frequency_cap_setting instead.
+     * Use cookie_frequency_cap_setting instead.
      * 
* * optional int32 cookie_frequency_cap = 10; @@ -1714,7 +1808,7 @@ public Builder clearCookieFrequencyCap() { com.google.ads.googleads.v11.services.FrequencyCap, com.google.ads.googleads.v11.services.FrequencyCap.Builder, com.google.ads.googleads.v11.services.FrequencyCapOrBuilder> cookieFrequencyCapSettingBuilder_; /** *
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1730,7 +1824,7 @@ public boolean hasCookieFrequencyCapSetting() {
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1750,7 +1844,7 @@ public com.google.ads.googleads.v11.services.FrequencyCap getCookieFrequencyCapS
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1775,7 +1869,7 @@ public Builder setCookieFrequencyCapSetting(com.google.ads.googleads.v11.service
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1798,7 +1892,7 @@ public Builder setCookieFrequencyCapSetting(
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1825,7 +1919,7 @@ public Builder mergeCookieFrequencyCapSetting(com.google.ads.googleads.v11.servi
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1848,7 +1942,7 @@ public Builder clearCookieFrequencyCapSetting() {
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1865,7 +1959,7 @@ public com.google.ads.googleads.v11.services.FrequencyCap.Builder getCookieFrequ
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1885,7 +1979,7 @@ public com.google.ads.googleads.v11.services.FrequencyCapOrBuilder getCookieFreq
     }
     /**
      * 
-     * Desired cookie frequency cap to be applied to each planned product.
+     * Chosen cookie frequency cap to be applied to each planned product.
      * This is equivalent to the frequency cap exposed in Google Ads when creating
      * a campaign, it represents the maximum number of times an ad can be shown to
      * the same user during a specified time interval.
@@ -1912,7 +2006,7 @@ public com.google.ads.googleads.v11.services.FrequencyCapOrBuilder getCookieFreq
     private int minEffectiveFrequency_ ;
     /**
      * 
-     * Desired minimum effective frequency (the number of times a person was
+     * Chosen minimum effective frequency (the number of times a person was
      * exposed to the ad) for the reported reach metrics [1-10].
      * This won't affect the targeting, but just the reporting.
      * If not specified, a default of 1 is applied.
@@ -1928,7 +2022,7 @@ public boolean hasMinEffectiveFrequency() {
     }
     /**
      * 
-     * Desired minimum effective frequency (the number of times a person was
+     * Chosen minimum effective frequency (the number of times a person was
      * exposed to the ad) for the reported reach metrics [1-10].
      * This won't affect the targeting, but just the reporting.
      * If not specified, a default of 1 is applied.
@@ -1944,7 +2038,7 @@ public int getMinEffectiveFrequency() {
     }
     /**
      * 
-     * Desired minimum effective frequency (the number of times a person was
+     * Chosen minimum effective frequency (the number of times a person was
      * exposed to the ad) for the reported reach metrics [1-10].
      * This won't affect the targeting, but just the reporting.
      * If not specified, a default of 1 is applied.
@@ -1963,7 +2057,7 @@ public Builder setMinEffectiveFrequency(int value) {
     }
     /**
      * 
-     * Desired minimum effective frequency (the number of times a person was
+     * Chosen minimum effective frequency (the number of times a person was
      * exposed to the ad) for the reported reach metrics [1-10].
      * This won't affect the targeting, but just the reporting.
      * If not specified, a default of 1 is applied.
@@ -2206,7 +2300,7 @@ public com.google.ads.googleads.v11.services.EffectiveFrequencyLimitOrBuilder ge
      * 
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2220,7 +2314,7 @@ public boolean hasTargeting() { *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2238,7 +2332,7 @@ public com.google.ads.googleads.v11.services.Targeting getTargeting() { *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2261,7 +2355,7 @@ public Builder setTargeting(com.google.ads.googleads.v11.services.Targeting valu *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2282,7 +2376,7 @@ public Builder setTargeting( *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2307,7 +2401,7 @@ public Builder mergeTargeting(com.google.ads.googleads.v11.services.Targeting va *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2328,7 +2422,7 @@ public Builder clearTargeting() { *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2343,7 +2437,7 @@ public com.google.ads.googleads.v11.services.Targeting.Builder getTargetingBuild *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2361,7 +2455,7 @@ public com.google.ads.googleads.v11.services.TargetingOrBuilder getTargetingOrBu *
      * The targeting to be applied to all products selected in the product mix.
      * This is planned targeting: execution details might vary based on the
-     * advertising product, please consult an implementation specialist.
+     * advertising product, consult an implementation specialist.
      * See specific metrics for details on how targeting affects them.
      * 
* @@ -2865,6 +2959,119 @@ public com.google.ads.googleads.v11.services.ForecastMetricOptionsOrBuilder getF } return forecastMetricOptionsBuilder_; } + + private java.lang.Object customerReachGroup_ = ""; + /** + *
+     * The name of the customer being planned for. This is a user-defined value.
+     * Required if targeting.audience_targeting is set.
+     * 
+ * + * optional string customer_reach_group = 14; + * @return Whether the customerReachGroup field is set. + */ + public boolean hasCustomerReachGroup() { + return ((bitField0_ & 0x00000020) != 0); + } + /** + *
+     * The name of the customer being planned for. This is a user-defined value.
+     * Required if targeting.audience_targeting is set.
+     * 
+ * + * optional string customer_reach_group = 14; + * @return The customerReachGroup. + */ + public java.lang.String getCustomerReachGroup() { + java.lang.Object ref = customerReachGroup_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + customerReachGroup_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * The name of the customer being planned for. This is a user-defined value.
+     * Required if targeting.audience_targeting is set.
+     * 
+ * + * optional string customer_reach_group = 14; + * @return The bytes for customerReachGroup. + */ + public com.google.protobuf.ByteString + getCustomerReachGroupBytes() { + java.lang.Object ref = customerReachGroup_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + customerReachGroup_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * The name of the customer being planned for. This is a user-defined value.
+     * Required if targeting.audience_targeting is set.
+     * 
+ * + * optional string customer_reach_group = 14; + * @param value The customerReachGroup to set. + * @return This builder for chaining. + */ + public Builder setCustomerReachGroup( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + bitField0_ |= 0x00000020; + customerReachGroup_ = value; + onChanged(); + return this; + } + /** + *
+     * The name of the customer being planned for. This is a user-defined value.
+     * Required if targeting.audience_targeting is set.
+     * 
+ * + * optional string customer_reach_group = 14; + * @return This builder for chaining. + */ + public Builder clearCustomerReachGroup() { + bitField0_ = (bitField0_ & ~0x00000020); + customerReachGroup_ = getDefaultInstance().getCustomerReachGroup(); + onChanged(); + return this; + } + /** + *
+     * The name of the customer being planned for. This is a user-defined value.
+     * Required if targeting.audience_targeting is set.
+     * 
+ * + * optional string customer_reach_group = 14; + * @param value The bytes for customerReachGroup to set. + * @return This builder for chaining. + */ + public Builder setCustomerReachGroupBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + bitField0_ |= 0x00000020; + customerReachGroup_ = value; + onChanged(); + return this; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequestOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequestOrBuilder.java index 51a3ce4214..84b7761096 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequestOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GenerateReachForecastRequestOrBuilder.java @@ -88,13 +88,13 @@ public interface GenerateReachForecastRequestOrBuilder extends /** *
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user.
    * If not specified, no cap is applied.
    * This field is deprecated in v4 and will eventually be removed.
-   * Please use cookie_frequency_cap_setting instead.
+   * Use cookie_frequency_cap_setting instead.
    * 
* * optional int32 cookie_frequency_cap = 10; @@ -103,13 +103,13 @@ public interface GenerateReachForecastRequestOrBuilder extends boolean hasCookieFrequencyCap(); /** *
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user.
    * If not specified, no cap is applied.
    * This field is deprecated in v4 and will eventually be removed.
-   * Please use cookie_frequency_cap_setting instead.
+   * Use cookie_frequency_cap_setting instead.
    * 
* * optional int32 cookie_frequency_cap = 10; @@ -119,7 +119,7 @@ public interface GenerateReachForecastRequestOrBuilder extends /** *
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user during a specified time interval.
@@ -133,7 +133,7 @@ public interface GenerateReachForecastRequestOrBuilder extends
   boolean hasCookieFrequencyCapSetting();
   /**
    * 
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user during a specified time interval.
@@ -147,7 +147,7 @@ public interface GenerateReachForecastRequestOrBuilder extends
   com.google.ads.googleads.v11.services.FrequencyCap getCookieFrequencyCapSetting();
   /**
    * 
-   * Desired cookie frequency cap to be applied to each planned product.
+   * Chosen cookie frequency cap to be applied to each planned product.
    * This is equivalent to the frequency cap exposed in Google Ads when creating
    * a campaign, it represents the maximum number of times an ad can be shown to
    * the same user during a specified time interval.
@@ -161,7 +161,7 @@ public interface GenerateReachForecastRequestOrBuilder extends
 
   /**
    * 
-   * Desired minimum effective frequency (the number of times a person was
+   * Chosen minimum effective frequency (the number of times a person was
    * exposed to the ad) for the reported reach metrics [1-10].
    * This won't affect the targeting, but just the reporting.
    * If not specified, a default of 1 is applied.
@@ -174,7 +174,7 @@ public interface GenerateReachForecastRequestOrBuilder extends
   boolean hasMinEffectiveFrequency();
   /**
    * 
-   * Desired minimum effective frequency (the number of times a person was
+   * Chosen minimum effective frequency (the number of times a person was
    * exposed to the ad) for the reported reach metrics [1-10].
    * This won't affect the targeting, but just the reporting.
    * If not specified, a default of 1 is applied.
@@ -238,7 +238,7 @@ public interface GenerateReachForecastRequestOrBuilder extends
    * 
    * The targeting to be applied to all products selected in the product mix.
    * This is planned targeting: execution details might vary based on the
-   * advertising product, please consult an implementation specialist.
+   * advertising product, consult an implementation specialist.
    * See specific metrics for details on how targeting affects them.
    * 
* @@ -250,7 +250,7 @@ public interface GenerateReachForecastRequestOrBuilder extends *
    * The targeting to be applied to all products selected in the product mix.
    * This is planned targeting: execution details might vary based on the
-   * advertising product, please consult an implementation specialist.
+   * advertising product, consult an implementation specialist.
    * See specific metrics for details on how targeting affects them.
    * 
* @@ -262,7 +262,7 @@ public interface GenerateReachForecastRequestOrBuilder extends *
    * The targeting to be applied to all products selected in the product mix.
    * This is planned targeting: execution details might vary based on the
-   * advertising product, please consult an implementation specialist.
+   * advertising product, consult an implementation specialist.
    * See specific metrics for details on how targeting affects them.
    * 
* @@ -345,4 +345,36 @@ com.google.ads.googleads.v11.services.PlannedProductOrBuilder getPlannedProducts * .google.ads.googleads.v11.services.ForecastMetricOptions forecast_metric_options = 13; */ com.google.ads.googleads.v11.services.ForecastMetricOptionsOrBuilder getForecastMetricOptionsOrBuilder(); + + /** + *
+   * The name of the customer being planned for. This is a user-defined value.
+   * Required if targeting.audience_targeting is set.
+   * 
+ * + * optional string customer_reach_group = 14; + * @return Whether the customerReachGroup field is set. + */ + boolean hasCustomerReachGroup(); + /** + *
+   * The name of the customer being planned for. This is a user-defined value.
+   * Required if targeting.audience_targeting is set.
+   * 
+ * + * optional string customer_reach_group = 14; + * @return The customerReachGroup. + */ + java.lang.String getCustomerReachGroup(); + /** + *
+   * The name of the customer being planned for. This is a user-defined value.
+   * Required if targeting.audience_targeting is set.
+   * 
+ * + * optional string customer_reach_group = 14; + * @return The bytes for customerReachGroup. + */ + com.google.protobuf.ByteString + getCustomerReachGroupBytes(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceClient.java index a8ed462a4c..2be00e3afa 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceClient.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceClient.java @@ -351,7 +351,7 @@ public final UnaryCallable sear * *

Atomicity makes error handling much easier. If you're making a series of changes and one * fails, it can leave your account in an inconsistent state. With atomicity, you either reach the - * desired state directly, or the request fails and you can retry. + * chosen state directly, or the request fails and you can retry. * *

## Temp Resource Names * @@ -441,7 +441,7 @@ public final MutateGoogleAdsResponse mutate( * *

Atomicity makes error handling much easier. If you're making a series of changes and one * fails, it can leave your account in an inconsistent state. With atomicity, you either reach the - * desired state directly, or the request fails and you can retry. + * chosen state directly, or the request fails and you can retry. * *

## Temp Resource Names * @@ -528,7 +528,7 @@ public final MutateGoogleAdsResponse mutate(MutateGoogleAdsRequest request) { * *

Atomicity makes error handling much easier. If you're making a series of changes and one * fails, it can leave your account in an inconsistent state. With atomicity, you either reach the - * desired state directly, or the request fails and you can retry. + * chosen state directly, or the request fails and you can retry. * *

## Temp Resource Names * diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceGrpc.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceGrpc.java index dc72c48648..ba0eca22e9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceGrpc.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/GoogleAdsServiceGrpc.java @@ -220,7 +220,7 @@ public void searchStream(com.google.ads.googleads.v11.services.SearchGoogleAdsSt * ## Atomic Transaction Benefits * Atomicity makes error handling much easier. If you're making a series of * changes and one fails, it can leave your account in an inconsistent state. - * With atomicity, you either reach the desired state directly, or the request + * With atomicity, you either reach the chosen state directly, or the request * fails and you can retry. * ## Temp Resource Names * Temp resource names are a special type of resource name used to create a @@ -416,7 +416,7 @@ public void searchStream(com.google.ads.googleads.v11.services.SearchGoogleAdsSt * ## Atomic Transaction Benefits * Atomicity makes error handling much easier. If you're making a series of * changes and one fails, it can leave your account in an inconsistent state. - * With atomicity, you either reach the desired state directly, or the request + * With atomicity, you either reach the chosen state directly, or the request * fails and you can retry. * ## Temp Resource Names * Temp resource names are a special type of resource name used to create a @@ -586,7 +586,7 @@ public java.util.Iterator.google.ads.goog" + - "leads.v11.services.MutateFeedItemSetLink" + - "ResultH\000\022`\n\027feed_item_target_result\030& \001(" + - "\0132=.google.ads.googleads.v11.services.Mu" + - "tateFeedItemTargetResultH\000\022Y\n\023feed_mappi" + - "ng_result\030\' \001(\0132:.google.ads.googleads.v" + - "11.services.MutateFeedMappingResultH\000\022J\n" + - "\013feed_result\030( \001(\01323.google.ads.googlead" + - "s.v11.services.MutateFeedResultH\000\022i\n\034key" + - "word_plan_ad_group_result\030, \001(\0132A.google" + - ".ads.googleads.v11.services.MutateKeywor" + - "dPlanAdGroupResultH\000\022j\n\034keyword_plan_cam" + - "paign_result\030- \001(\0132B.google.ads.googlead" + - "s.v11.services.MutateKeywordPlanCampaign" + - "ResultH\000\022x\n$keyword_plan_ad_group_keywor" + - "d_result\0302 \001(\0132H.google.ads.googleads.v1" + - "1.services.MutateKeywordPlanAdGroupKeywo" + - "rdResultH\000\022y\n$keyword_plan_campaign_keyw" + - "ord_result\0303 \001(\0132I.google.ads.googleads." + - "v11.services.MutateKeywordPlanCampaignKe" + - "ywordResultH\000\022Z\n\023keyword_plan_result\0300 \001" + - "(\0132;.google.ads.googleads.v11.services.M" + - "utateKeywordPlansResultH\000\022L\n\014label_resul" + - "t\030) \001(\01324.google.ads.googleads.v11.servi" + - "ces.MutateLabelResultH\000\022U\n\021media_file_re" + - "sult\030* \001(\01328.google.ads.googleads.v11.se" + - "rvices.MutateMediaFileResultH\000\022e\n\031remark" + - "eting_action_result\030+ \001(\0132@.google.ads.g" + - "oogleads.v11.services.MutateRemarketingA" + - "ctionResultH\000\022a\n\027shared_criterion_result" + - "\030\016 \001(\0132>.google.ads.googleads.v11.servic" + - "es.MutateSharedCriterionResultH\000\022U\n\021shar" + - "ed_set_result\030\017 \001(\01328.google.ads.googlea" + - "ds.v11.services.MutateSharedSetResultH\000\022" + - "l\n\035smart_campaign_setting_result\030= \001(\0132C" + + "ustomizerAttributeResultH\000\022V\n\021experiment" + + "_result\030Q \001(\01329.google.ads.googleads.v11" + + ".services.MutateExperimentResultH\000\022]\n\025ex" + + "periment_arm_result\030R \001(\0132<.google.ads.g" + + "oogleads.v11.services.MutateExperimentAr" + + "mResultH\000\022f\n\032extension_feed_item_result\030" + + "$ \001(\0132@.google.ads.googleads.v11.service" + + "s.MutateExtensionFeedItemResultH\000\022S\n\020fee" + + "d_item_result\030% \001(\01327.google.ads.googlea" + + "ds.v11.services.MutateFeedItemResultH\000\022Z" + + "\n\024feed_item_set_result\0305 \001(\0132:.google.ad" + + "s.googleads.v11.services.MutateFeedItemS" + + "etResultH\000\022c\n\031feed_item_set_link_result\030" + + "6 \001(\0132>.google.ads.googleads.v11.service" + + "s.MutateFeedItemSetLinkResultH\000\022`\n\027feed_" + + "item_target_result\030& \001(\0132=.google.ads.go" + + "ogleads.v11.services.MutateFeedItemTarge" + + "tResultH\000\022Y\n\023feed_mapping_result\030\' \001(\0132:" + + ".google.ads.googleads.v11.services.Mutat" + + "eFeedMappingResultH\000\022J\n\013feed_result\030( \001(" + + "\01323.google.ads.googleads.v11.services.Mu" + + "tateFeedResultH\000\022i\n\034keyword_plan_ad_grou" + + "p_result\030, \001(\0132A.google.ads.googleads.v1" + + "1.services.MutateKeywordPlanAdGroupResul" + + "tH\000\022j\n\034keyword_plan_campaign_result\030- \001(" + + "\0132B.google.ads.googleads.v11.services.Mu" + + "tateKeywordPlanCampaignResultH\000\022x\n$keywo" + + "rd_plan_ad_group_keyword_result\0302 \001(\0132H." + + "google.ads.googleads.v11.services.Mutate" + + "KeywordPlanAdGroupKeywordResultH\000\022y\n$key" + + "word_plan_campaign_keyword_result\0303 \001(\0132" + + "I.google.ads.googleads.v11.services.Muta" + + "teKeywordPlanCampaignKeywordResultH\000\022Z\n\023" + + "keyword_plan_result\0300 \001(\0132;.google.ads.g" + + "oogleads.v11.services.MutateKeywordPlans" + + "ResultH\000\022L\n\014label_result\030) \001(\01324.google." + + "ads.googleads.v11.services.MutateLabelRe" + + "sultH\000\022U\n\021media_file_result\030* \001(\01328.goog" + + "le.ads.googleads.v11.services.MutateMedi" + + "aFileResultH\000\022e\n\031remarketing_action_resu" + + "lt\030+ \001(\0132@.google.ads.googleads.v11.serv" + + "ices.MutateRemarketingActionResultH\000\022a\n\027" + + "shared_criterion_result\030\016 \001(\0132>.google.a" + + "ds.googleads.v11.services.MutateSharedCr" + + "iterionResultH\000\022U\n\021shared_set_result\030\017 \001" + + "(\01328.google.ads.googleads.v11.services.M" + + "utateSharedSetResultH\000\022l\n\035smart_campaign" + + "_setting_result\030= \001(\0132C.google.ads.googl" + + "eads.v11.services.MutateSmartCampaignSet" + + "tingResultH\000\022S\n\020user_list_result\030\020 \001(\01327" + ".google.ads.googleads.v11.services.Mutat" + - "eSmartCampaignSettingResultH\000\022S\n\020user_li" + - "st_result\030\020 \001(\01327.google.ads.googleads.v" + - "11.services.MutateUserListResultH\000B\n\n\010re" + - "sponse2\365\005\n\020GoogleAdsService\022\317\001\n\006Search\0229" + - ".google.ads.googleads.v11.services.Searc" + - "hGoogleAdsRequest\032:.google.ads.googleads" + - ".v11.services.SearchGoogleAdsResponse\"N\202" + - "\323\344\223\0024\"//v11/customers/{customer_id=*}/go" + - "ogleAds:search:\001*\332A\021customer_id,query\022\351\001" + - "\n\014SearchStream\022?.google.ads.googleads.v1" + - "1.services.SearchGoogleAdsStreamRequest\032" + - "@.google.ads.googleads.v11.services.Sear" + - "chGoogleAdsStreamResponse\"T\202\323\344\223\002:\"5/v11/" + - "customers/{customer_id=*}/googleAds:sear" + - "chStream:\001*\332A\021customer_id,query0\001\022\333\001\n\006Mu" + - "tate\0229.google.ads.googleads.v11.services" + - ".MutateGoogleAdsRequest\032:.google.ads.goo" + - "gleads.v11.services.MutateGoogleAdsRespo" + - "nse\"Z\202\323\344\223\0024\"//v11/customers/{customer_id" + - "=*}/googleAds:mutate:\001*\332A\035customer_id,mu" + - "tate_operations\032E\312A\030googleads.googleapis" + - ".com\322A\'https://www.googleapis.com/auth/a" + - "dwordsB\201\002\n%com.google.ads.googleads.v11." + - "servicesB\025GoogleAdsServiceProtoP\001ZIgoogl" + - "e.golang.org/genproto/googleapis/ads/goo" + - "gleads/v11/services;services\242\002\003GAA\252\002!Goo" + - "gle.Ads.GoogleAds.V11.Services\312\002!Google\\" + - "Ads\\GoogleAds\\V11\\Services\352\002%Google::Ads" + - "::GoogleAds::V11::Servicesb\006proto3" + "eUserListResultH\000B\n\n\010response2\365\005\n\020Google" + + "AdsService\022\317\001\n\006Search\0229.google.ads.googl" + + "eads.v11.services.SearchGoogleAdsRequest" + + "\032:.google.ads.googleads.v11.services.Sea" + + "rchGoogleAdsResponse\"N\202\323\344\223\0024\"//v11/custo" + + "mers/{customer_id=*}/googleAds:search:\001*" + + "\332A\021customer_id,query\022\351\001\n\014SearchStream\022?." + + "google.ads.googleads.v11.services.Search" + + "GoogleAdsStreamRequest\032@.google.ads.goog" + + "leads.v11.services.SearchGoogleAdsStream" + + "Response\"T\202\323\344\223\002:\"5/v11/customers/{custom" + + "er_id=*}/googleAds:searchStream:\001*\332A\021cus" + + "tomer_id,query0\001\022\333\001\n\006Mutate\0229.google.ads" + + ".googleads.v11.services.MutateGoogleAdsR" + + "equest\032:.google.ads.googleads.v11.servic" + + "es.MutateGoogleAdsResponse\"Z\202\323\344\223\0024\"//v11" + + "/customers/{customer_id=*}/googleAds:mut" + + "ate:\001*\332A\035customer_id,mutate_operations\032E" + + "\312A\030googleads.googleapis.com\322A\'https://ww" + + "w.googleapis.com/auth/adwordsB\201\002\n%com.go" + + "ogle.ads.googleads.v11.servicesB\025GoogleA" + + "dsServiceProtoP\001ZIgoogle.golang.org/genp" + + "roto/googleapis/ads/googleads/v11/servic" + + "es;services\242\002\003GAA\252\002!Google.Ads.GoogleAds" + + ".V11.Services\312\002!Google\\Ads\\GoogleAds\\V11" + + "\\Services\352\002%Google::Ads::GoogleAds::V11:" + + ":Servicesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -1490,7 +1495,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_services_MutateOperationResponse_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_MutateOperationResponse_descriptor, - new java.lang.String[] { "AdGroupAdLabelResult", "AdGroupAdResult", "AdGroupAssetResult", "AdGroupBidModifierResult", "AdGroupCriterionCustomizerResult", "AdGroupCriterionLabelResult", "AdGroupCriterionResult", "AdGroupCustomizerResult", "AdGroupExtensionSettingResult", "AdGroupFeedResult", "AdGroupLabelResult", "AdGroupResult", "AdParameterResult", "AdResult", "AssetResult", "AssetGroupAssetResult", "AssetGroupListingGroupFilterResult", "AssetGroupSignalResult", "AssetGroupResult", "AssetSetAssetResult", "AssetSetResult", "AudienceResult", "BiddingDataExclusionResult", "BiddingSeasonalityAdjustmentResult", "BiddingStrategyResult", "CampaignAssetResult", "CampaignAssetSetResult", "CampaignBidModifierResult", "CampaignBudgetResult", "CampaignConversionGoalResult", "CampaignCriterionResult", "CampaignCustomizerResult", "CampaignDraftResult", "CampaignExperimentResult", "CampaignExtensionSettingResult", "CampaignFeedResult", "CampaignGroupResult", "CampaignLabelResult", "CampaignResult", "CampaignSharedSetResult", "ConversionActionResult", "ConversionCustomVariableResult", "ConversionGoalCampaignConfigResult", "ConversionValueRuleResult", "ConversionValueRuleSetResult", "CustomConversionGoalResult", "CustomerAssetResult", "CustomerConversionGoalResult", "CustomerCustomizerResult", "CustomerExtensionSettingResult", "CustomerFeedResult", "CustomerLabelResult", "CustomerNegativeCriterionResult", "CustomerResult", "CustomizerAttributeResult", "ExtensionFeedItemResult", "FeedItemResult", "FeedItemSetResult", "FeedItemSetLinkResult", "FeedItemTargetResult", "FeedMappingResult", "FeedResult", "KeywordPlanAdGroupResult", "KeywordPlanCampaignResult", "KeywordPlanAdGroupKeywordResult", "KeywordPlanCampaignKeywordResult", "KeywordPlanResult", "LabelResult", "MediaFileResult", "RemarketingActionResult", "SharedCriterionResult", "SharedSetResult", "SmartCampaignSettingResult", "UserListResult", "Response", }); + new java.lang.String[] { "AdGroupAdLabelResult", "AdGroupAdResult", "AdGroupAssetResult", "AdGroupBidModifierResult", "AdGroupCriterionCustomizerResult", "AdGroupCriterionLabelResult", "AdGroupCriterionResult", "AdGroupCustomizerResult", "AdGroupExtensionSettingResult", "AdGroupFeedResult", "AdGroupLabelResult", "AdGroupResult", "AdParameterResult", "AdResult", "AssetResult", "AssetGroupAssetResult", "AssetGroupListingGroupFilterResult", "AssetGroupSignalResult", "AssetGroupResult", "AssetSetAssetResult", "AssetSetResult", "AudienceResult", "BiddingDataExclusionResult", "BiddingSeasonalityAdjustmentResult", "BiddingStrategyResult", "CampaignAssetResult", "CampaignAssetSetResult", "CampaignBidModifierResult", "CampaignBudgetResult", "CampaignConversionGoalResult", "CampaignCriterionResult", "CampaignCustomizerResult", "CampaignDraftResult", "CampaignExperimentResult", "CampaignExtensionSettingResult", "CampaignFeedResult", "CampaignGroupResult", "CampaignLabelResult", "CampaignResult", "CampaignSharedSetResult", "ConversionActionResult", "ConversionCustomVariableResult", "ConversionGoalCampaignConfigResult", "ConversionValueRuleResult", "ConversionValueRuleSetResult", "CustomConversionGoalResult", "CustomerAssetResult", "CustomerConversionGoalResult", "CustomerCustomizerResult", "CustomerExtensionSettingResult", "CustomerFeedResult", "CustomerLabelResult", "CustomerNegativeCriterionResult", "CustomerResult", "CustomizerAttributeResult", "ExperimentResult", "ExperimentArmResult", "ExtensionFeedItemResult", "FeedItemResult", "FeedItemSetResult", "FeedItemSetLinkResult", "FeedItemTargetResult", "FeedMappingResult", "FeedResult", "KeywordPlanAdGroupResult", "KeywordPlanCampaignResult", "KeywordPlanAdGroupKeywordResult", "KeywordPlanCampaignKeywordResult", "KeywordPlanResult", "LabelResult", "MediaFileResult", "RemarketingActionResult", "SharedCriterionResult", "SharedSetResult", "SmartCampaignSettingResult", "UserListResult", "Response", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.ClientProto.defaultHost); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudience.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudience.java new file mode 100644 index 0000000000..5c8a5f8099 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudience.java @@ -0,0 +1,3800 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *

+ * A set of users, defined by various characteristics, for which insights can
+ * be requested in AudienceInsightsService.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.InsightsAudience} + */ +public final class InsightsAudience extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.InsightsAudience) + InsightsAudienceOrBuilder { +private static final long serialVersionUID = 0L; + // Use InsightsAudience.newBuilder() to construct. + private InsightsAudience(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private InsightsAudience() { + countryLocations_ = java.util.Collections.emptyList(); + subCountryLocations_ = java.util.Collections.emptyList(); + ageRanges_ = java.util.Collections.emptyList(); + incomeRanges_ = java.util.Collections.emptyList(); + dynamicLineups_ = java.util.Collections.emptyList(); + topicAudienceCombinations_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new InsightsAudience(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private InsightsAudience( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + countryLocations_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + countryLocations_.add( + input.readMessage(com.google.ads.googleads.v11.common.LocationInfo.parser(), extensionRegistry)); + break; + } + case 18: { + if (!((mutable_bitField0_ & 0x00000002) != 0)) { + subCountryLocations_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000002; + } + subCountryLocations_.add( + input.readMessage(com.google.ads.googleads.v11.common.LocationInfo.parser(), extensionRegistry)); + break; + } + case 26: { + com.google.ads.googleads.v11.common.GenderInfo.Builder subBuilder = null; + if (gender_ != null) { + subBuilder = gender_.toBuilder(); + } + gender_ = input.readMessage(com.google.ads.googleads.v11.common.GenderInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(gender_); + gender_ = subBuilder.buildPartial(); + } + + break; + } + case 34: { + if (!((mutable_bitField0_ & 0x00000004) != 0)) { + ageRanges_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000004; + } + ageRanges_.add( + input.readMessage(com.google.ads.googleads.v11.common.AgeRangeInfo.parser(), extensionRegistry)); + break; + } + case 42: { + com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder subBuilder = null; + if (parentalStatus_ != null) { + subBuilder = parentalStatus_.toBuilder(); + } + parentalStatus_ = input.readMessage(com.google.ads.googleads.v11.common.ParentalStatusInfo.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(parentalStatus_); + parentalStatus_ = subBuilder.buildPartial(); + } + + break; + } + case 50: { + if (!((mutable_bitField0_ & 0x00000008) != 0)) { + incomeRanges_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000008; + } + incomeRanges_.add( + input.readMessage(com.google.ads.googleads.v11.common.IncomeRangeInfo.parser(), extensionRegistry)); + break; + } + case 58: { + if (!((mutable_bitField0_ & 0x00000010) != 0)) { + dynamicLineups_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000010; + } + dynamicLineups_.add( + input.readMessage(com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.parser(), extensionRegistry)); + break; + } + case 66: { + if (!((mutable_bitField0_ & 0x00000020) != 0)) { + topicAudienceCombinations_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000020; + } + topicAudienceCombinations_.add( + input.readMessage(com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + countryLocations_ = java.util.Collections.unmodifiableList(countryLocations_); + } + if (((mutable_bitField0_ & 0x00000002) != 0)) { + subCountryLocations_ = java.util.Collections.unmodifiableList(subCountryLocations_); + } + if (((mutable_bitField0_ & 0x00000004) != 0)) { + ageRanges_ = java.util.Collections.unmodifiableList(ageRanges_); + } + if (((mutable_bitField0_ & 0x00000008) != 0)) { + incomeRanges_ = java.util.Collections.unmodifiableList(incomeRanges_); + } + if (((mutable_bitField0_ & 0x00000010) != 0)) { + dynamicLineups_ = java.util.Collections.unmodifiableList(dynamicLineups_); + } + if (((mutable_bitField0_ & 0x00000020) != 0)) { + topicAudienceCombinations_ = java.util.Collections.unmodifiableList(topicAudienceCombinations_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudience_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudience_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.InsightsAudience.class, com.google.ads.googleads.v11.services.InsightsAudience.Builder.class); + } + + public static final int COUNTRY_LOCATIONS_FIELD_NUMBER = 1; + private java.util.List countryLocations_; + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public java.util.List getCountryLocationsList() { + return countryLocations_; + } + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public java.util.List + getCountryLocationsOrBuilderList() { + return countryLocations_; + } + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public int getCountryLocationsCount() { + return countryLocations_.size(); + } + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.LocationInfo getCountryLocations(int index) { + return countryLocations_.get(index); + } + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.LocationInfoOrBuilder getCountryLocationsOrBuilder( + int index) { + return countryLocations_.get(index); + } + + public static final int SUB_COUNTRY_LOCATIONS_FIELD_NUMBER = 2; + private java.util.List subCountryLocations_; + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + @java.lang.Override + public java.util.List getSubCountryLocationsList() { + return subCountryLocations_; + } + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + @java.lang.Override + public java.util.List + getSubCountryLocationsOrBuilderList() { + return subCountryLocations_; + } + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + @java.lang.Override + public int getSubCountryLocationsCount() { + return subCountryLocations_.size(); + } + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.LocationInfo getSubCountryLocations(int index) { + return subCountryLocations_.get(index); + } + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.LocationInfoOrBuilder getSubCountryLocationsOrBuilder( + int index) { + return subCountryLocations_.get(index); + } + + public static final int GENDER_FIELD_NUMBER = 3; + private com.google.ads.googleads.v11.common.GenderInfo gender_; + /** + *
+   * Gender for the audience.  If absent, the audience does not restrict by
+   * gender.
+   * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + * @return Whether the gender field is set. + */ + @java.lang.Override + public boolean hasGender() { + return gender_ != null; + } + /** + *
+   * Gender for the audience.  If absent, the audience does not restrict by
+   * gender.
+   * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + * @return The gender. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.GenderInfo getGender() { + return gender_ == null ? com.google.ads.googleads.v11.common.GenderInfo.getDefaultInstance() : gender_; + } + /** + *
+   * Gender for the audience.  If absent, the audience does not restrict by
+   * gender.
+   * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.GenderInfoOrBuilder getGenderOrBuilder() { + return getGender(); + } + + public static final int AGE_RANGES_FIELD_NUMBER = 4; + private java.util.List ageRanges_; + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + @java.lang.Override + public java.util.List getAgeRangesList() { + return ageRanges_; + } + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + @java.lang.Override + public java.util.List + getAgeRangesOrBuilderList() { + return ageRanges_; + } + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + @java.lang.Override + public int getAgeRangesCount() { + return ageRanges_.size(); + } + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.AgeRangeInfo getAgeRanges(int index) { + return ageRanges_.get(index); + } + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.AgeRangeInfoOrBuilder getAgeRangesOrBuilder( + int index) { + return ageRanges_.get(index); + } + + public static final int PARENTAL_STATUS_FIELD_NUMBER = 5; + private com.google.ads.googleads.v11.common.ParentalStatusInfo parentalStatus_; + /** + *
+   * Parental status for the audience.  If absent, the audience does not
+   * restrict by parental status.
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + * @return Whether the parentalStatus field is set. + */ + @java.lang.Override + public boolean hasParentalStatus() { + return parentalStatus_ != null; + } + /** + *
+   * Parental status for the audience.  If absent, the audience does not
+   * restrict by parental status.
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + * @return The parentalStatus. + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.ParentalStatusInfo getParentalStatus() { + return parentalStatus_ == null ? com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance() : parentalStatus_; + } + /** + *
+   * Parental status for the audience.  If absent, the audience does not
+   * restrict by parental status.
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder getParentalStatusOrBuilder() { + return getParentalStatus(); + } + + public static final int INCOME_RANGES_FIELD_NUMBER = 6; + private java.util.List incomeRanges_; + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + @java.lang.Override + public java.util.List getIncomeRangesList() { + return incomeRanges_; + } + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + @java.lang.Override + public java.util.List + getIncomeRangesOrBuilderList() { + return incomeRanges_; + } + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + @java.lang.Override + public int getIncomeRangesCount() { + return incomeRanges_.size(); + } + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.IncomeRangeInfo getIncomeRanges(int index) { + return incomeRanges_.get(index); + } + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + @java.lang.Override + public com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder getIncomeRangesOrBuilder( + int index) { + return incomeRanges_.get(index); + } + + public static final int DYNAMIC_LINEUPS_FIELD_NUMBER = 7; + private java.util.List dynamicLineups_; + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + @java.lang.Override + public java.util.List getDynamicLineupsList() { + return dynamicLineups_; + } + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + @java.lang.Override + public java.util.List + getDynamicLineupsOrBuilderList() { + return dynamicLineups_; + } + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + @java.lang.Override + public int getDynamicLineupsCount() { + return dynamicLineups_.size(); + } + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDynamicLineups(int index) { + return dynamicLineups_.get(index); + } + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder getDynamicLineupsOrBuilder( + int index) { + return dynamicLineups_.get(index); + } + + public static final int TOPIC_AUDIENCE_COMBINATIONS_FIELD_NUMBER = 8; + private java.util.List topicAudienceCombinations_; + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + @java.lang.Override + public java.util.List getTopicAudienceCombinationsList() { + return topicAudienceCombinations_; + } + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + @java.lang.Override + public java.util.List + getTopicAudienceCombinationsOrBuilderList() { + return topicAudienceCombinations_; + } + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + @java.lang.Override + public int getTopicAudienceCombinationsCount() { + return topicAudienceCombinations_.size(); + } + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup getTopicAudienceCombinations(int index) { + return topicAudienceCombinations_.get(index); + } + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroupOrBuilder getTopicAudienceCombinationsOrBuilder( + int index) { + return topicAudienceCombinations_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + for (int i = 0; i < countryLocations_.size(); i++) { + output.writeMessage(1, countryLocations_.get(i)); + } + for (int i = 0; i < subCountryLocations_.size(); i++) { + output.writeMessage(2, subCountryLocations_.get(i)); + } + if (gender_ != null) { + output.writeMessage(3, getGender()); + } + for (int i = 0; i < ageRanges_.size(); i++) { + output.writeMessage(4, ageRanges_.get(i)); + } + if (parentalStatus_ != null) { + output.writeMessage(5, getParentalStatus()); + } + for (int i = 0; i < incomeRanges_.size(); i++) { + output.writeMessage(6, incomeRanges_.get(i)); + } + for (int i = 0; i < dynamicLineups_.size(); i++) { + output.writeMessage(7, dynamicLineups_.get(i)); + } + for (int i = 0; i < topicAudienceCombinations_.size(); i++) { + output.writeMessage(8, topicAudienceCombinations_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < countryLocations_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, countryLocations_.get(i)); + } + for (int i = 0; i < subCountryLocations_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(2, subCountryLocations_.get(i)); + } + if (gender_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(3, getGender()); + } + for (int i = 0; i < ageRanges_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(4, ageRanges_.get(i)); + } + if (parentalStatus_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, getParentalStatus()); + } + for (int i = 0; i < incomeRanges_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(6, incomeRanges_.get(i)); + } + for (int i = 0; i < dynamicLineups_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(7, dynamicLineups_.get(i)); + } + for (int i = 0; i < topicAudienceCombinations_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(8, topicAudienceCombinations_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.InsightsAudience)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.InsightsAudience other = (com.google.ads.googleads.v11.services.InsightsAudience) obj; + + if (!getCountryLocationsList() + .equals(other.getCountryLocationsList())) return false; + if (!getSubCountryLocationsList() + .equals(other.getSubCountryLocationsList())) return false; + if (hasGender() != other.hasGender()) return false; + if (hasGender()) { + if (!getGender() + .equals(other.getGender())) return false; + } + if (!getAgeRangesList() + .equals(other.getAgeRangesList())) return false; + if (hasParentalStatus() != other.hasParentalStatus()) return false; + if (hasParentalStatus()) { + if (!getParentalStatus() + .equals(other.getParentalStatus())) return false; + } + if (!getIncomeRangesList() + .equals(other.getIncomeRangesList())) return false; + if (!getDynamicLineupsList() + .equals(other.getDynamicLineupsList())) return false; + if (!getTopicAudienceCombinationsList() + .equals(other.getTopicAudienceCombinationsList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getCountryLocationsCount() > 0) { + hash = (37 * hash) + COUNTRY_LOCATIONS_FIELD_NUMBER; + hash = (53 * hash) + getCountryLocationsList().hashCode(); + } + if (getSubCountryLocationsCount() > 0) { + hash = (37 * hash) + SUB_COUNTRY_LOCATIONS_FIELD_NUMBER; + hash = (53 * hash) + getSubCountryLocationsList().hashCode(); + } + if (hasGender()) { + hash = (37 * hash) + GENDER_FIELD_NUMBER; + hash = (53 * hash) + getGender().hashCode(); + } + if (getAgeRangesCount() > 0) { + hash = (37 * hash) + AGE_RANGES_FIELD_NUMBER; + hash = (53 * hash) + getAgeRangesList().hashCode(); + } + if (hasParentalStatus()) { + hash = (37 * hash) + PARENTAL_STATUS_FIELD_NUMBER; + hash = (53 * hash) + getParentalStatus().hashCode(); + } + if (getIncomeRangesCount() > 0) { + hash = (37 * hash) + INCOME_RANGES_FIELD_NUMBER; + hash = (53 * hash) + getIncomeRangesList().hashCode(); + } + if (getDynamicLineupsCount() > 0) { + hash = (37 * hash) + DYNAMIC_LINEUPS_FIELD_NUMBER; + hash = (53 * hash) + getDynamicLineupsList().hashCode(); + } + if (getTopicAudienceCombinationsCount() > 0) { + hash = (37 * hash) + TOPIC_AUDIENCE_COMBINATIONS_FIELD_NUMBER; + hash = (53 * hash) + getTopicAudienceCombinationsList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.InsightsAudience parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.InsightsAudience prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * A set of users, defined by various characteristics, for which insights can
+   * be requested in AudienceInsightsService.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.InsightsAudience} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.InsightsAudience) + com.google.ads.googleads.v11.services.InsightsAudienceOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudience_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudience_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.InsightsAudience.class, com.google.ads.googleads.v11.services.InsightsAudience.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.InsightsAudience.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getCountryLocationsFieldBuilder(); + getSubCountryLocationsFieldBuilder(); + getAgeRangesFieldBuilder(); + getIncomeRangesFieldBuilder(); + getDynamicLineupsFieldBuilder(); + getTopicAudienceCombinationsFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (countryLocationsBuilder_ == null) { + countryLocations_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + countryLocationsBuilder_.clear(); + } + if (subCountryLocationsBuilder_ == null) { + subCountryLocations_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + } else { + subCountryLocationsBuilder_.clear(); + } + if (genderBuilder_ == null) { + gender_ = null; + } else { + gender_ = null; + genderBuilder_ = null; + } + if (ageRangesBuilder_ == null) { + ageRanges_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ageRangesBuilder_.clear(); + } + if (parentalStatusBuilder_ == null) { + parentalStatus_ = null; + } else { + parentalStatus_ = null; + parentalStatusBuilder_ = null; + } + if (incomeRangesBuilder_ == null) { + incomeRanges_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000008); + } else { + incomeRangesBuilder_.clear(); + } + if (dynamicLineupsBuilder_ == null) { + dynamicLineups_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000010); + } else { + dynamicLineupsBuilder_.clear(); + } + if (topicAudienceCombinationsBuilder_ == null) { + topicAudienceCombinations_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000020); + } else { + topicAudienceCombinationsBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudience_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudience getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.InsightsAudience.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudience build() { + com.google.ads.googleads.v11.services.InsightsAudience result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudience buildPartial() { + com.google.ads.googleads.v11.services.InsightsAudience result = new com.google.ads.googleads.v11.services.InsightsAudience(this); + int from_bitField0_ = bitField0_; + if (countryLocationsBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + countryLocations_ = java.util.Collections.unmodifiableList(countryLocations_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.countryLocations_ = countryLocations_; + } else { + result.countryLocations_ = countryLocationsBuilder_.build(); + } + if (subCountryLocationsBuilder_ == null) { + if (((bitField0_ & 0x00000002) != 0)) { + subCountryLocations_ = java.util.Collections.unmodifiableList(subCountryLocations_); + bitField0_ = (bitField0_ & ~0x00000002); + } + result.subCountryLocations_ = subCountryLocations_; + } else { + result.subCountryLocations_ = subCountryLocationsBuilder_.build(); + } + if (genderBuilder_ == null) { + result.gender_ = gender_; + } else { + result.gender_ = genderBuilder_.build(); + } + if (ageRangesBuilder_ == null) { + if (((bitField0_ & 0x00000004) != 0)) { + ageRanges_ = java.util.Collections.unmodifiableList(ageRanges_); + bitField0_ = (bitField0_ & ~0x00000004); + } + result.ageRanges_ = ageRanges_; + } else { + result.ageRanges_ = ageRangesBuilder_.build(); + } + if (parentalStatusBuilder_ == null) { + result.parentalStatus_ = parentalStatus_; + } else { + result.parentalStatus_ = parentalStatusBuilder_.build(); + } + if (incomeRangesBuilder_ == null) { + if (((bitField0_ & 0x00000008) != 0)) { + incomeRanges_ = java.util.Collections.unmodifiableList(incomeRanges_); + bitField0_ = (bitField0_ & ~0x00000008); + } + result.incomeRanges_ = incomeRanges_; + } else { + result.incomeRanges_ = incomeRangesBuilder_.build(); + } + if (dynamicLineupsBuilder_ == null) { + if (((bitField0_ & 0x00000010) != 0)) { + dynamicLineups_ = java.util.Collections.unmodifiableList(dynamicLineups_); + bitField0_ = (bitField0_ & ~0x00000010); + } + result.dynamicLineups_ = dynamicLineups_; + } else { + result.dynamicLineups_ = dynamicLineupsBuilder_.build(); + } + if (topicAudienceCombinationsBuilder_ == null) { + if (((bitField0_ & 0x00000020) != 0)) { + topicAudienceCombinations_ = java.util.Collections.unmodifiableList(topicAudienceCombinations_); + bitField0_ = (bitField0_ & ~0x00000020); + } + result.topicAudienceCombinations_ = topicAudienceCombinations_; + } else { + result.topicAudienceCombinations_ = topicAudienceCombinationsBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.InsightsAudience) { + return mergeFrom((com.google.ads.googleads.v11.services.InsightsAudience)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.InsightsAudience other) { + if (other == com.google.ads.googleads.v11.services.InsightsAudience.getDefaultInstance()) return this; + if (countryLocationsBuilder_ == null) { + if (!other.countryLocations_.isEmpty()) { + if (countryLocations_.isEmpty()) { + countryLocations_ = other.countryLocations_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureCountryLocationsIsMutable(); + countryLocations_.addAll(other.countryLocations_); + } + onChanged(); + } + } else { + if (!other.countryLocations_.isEmpty()) { + if (countryLocationsBuilder_.isEmpty()) { + countryLocationsBuilder_.dispose(); + countryLocationsBuilder_ = null; + countryLocations_ = other.countryLocations_; + bitField0_ = (bitField0_ & ~0x00000001); + countryLocationsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getCountryLocationsFieldBuilder() : null; + } else { + countryLocationsBuilder_.addAllMessages(other.countryLocations_); + } + } + } + if (subCountryLocationsBuilder_ == null) { + if (!other.subCountryLocations_.isEmpty()) { + if (subCountryLocations_.isEmpty()) { + subCountryLocations_ = other.subCountryLocations_; + bitField0_ = (bitField0_ & ~0x00000002); + } else { + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.addAll(other.subCountryLocations_); + } + onChanged(); + } + } else { + if (!other.subCountryLocations_.isEmpty()) { + if (subCountryLocationsBuilder_.isEmpty()) { + subCountryLocationsBuilder_.dispose(); + subCountryLocationsBuilder_ = null; + subCountryLocations_ = other.subCountryLocations_; + bitField0_ = (bitField0_ & ~0x00000002); + subCountryLocationsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getSubCountryLocationsFieldBuilder() : null; + } else { + subCountryLocationsBuilder_.addAllMessages(other.subCountryLocations_); + } + } + } + if (other.hasGender()) { + mergeGender(other.getGender()); + } + if (ageRangesBuilder_ == null) { + if (!other.ageRanges_.isEmpty()) { + if (ageRanges_.isEmpty()) { + ageRanges_ = other.ageRanges_; + bitField0_ = (bitField0_ & ~0x00000004); + } else { + ensureAgeRangesIsMutable(); + ageRanges_.addAll(other.ageRanges_); + } + onChanged(); + } + } else { + if (!other.ageRanges_.isEmpty()) { + if (ageRangesBuilder_.isEmpty()) { + ageRangesBuilder_.dispose(); + ageRangesBuilder_ = null; + ageRanges_ = other.ageRanges_; + bitField0_ = (bitField0_ & ~0x00000004); + ageRangesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getAgeRangesFieldBuilder() : null; + } else { + ageRangesBuilder_.addAllMessages(other.ageRanges_); + } + } + } + if (other.hasParentalStatus()) { + mergeParentalStatus(other.getParentalStatus()); + } + if (incomeRangesBuilder_ == null) { + if (!other.incomeRanges_.isEmpty()) { + if (incomeRanges_.isEmpty()) { + incomeRanges_ = other.incomeRanges_; + bitField0_ = (bitField0_ & ~0x00000008); + } else { + ensureIncomeRangesIsMutable(); + incomeRanges_.addAll(other.incomeRanges_); + } + onChanged(); + } + } else { + if (!other.incomeRanges_.isEmpty()) { + if (incomeRangesBuilder_.isEmpty()) { + incomeRangesBuilder_.dispose(); + incomeRangesBuilder_ = null; + incomeRanges_ = other.incomeRanges_; + bitField0_ = (bitField0_ & ~0x00000008); + incomeRangesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getIncomeRangesFieldBuilder() : null; + } else { + incomeRangesBuilder_.addAllMessages(other.incomeRanges_); + } + } + } + if (dynamicLineupsBuilder_ == null) { + if (!other.dynamicLineups_.isEmpty()) { + if (dynamicLineups_.isEmpty()) { + dynamicLineups_ = other.dynamicLineups_; + bitField0_ = (bitField0_ & ~0x00000010); + } else { + ensureDynamicLineupsIsMutable(); + dynamicLineups_.addAll(other.dynamicLineups_); + } + onChanged(); + } + } else { + if (!other.dynamicLineups_.isEmpty()) { + if (dynamicLineupsBuilder_.isEmpty()) { + dynamicLineupsBuilder_.dispose(); + dynamicLineupsBuilder_ = null; + dynamicLineups_ = other.dynamicLineups_; + bitField0_ = (bitField0_ & ~0x00000010); + dynamicLineupsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getDynamicLineupsFieldBuilder() : null; + } else { + dynamicLineupsBuilder_.addAllMessages(other.dynamicLineups_); + } + } + } + if (topicAudienceCombinationsBuilder_ == null) { + if (!other.topicAudienceCombinations_.isEmpty()) { + if (topicAudienceCombinations_.isEmpty()) { + topicAudienceCombinations_ = other.topicAudienceCombinations_; + bitField0_ = (bitField0_ & ~0x00000020); + } else { + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.addAll(other.topicAudienceCombinations_); + } + onChanged(); + } + } else { + if (!other.topicAudienceCombinations_.isEmpty()) { + if (topicAudienceCombinationsBuilder_.isEmpty()) { + topicAudienceCombinationsBuilder_.dispose(); + topicAudienceCombinationsBuilder_ = null; + topicAudienceCombinations_ = other.topicAudienceCombinations_; + bitField0_ = (bitField0_ & ~0x00000020); + topicAudienceCombinationsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getTopicAudienceCombinationsFieldBuilder() : null; + } else { + topicAudienceCombinationsBuilder_.addAllMessages(other.topicAudienceCombinations_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.InsightsAudience parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.InsightsAudience) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.util.List countryLocations_ = + java.util.Collections.emptyList(); + private void ensureCountryLocationsIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + countryLocations_ = new java.util.ArrayList(countryLocations_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder> countryLocationsBuilder_; + + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List getCountryLocationsList() { + if (countryLocationsBuilder_ == null) { + return java.util.Collections.unmodifiableList(countryLocations_); + } else { + return countryLocationsBuilder_.getMessageList(); + } + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public int getCountryLocationsCount() { + if (countryLocationsBuilder_ == null) { + return countryLocations_.size(); + } else { + return countryLocationsBuilder_.getCount(); + } + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.LocationInfo getCountryLocations(int index) { + if (countryLocationsBuilder_ == null) { + return countryLocations_.get(index); + } else { + return countryLocationsBuilder_.getMessage(index); + } + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo value) { + if (countryLocationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCountryLocationsIsMutable(); + countryLocations_.set(index, value); + onChanged(); + } else { + countryLocationsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo.Builder builderForValue) { + if (countryLocationsBuilder_ == null) { + ensureCountryLocationsIsMutable(); + countryLocations_.set(index, builderForValue.build()); + onChanged(); + } else { + countryLocationsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addCountryLocations(com.google.ads.googleads.v11.common.LocationInfo value) { + if (countryLocationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCountryLocationsIsMutable(); + countryLocations_.add(value); + onChanged(); + } else { + countryLocationsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo value) { + if (countryLocationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureCountryLocationsIsMutable(); + countryLocations_.add(index, value); + onChanged(); + } else { + countryLocationsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addCountryLocations( + com.google.ads.googleads.v11.common.LocationInfo.Builder builderForValue) { + if (countryLocationsBuilder_ == null) { + ensureCountryLocationsIsMutable(); + countryLocations_.add(builderForValue.build()); + onChanged(); + } else { + countryLocationsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo.Builder builderForValue) { + if (countryLocationsBuilder_ == null) { + ensureCountryLocationsIsMutable(); + countryLocations_.add(index, builderForValue.build()); + onChanged(); + } else { + countryLocationsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addAllCountryLocations( + java.lang.Iterable values) { + if (countryLocationsBuilder_ == null) { + ensureCountryLocationsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, countryLocations_); + onChanged(); + } else { + countryLocationsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearCountryLocations() { + if (countryLocationsBuilder_ == null) { + countryLocations_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + countryLocationsBuilder_.clear(); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder removeCountryLocations(int index) { + if (countryLocationsBuilder_ == null) { + ensureCountryLocationsIsMutable(); + countryLocations_.remove(index); + onChanged(); + } else { + countryLocationsBuilder_.remove(index); + } + return this; + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.LocationInfo.Builder getCountryLocationsBuilder( + int index) { + return getCountryLocationsFieldBuilder().getBuilder(index); + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.LocationInfoOrBuilder getCountryLocationsOrBuilder( + int index) { + if (countryLocationsBuilder_ == null) { + return countryLocations_.get(index); } else { + return countryLocationsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List + getCountryLocationsOrBuilderList() { + if (countryLocationsBuilder_ != null) { + return countryLocationsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(countryLocations_); + } + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.LocationInfo.Builder addCountryLocationsBuilder() { + return getCountryLocationsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.LocationInfo.getDefaultInstance()); + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.common.LocationInfo.Builder addCountryLocationsBuilder( + int index) { + return getCountryLocationsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.LocationInfo.getDefaultInstance()); + } + /** + *
+     * Required. The countries for the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List + getCountryLocationsBuilderList() { + return getCountryLocationsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder> + getCountryLocationsFieldBuilder() { + if (countryLocationsBuilder_ == null) { + countryLocationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder>( + countryLocations_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + countryLocations_ = null; + } + return countryLocationsBuilder_; + } + + private java.util.List subCountryLocations_ = + java.util.Collections.emptyList(); + private void ensureSubCountryLocationsIsMutable() { + if (!((bitField0_ & 0x00000002) != 0)) { + subCountryLocations_ = new java.util.ArrayList(subCountryLocations_); + bitField0_ |= 0x00000002; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder> subCountryLocationsBuilder_; + + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public java.util.List getSubCountryLocationsList() { + if (subCountryLocationsBuilder_ == null) { + return java.util.Collections.unmodifiableList(subCountryLocations_); + } else { + return subCountryLocationsBuilder_.getMessageList(); + } + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public int getSubCountryLocationsCount() { + if (subCountryLocationsBuilder_ == null) { + return subCountryLocations_.size(); + } else { + return subCountryLocationsBuilder_.getCount(); + } + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public com.google.ads.googleads.v11.common.LocationInfo getSubCountryLocations(int index) { + if (subCountryLocationsBuilder_ == null) { + return subCountryLocations_.get(index); + } else { + return subCountryLocationsBuilder_.getMessage(index); + } + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder setSubCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo value) { + if (subCountryLocationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.set(index, value); + onChanged(); + } else { + subCountryLocationsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder setSubCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo.Builder builderForValue) { + if (subCountryLocationsBuilder_ == null) { + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.set(index, builderForValue.build()); + onChanged(); + } else { + subCountryLocationsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder addSubCountryLocations(com.google.ads.googleads.v11.common.LocationInfo value) { + if (subCountryLocationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.add(value); + onChanged(); + } else { + subCountryLocationsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder addSubCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo value) { + if (subCountryLocationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.add(index, value); + onChanged(); + } else { + subCountryLocationsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder addSubCountryLocations( + com.google.ads.googleads.v11.common.LocationInfo.Builder builderForValue) { + if (subCountryLocationsBuilder_ == null) { + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.add(builderForValue.build()); + onChanged(); + } else { + subCountryLocationsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder addSubCountryLocations( + int index, com.google.ads.googleads.v11.common.LocationInfo.Builder builderForValue) { + if (subCountryLocationsBuilder_ == null) { + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.add(index, builderForValue.build()); + onChanged(); + } else { + subCountryLocationsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder addAllSubCountryLocations( + java.lang.Iterable values) { + if (subCountryLocationsBuilder_ == null) { + ensureSubCountryLocationsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, subCountryLocations_); + onChanged(); + } else { + subCountryLocationsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder clearSubCountryLocations() { + if (subCountryLocationsBuilder_ == null) { + subCountryLocations_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000002); + onChanged(); + } else { + subCountryLocationsBuilder_.clear(); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public Builder removeSubCountryLocations(int index) { + if (subCountryLocationsBuilder_ == null) { + ensureSubCountryLocationsIsMutable(); + subCountryLocations_.remove(index); + onChanged(); + } else { + subCountryLocationsBuilder_.remove(index); + } + return this; + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public com.google.ads.googleads.v11.common.LocationInfo.Builder getSubCountryLocationsBuilder( + int index) { + return getSubCountryLocationsFieldBuilder().getBuilder(index); + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public com.google.ads.googleads.v11.common.LocationInfoOrBuilder getSubCountryLocationsOrBuilder( + int index) { + if (subCountryLocationsBuilder_ == null) { + return subCountryLocations_.get(index); } else { + return subCountryLocationsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public java.util.List + getSubCountryLocationsOrBuilderList() { + if (subCountryLocationsBuilder_ != null) { + return subCountryLocationsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(subCountryLocations_); + } + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public com.google.ads.googleads.v11.common.LocationInfo.Builder addSubCountryLocationsBuilder() { + return getSubCountryLocationsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.LocationInfo.getDefaultInstance()); + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public com.google.ads.googleads.v11.common.LocationInfo.Builder addSubCountryLocationsBuilder( + int index) { + return getSubCountryLocationsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.LocationInfo.getDefaultInstance()); + } + /** + *
+     * Sub-country geographic location attributes.  If present, each of these
+     * must be contained in one of the countries in this audience.  If absent, the
+     * audience is geographically to the country_locations and no further.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + public java.util.List + getSubCountryLocationsBuilderList() { + return getSubCountryLocationsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder> + getSubCountryLocationsFieldBuilder() { + if (subCountryLocationsBuilder_ == null) { + subCountryLocationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.LocationInfo, com.google.ads.googleads.v11.common.LocationInfo.Builder, com.google.ads.googleads.v11.common.LocationInfoOrBuilder>( + subCountryLocations_, + ((bitField0_ & 0x00000002) != 0), + getParentForChildren(), + isClean()); + subCountryLocations_ = null; + } + return subCountryLocationsBuilder_; + } + + private com.google.ads.googleads.v11.common.GenderInfo gender_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.GenderInfo, com.google.ads.googleads.v11.common.GenderInfo.Builder, com.google.ads.googleads.v11.common.GenderInfoOrBuilder> genderBuilder_; + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + * @return Whether the gender field is set. + */ + public boolean hasGender() { + return genderBuilder_ != null || gender_ != null; + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + * @return The gender. + */ + public com.google.ads.googleads.v11.common.GenderInfo getGender() { + if (genderBuilder_ == null) { + return gender_ == null ? com.google.ads.googleads.v11.common.GenderInfo.getDefaultInstance() : gender_; + } else { + return genderBuilder_.getMessage(); + } + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + public Builder setGender(com.google.ads.googleads.v11.common.GenderInfo value) { + if (genderBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + gender_ = value; + onChanged(); + } else { + genderBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + public Builder setGender( + com.google.ads.googleads.v11.common.GenderInfo.Builder builderForValue) { + if (genderBuilder_ == null) { + gender_ = builderForValue.build(); + onChanged(); + } else { + genderBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + public Builder mergeGender(com.google.ads.googleads.v11.common.GenderInfo value) { + if (genderBuilder_ == null) { + if (gender_ != null) { + gender_ = + com.google.ads.googleads.v11.common.GenderInfo.newBuilder(gender_).mergeFrom(value).buildPartial(); + } else { + gender_ = value; + } + onChanged(); + } else { + genderBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + public Builder clearGender() { + if (genderBuilder_ == null) { + gender_ = null; + onChanged(); + } else { + gender_ = null; + genderBuilder_ = null; + } + + return this; + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + public com.google.ads.googleads.v11.common.GenderInfo.Builder getGenderBuilder() { + + onChanged(); + return getGenderFieldBuilder().getBuilder(); + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + public com.google.ads.googleads.v11.common.GenderInfoOrBuilder getGenderOrBuilder() { + if (genderBuilder_ != null) { + return genderBuilder_.getMessageOrBuilder(); + } else { + return gender_ == null ? + com.google.ads.googleads.v11.common.GenderInfo.getDefaultInstance() : gender_; + } + } + /** + *
+     * Gender for the audience.  If absent, the audience does not restrict by
+     * gender.
+     * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.GenderInfo, com.google.ads.googleads.v11.common.GenderInfo.Builder, com.google.ads.googleads.v11.common.GenderInfoOrBuilder> + getGenderFieldBuilder() { + if (genderBuilder_ == null) { + genderBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.GenderInfo, com.google.ads.googleads.v11.common.GenderInfo.Builder, com.google.ads.googleads.v11.common.GenderInfoOrBuilder>( + getGender(), + getParentForChildren(), + isClean()); + gender_ = null; + } + return genderBuilder_; + } + + private java.util.List ageRanges_ = + java.util.Collections.emptyList(); + private void ensureAgeRangesIsMutable() { + if (!((bitField0_ & 0x00000004) != 0)) { + ageRanges_ = new java.util.ArrayList(ageRanges_); + bitField0_ |= 0x00000004; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.AgeRangeInfo, com.google.ads.googleads.v11.common.AgeRangeInfo.Builder, com.google.ads.googleads.v11.common.AgeRangeInfoOrBuilder> ageRangesBuilder_; + + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public java.util.List getAgeRangesList() { + if (ageRangesBuilder_ == null) { + return java.util.Collections.unmodifiableList(ageRanges_); + } else { + return ageRangesBuilder_.getMessageList(); + } + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public int getAgeRangesCount() { + if (ageRangesBuilder_ == null) { + return ageRanges_.size(); + } else { + return ageRangesBuilder_.getCount(); + } + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public com.google.ads.googleads.v11.common.AgeRangeInfo getAgeRanges(int index) { + if (ageRangesBuilder_ == null) { + return ageRanges_.get(index); + } else { + return ageRangesBuilder_.getMessage(index); + } + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder setAgeRanges( + int index, com.google.ads.googleads.v11.common.AgeRangeInfo value) { + if (ageRangesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAgeRangesIsMutable(); + ageRanges_.set(index, value); + onChanged(); + } else { + ageRangesBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder setAgeRanges( + int index, com.google.ads.googleads.v11.common.AgeRangeInfo.Builder builderForValue) { + if (ageRangesBuilder_ == null) { + ensureAgeRangesIsMutable(); + ageRanges_.set(index, builderForValue.build()); + onChanged(); + } else { + ageRangesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder addAgeRanges(com.google.ads.googleads.v11.common.AgeRangeInfo value) { + if (ageRangesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAgeRangesIsMutable(); + ageRanges_.add(value); + onChanged(); + } else { + ageRangesBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder addAgeRanges( + int index, com.google.ads.googleads.v11.common.AgeRangeInfo value) { + if (ageRangesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAgeRangesIsMutable(); + ageRanges_.add(index, value); + onChanged(); + } else { + ageRangesBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder addAgeRanges( + com.google.ads.googleads.v11.common.AgeRangeInfo.Builder builderForValue) { + if (ageRangesBuilder_ == null) { + ensureAgeRangesIsMutable(); + ageRanges_.add(builderForValue.build()); + onChanged(); + } else { + ageRangesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder addAgeRanges( + int index, com.google.ads.googleads.v11.common.AgeRangeInfo.Builder builderForValue) { + if (ageRangesBuilder_ == null) { + ensureAgeRangesIsMutable(); + ageRanges_.add(index, builderForValue.build()); + onChanged(); + } else { + ageRangesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder addAllAgeRanges( + java.lang.Iterable values) { + if (ageRangesBuilder_ == null) { + ensureAgeRangesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, ageRanges_); + onChanged(); + } else { + ageRangesBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder clearAgeRanges() { + if (ageRangesBuilder_ == null) { + ageRanges_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000004); + onChanged(); + } else { + ageRangesBuilder_.clear(); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public Builder removeAgeRanges(int index) { + if (ageRangesBuilder_ == null) { + ensureAgeRangesIsMutable(); + ageRanges_.remove(index); + onChanged(); + } else { + ageRangesBuilder_.remove(index); + } + return this; + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public com.google.ads.googleads.v11.common.AgeRangeInfo.Builder getAgeRangesBuilder( + int index) { + return getAgeRangesFieldBuilder().getBuilder(index); + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public com.google.ads.googleads.v11.common.AgeRangeInfoOrBuilder getAgeRangesOrBuilder( + int index) { + if (ageRangesBuilder_ == null) { + return ageRanges_.get(index); } else { + return ageRangesBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public java.util.List + getAgeRangesOrBuilderList() { + if (ageRangesBuilder_ != null) { + return ageRangesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(ageRanges_); + } + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public com.google.ads.googleads.v11.common.AgeRangeInfo.Builder addAgeRangesBuilder() { + return getAgeRangesFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.AgeRangeInfo.getDefaultInstance()); + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public com.google.ads.googleads.v11.common.AgeRangeInfo.Builder addAgeRangesBuilder( + int index) { + return getAgeRangesFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.AgeRangeInfo.getDefaultInstance()); + } + /** + *
+     * Age ranges for the audience.  If absent, the audience represents all people
+     * over 18 that match the other attributes.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + public java.util.List + getAgeRangesBuilderList() { + return getAgeRangesFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.AgeRangeInfo, com.google.ads.googleads.v11.common.AgeRangeInfo.Builder, com.google.ads.googleads.v11.common.AgeRangeInfoOrBuilder> + getAgeRangesFieldBuilder() { + if (ageRangesBuilder_ == null) { + ageRangesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.AgeRangeInfo, com.google.ads.googleads.v11.common.AgeRangeInfo.Builder, com.google.ads.googleads.v11.common.AgeRangeInfoOrBuilder>( + ageRanges_, + ((bitField0_ & 0x00000004) != 0), + getParentForChildren(), + isClean()); + ageRanges_ = null; + } + return ageRangesBuilder_; + } + + private com.google.ads.googleads.v11.common.ParentalStatusInfo parentalStatus_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.ParentalStatusInfo, com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder, com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder> parentalStatusBuilder_; + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + * @return Whether the parentalStatus field is set. + */ + public boolean hasParentalStatus() { + return parentalStatusBuilder_ != null || parentalStatus_ != null; + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + * @return The parentalStatus. + */ + public com.google.ads.googleads.v11.common.ParentalStatusInfo getParentalStatus() { + if (parentalStatusBuilder_ == null) { + return parentalStatus_ == null ? com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance() : parentalStatus_; + } else { + return parentalStatusBuilder_.getMessage(); + } + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + public Builder setParentalStatus(com.google.ads.googleads.v11.common.ParentalStatusInfo value) { + if (parentalStatusBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + parentalStatus_ = value; + onChanged(); + } else { + parentalStatusBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + public Builder setParentalStatus( + com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder builderForValue) { + if (parentalStatusBuilder_ == null) { + parentalStatus_ = builderForValue.build(); + onChanged(); + } else { + parentalStatusBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + public Builder mergeParentalStatus(com.google.ads.googleads.v11.common.ParentalStatusInfo value) { + if (parentalStatusBuilder_ == null) { + if (parentalStatus_ != null) { + parentalStatus_ = + com.google.ads.googleads.v11.common.ParentalStatusInfo.newBuilder(parentalStatus_).mergeFrom(value).buildPartial(); + } else { + parentalStatus_ = value; + } + onChanged(); + } else { + parentalStatusBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + public Builder clearParentalStatus() { + if (parentalStatusBuilder_ == null) { + parentalStatus_ = null; + onChanged(); + } else { + parentalStatus_ = null; + parentalStatusBuilder_ = null; + } + + return this; + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + public com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder getParentalStatusBuilder() { + + onChanged(); + return getParentalStatusFieldBuilder().getBuilder(); + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + public com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder getParentalStatusOrBuilder() { + if (parentalStatusBuilder_ != null) { + return parentalStatusBuilder_.getMessageOrBuilder(); + } else { + return parentalStatus_ == null ? + com.google.ads.googleads.v11.common.ParentalStatusInfo.getDefaultInstance() : parentalStatus_; + } + } + /** + *
+     * Parental status for the audience.  If absent, the audience does not
+     * restrict by parental status.
+     * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.ParentalStatusInfo, com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder, com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder> + getParentalStatusFieldBuilder() { + if (parentalStatusBuilder_ == null) { + parentalStatusBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.common.ParentalStatusInfo, com.google.ads.googleads.v11.common.ParentalStatusInfo.Builder, com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder>( + getParentalStatus(), + getParentForChildren(), + isClean()); + parentalStatus_ = null; + } + return parentalStatusBuilder_; + } + + private java.util.List incomeRanges_ = + java.util.Collections.emptyList(); + private void ensureIncomeRangesIsMutable() { + if (!((bitField0_ & 0x00000008) != 0)) { + incomeRanges_ = new java.util.ArrayList(incomeRanges_); + bitField0_ |= 0x00000008; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.IncomeRangeInfo, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder, com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder> incomeRangesBuilder_; + + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public java.util.List getIncomeRangesList() { + if (incomeRangesBuilder_ == null) { + return java.util.Collections.unmodifiableList(incomeRanges_); + } else { + return incomeRangesBuilder_.getMessageList(); + } + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public int getIncomeRangesCount() { + if (incomeRangesBuilder_ == null) { + return incomeRanges_.size(); + } else { + return incomeRangesBuilder_.getCount(); + } + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public com.google.ads.googleads.v11.common.IncomeRangeInfo getIncomeRanges(int index) { + if (incomeRangesBuilder_ == null) { + return incomeRanges_.get(index); + } else { + return incomeRangesBuilder_.getMessage(index); + } + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder setIncomeRanges( + int index, com.google.ads.googleads.v11.common.IncomeRangeInfo value) { + if (incomeRangesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureIncomeRangesIsMutable(); + incomeRanges_.set(index, value); + onChanged(); + } else { + incomeRangesBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder setIncomeRanges( + int index, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder builderForValue) { + if (incomeRangesBuilder_ == null) { + ensureIncomeRangesIsMutable(); + incomeRanges_.set(index, builderForValue.build()); + onChanged(); + } else { + incomeRangesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder addIncomeRanges(com.google.ads.googleads.v11.common.IncomeRangeInfo value) { + if (incomeRangesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureIncomeRangesIsMutable(); + incomeRanges_.add(value); + onChanged(); + } else { + incomeRangesBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder addIncomeRanges( + int index, com.google.ads.googleads.v11.common.IncomeRangeInfo value) { + if (incomeRangesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureIncomeRangesIsMutable(); + incomeRanges_.add(index, value); + onChanged(); + } else { + incomeRangesBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder addIncomeRanges( + com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder builderForValue) { + if (incomeRangesBuilder_ == null) { + ensureIncomeRangesIsMutable(); + incomeRanges_.add(builderForValue.build()); + onChanged(); + } else { + incomeRangesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder addIncomeRanges( + int index, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder builderForValue) { + if (incomeRangesBuilder_ == null) { + ensureIncomeRangesIsMutable(); + incomeRanges_.add(index, builderForValue.build()); + onChanged(); + } else { + incomeRangesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder addAllIncomeRanges( + java.lang.Iterable values) { + if (incomeRangesBuilder_ == null) { + ensureIncomeRangesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, incomeRanges_); + onChanged(); + } else { + incomeRangesBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder clearIncomeRanges() { + if (incomeRangesBuilder_ == null) { + incomeRanges_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000008); + onChanged(); + } else { + incomeRangesBuilder_.clear(); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public Builder removeIncomeRanges(int index) { + if (incomeRangesBuilder_ == null) { + ensureIncomeRangesIsMutable(); + incomeRanges_.remove(index); + onChanged(); + } else { + incomeRangesBuilder_.remove(index); + } + return this; + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder getIncomeRangesBuilder( + int index) { + return getIncomeRangesFieldBuilder().getBuilder(index); + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder getIncomeRangesOrBuilder( + int index) { + if (incomeRangesBuilder_ == null) { + return incomeRanges_.get(index); } else { + return incomeRangesBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public java.util.List + getIncomeRangesOrBuilderList() { + if (incomeRangesBuilder_ != null) { + return incomeRangesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(incomeRanges_); + } + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder addIncomeRangesBuilder() { + return getIncomeRangesFieldBuilder().addBuilder( + com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance()); + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder addIncomeRangesBuilder( + int index) { + return getIncomeRangesFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.common.IncomeRangeInfo.getDefaultInstance()); + } + /** + *
+     * Household income percentile ranges for the audience.  If absent, the
+     * audience does not restrict by household income range.
+     * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + public java.util.List + getIncomeRangesBuilderList() { + return getIncomeRangesFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.IncomeRangeInfo, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder, com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder> + getIncomeRangesFieldBuilder() { + if (incomeRangesBuilder_ == null) { + incomeRangesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.common.IncomeRangeInfo, com.google.ads.googleads.v11.common.IncomeRangeInfo.Builder, com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder>( + incomeRanges_, + ((bitField0_ & 0x00000008) != 0), + getParentForChildren(), + isClean()); + incomeRanges_ = null; + } + return incomeRangesBuilder_; + } + + private java.util.List dynamicLineups_ = + java.util.Collections.emptyList(); + private void ensureDynamicLineupsIsMutable() { + if (!((bitField0_ & 0x00000010) != 0)) { + dynamicLineups_ = new java.util.ArrayList(dynamicLineups_); + bitField0_ |= 0x00000010; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder> dynamicLineupsBuilder_; + + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public java.util.List getDynamicLineupsList() { + if (dynamicLineupsBuilder_ == null) { + return java.util.Collections.unmodifiableList(dynamicLineups_); + } else { + return dynamicLineupsBuilder_.getMessageList(); + } + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public int getDynamicLineupsCount() { + if (dynamicLineupsBuilder_ == null) { + return dynamicLineups_.size(); + } else { + return dynamicLineupsBuilder_.getCount(); + } + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDynamicLineups(int index) { + if (dynamicLineupsBuilder_ == null) { + return dynamicLineups_.get(index); + } else { + return dynamicLineupsBuilder_.getMessage(index); + } + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder setDynamicLineups( + int index, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup value) { + if (dynamicLineupsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDynamicLineupsIsMutable(); + dynamicLineups_.set(index, value); + onChanged(); + } else { + dynamicLineupsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder setDynamicLineups( + int index, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder builderForValue) { + if (dynamicLineupsBuilder_ == null) { + ensureDynamicLineupsIsMutable(); + dynamicLineups_.set(index, builderForValue.build()); + onChanged(); + } else { + dynamicLineupsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder addDynamicLineups(com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup value) { + if (dynamicLineupsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDynamicLineupsIsMutable(); + dynamicLineups_.add(value); + onChanged(); + } else { + dynamicLineupsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder addDynamicLineups( + int index, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup value) { + if (dynamicLineupsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureDynamicLineupsIsMutable(); + dynamicLineups_.add(index, value); + onChanged(); + } else { + dynamicLineupsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder addDynamicLineups( + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder builderForValue) { + if (dynamicLineupsBuilder_ == null) { + ensureDynamicLineupsIsMutable(); + dynamicLineups_.add(builderForValue.build()); + onChanged(); + } else { + dynamicLineupsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder addDynamicLineups( + int index, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder builderForValue) { + if (dynamicLineupsBuilder_ == null) { + ensureDynamicLineupsIsMutable(); + dynamicLineups_.add(index, builderForValue.build()); + onChanged(); + } else { + dynamicLineupsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder addAllDynamicLineups( + java.lang.Iterable values) { + if (dynamicLineupsBuilder_ == null) { + ensureDynamicLineupsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, dynamicLineups_); + onChanged(); + } else { + dynamicLineupsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder clearDynamicLineups() { + if (dynamicLineupsBuilder_ == null) { + dynamicLineups_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000010); + onChanged(); + } else { + dynamicLineupsBuilder_.clear(); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public Builder removeDynamicLineups(int index) { + if (dynamicLineupsBuilder_ == null) { + ensureDynamicLineupsIsMutable(); + dynamicLineups_.remove(index); + onChanged(); + } else { + dynamicLineupsBuilder_.remove(index); + } + return this; + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder getDynamicLineupsBuilder( + int index) { + return getDynamicLineupsFieldBuilder().getBuilder(index); + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder getDynamicLineupsOrBuilder( + int index) { + if (dynamicLineupsBuilder_ == null) { + return dynamicLineups_.get(index); } else { + return dynamicLineupsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public java.util.List + getDynamicLineupsOrBuilderList() { + if (dynamicLineupsBuilder_ != null) { + return dynamicLineupsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(dynamicLineups_); + } + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder addDynamicLineupsBuilder() { + return getDynamicLineupsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance()); + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder addDynamicLineupsBuilder( + int index) { + return getDynamicLineupsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.getDefaultInstance()); + } + /** + *
+     * Dynamic lineups representing the YouTube content viewed by the audience.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + public java.util.List + getDynamicLineupsBuilderList() { + return getDynamicLineupsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder> + getDynamicLineupsFieldBuilder() { + if (dynamicLineupsBuilder_ == null) { + dynamicLineupsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup.Builder, com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder>( + dynamicLineups_, + ((bitField0_ & 0x00000010) != 0), + getParentForChildren(), + isClean()); + dynamicLineups_ = null; + } + return dynamicLineupsBuilder_; + } + + private java.util.List topicAudienceCombinations_ = + java.util.Collections.emptyList(); + private void ensureTopicAudienceCombinationsIsMutable() { + if (!((bitField0_ & 0x00000020) != 0)) { + topicAudienceCombinations_ = new java.util.ArrayList(topicAudienceCombinations_); + bitField0_ |= 0x00000020; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroupOrBuilder> topicAudienceCombinationsBuilder_; + + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public java.util.List getTopicAudienceCombinationsList() { + if (topicAudienceCombinationsBuilder_ == null) { + return java.util.Collections.unmodifiableList(topicAudienceCombinations_); + } else { + return topicAudienceCombinationsBuilder_.getMessageList(); + } + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public int getTopicAudienceCombinationsCount() { + if (topicAudienceCombinationsBuilder_ == null) { + return topicAudienceCombinations_.size(); + } else { + return topicAudienceCombinationsBuilder_.getCount(); + } + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup getTopicAudienceCombinations(int index) { + if (topicAudienceCombinationsBuilder_ == null) { + return topicAudienceCombinations_.get(index); + } else { + return topicAudienceCombinationsBuilder_.getMessage(index); + } + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder setTopicAudienceCombinations( + int index, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup value) { + if (topicAudienceCombinationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.set(index, value); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder setTopicAudienceCombinations( + int index, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder builderForValue) { + if (topicAudienceCombinationsBuilder_ == null) { + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.set(index, builderForValue.build()); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder addTopicAudienceCombinations(com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup value) { + if (topicAudienceCombinationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.add(value); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder addTopicAudienceCombinations( + int index, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup value) { + if (topicAudienceCombinationsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.add(index, value); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder addTopicAudienceCombinations( + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder builderForValue) { + if (topicAudienceCombinationsBuilder_ == null) { + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.add(builderForValue.build()); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder addTopicAudienceCombinations( + int index, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder builderForValue) { + if (topicAudienceCombinationsBuilder_ == null) { + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.add(index, builderForValue.build()); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder addAllTopicAudienceCombinations( + java.lang.Iterable values) { + if (topicAudienceCombinationsBuilder_ == null) { + ensureTopicAudienceCombinationsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, topicAudienceCombinations_); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder clearTopicAudienceCombinations() { + if (topicAudienceCombinationsBuilder_ == null) { + topicAudienceCombinations_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000020); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.clear(); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public Builder removeTopicAudienceCombinations(int index) { + if (topicAudienceCombinationsBuilder_ == null) { + ensureTopicAudienceCombinationsIsMutable(); + topicAudienceCombinations_.remove(index); + onChanged(); + } else { + topicAudienceCombinationsBuilder_.remove(index); + } + return this; + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder getTopicAudienceCombinationsBuilder( + int index) { + return getTopicAudienceCombinationsFieldBuilder().getBuilder(index); + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroupOrBuilder getTopicAudienceCombinationsOrBuilder( + int index) { + if (topicAudienceCombinationsBuilder_ == null) { + return topicAudienceCombinations_.get(index); } else { + return topicAudienceCombinationsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public java.util.List + getTopicAudienceCombinationsOrBuilderList() { + if (topicAudienceCombinationsBuilder_ != null) { + return topicAudienceCombinationsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(topicAudienceCombinations_); + } + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder addTopicAudienceCombinationsBuilder() { + return getTopicAudienceCombinationsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.getDefaultInstance()); + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder addTopicAudienceCombinationsBuilder( + int index) { + return getTopicAudienceCombinationsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.getDefaultInstance()); + } + /** + *
+     * A combination of entity, category and user interest attributes defining the
+     * audience. The combination has a logical AND-of-ORs structure: Attributes
+     * within each InsightsAudienceAttributeGroup are combined with OR, and
+     * the combinations themselves are combined together with AND.  For example,
+     * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+     * formed using two InsightsAudienceAttributeGroups with two Attributes
+     * each.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + public java.util.List + getTopicAudienceCombinationsBuilderList() { + return getTopicAudienceCombinationsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroupOrBuilder> + getTopicAudienceCombinationsFieldBuilder() { + if (topicAudienceCombinationsBuilder_ == null) { + topicAudienceCombinationsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroupOrBuilder>( + topicAudienceCombinations_, + ((bitField0_ & 0x00000020) != 0), + getParentForChildren(), + isClean()); + topicAudienceCombinations_ = null; + } + return topicAudienceCombinationsBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.InsightsAudience) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.InsightsAudience) + private static final com.google.ads.googleads.v11.services.InsightsAudience DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.InsightsAudience(); + } + + public static com.google.ads.googleads.v11.services.InsightsAudience getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public InsightsAudience parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new InsightsAudience(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudience getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceAttributeGroup.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceAttributeGroup.java new file mode 100644 index 0000000000..3b899ec7c2 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceAttributeGroup.java @@ -0,0 +1,941 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * A list of AudienceInsightsAttributes.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.InsightsAudienceAttributeGroup} + */ +public final class InsightsAudienceAttributeGroup extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) + InsightsAudienceAttributeGroupOrBuilder { +private static final long serialVersionUID = 0L; + // Use InsightsAudienceAttributeGroup.newBuilder() to construct. + private InsightsAudienceAttributeGroup(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private InsightsAudienceAttributeGroup() { + attributes_ = java.util.Collections.emptyList(); + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new InsightsAudienceAttributeGroup(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private InsightsAudienceAttributeGroup( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + int mutable_bitField0_ = 0; + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 10: { + if (!((mutable_bitField0_ & 0x00000001) != 0)) { + attributes_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000001; + } + attributes_.add( + input.readMessage(com.google.ads.googleads.v11.services.AudienceInsightsAttribute.parser(), extensionRegistry)); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + if (((mutable_bitField0_ & 0x00000001) != 0)) { + attributes_ = java.util.Collections.unmodifiableList(attributes_); + } + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.class, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder.class); + } + + public static final int ATTRIBUTES_FIELD_NUMBER = 1; + private java.util.List attributes_; + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public java.util.List getAttributesList() { + return attributes_; + } + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public java.util.List + getAttributesOrBuilderList() { + return attributes_; + } + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public int getAttributesCount() { + return attributes_.size(); + } + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsAttribute getAttributes(int index) { + return attributes_.get(index); + } + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeOrBuilder getAttributesOrBuilder( + int index) { + return attributes_.get(index); + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + for (int i = 0; i < attributes_.size(); i++) { + output.writeMessage(1, attributes_.get(i)); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + for (int i = 0; i < attributes_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(1, attributes_.get(i)); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup other = (com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) obj; + + if (!getAttributesList() + .equals(other.getAttributesList())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + if (getAttributesCount() > 0) { + hash = (37 * hash) + ATTRIBUTES_FIELD_NUMBER; + hash = (53 * hash) + getAttributesList().hashCode(); + } + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * A list of AudienceInsightsAttributes.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.InsightsAudienceAttributeGroup} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroupOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.class, com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + getAttributesFieldBuilder(); + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + if (attributesBuilder_ == null) { + attributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + } else { + attributesBuilder_.clear(); + } + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_InsightsAudienceAttributeGroup_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup build() { + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup buildPartial() { + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup result = new com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup(this); + int from_bitField0_ = bitField0_; + if (attributesBuilder_ == null) { + if (((bitField0_ & 0x00000001) != 0)) { + attributes_ = java.util.Collections.unmodifiableList(attributes_); + bitField0_ = (bitField0_ & ~0x00000001); + } + result.attributes_ = attributes_; + } else { + result.attributes_ = attributesBuilder_.build(); + } + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) { + return mergeFrom((com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup other) { + if (other == com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup.getDefaultInstance()) return this; + if (attributesBuilder_ == null) { + if (!other.attributes_.isEmpty()) { + if (attributes_.isEmpty()) { + attributes_ = other.attributes_; + bitField0_ = (bitField0_ & ~0x00000001); + } else { + ensureAttributesIsMutable(); + attributes_.addAll(other.attributes_); + } + onChanged(); + } + } else { + if (!other.attributes_.isEmpty()) { + if (attributesBuilder_.isEmpty()) { + attributesBuilder_.dispose(); + attributesBuilder_ = null; + attributes_ = other.attributes_; + bitField0_ = (bitField0_ & ~0x00000001); + attributesBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getAttributesFieldBuilder() : null; + } else { + attributesBuilder_.addAllMessages(other.attributes_); + } + } + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + private int bitField0_; + + private java.util.List attributes_ = + java.util.Collections.emptyList(); + private void ensureAttributesIsMutable() { + if (!((bitField0_ & 0x00000001) != 0)) { + attributes_ = new java.util.ArrayList(attributes_); + bitField0_ |= 0x00000001; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsAttribute, com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder, com.google.ads.googleads.v11.services.AudienceInsightsAttributeOrBuilder> attributesBuilder_; + + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List getAttributesList() { + if (attributesBuilder_ == null) { + return java.util.Collections.unmodifiableList(attributes_); + } else { + return attributesBuilder_.getMessageList(); + } + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public int getAttributesCount() { + if (attributesBuilder_ == null) { + return attributes_.size(); + } else { + return attributesBuilder_.getCount(); + } + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttribute getAttributes(int index) { + if (attributesBuilder_ == null) { + return attributes_.get(index); + } else { + return attributesBuilder_.getMessage(index); + } + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setAttributes( + int index, com.google.ads.googleads.v11.services.AudienceInsightsAttribute value) { + if (attributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttributesIsMutable(); + attributes_.set(index, value); + onChanged(); + } else { + attributesBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder setAttributes( + int index, com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder builderForValue) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.set(index, builderForValue.build()); + onChanged(); + } else { + attributesBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addAttributes(com.google.ads.googleads.v11.services.AudienceInsightsAttribute value) { + if (attributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttributesIsMutable(); + attributes_.add(value); + onChanged(); + } else { + attributesBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addAttributes( + int index, com.google.ads.googleads.v11.services.AudienceInsightsAttribute value) { + if (attributesBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureAttributesIsMutable(); + attributes_.add(index, value); + onChanged(); + } else { + attributesBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addAttributes( + com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder builderForValue) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.add(builderForValue.build()); + onChanged(); + } else { + attributesBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addAttributes( + int index, com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder builderForValue) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.add(index, builderForValue.build()); + onChanged(); + } else { + attributesBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder addAllAttributes( + java.lang.Iterable values) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, attributes_); + onChanged(); + } else { + attributesBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder clearAttributes() { + if (attributesBuilder_ == null) { + attributes_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000001); + onChanged(); + } else { + attributesBuilder_.clear(); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public Builder removeAttributes(int index) { + if (attributesBuilder_ == null) { + ensureAttributesIsMutable(); + attributes_.remove(index); + onChanged(); + } else { + attributesBuilder_.remove(index); + } + return this; + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder getAttributesBuilder( + int index) { + return getAttributesFieldBuilder().getBuilder(index); + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttributeOrBuilder getAttributesOrBuilder( + int index) { + if (attributesBuilder_ == null) { + return attributes_.get(index); } else { + return attributesBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List + getAttributesOrBuilderList() { + if (attributesBuilder_ != null) { + return attributesBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(attributes_); + } + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder addAttributesBuilder() { + return getAttributesFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.AudienceInsightsAttribute.getDefaultInstance()); + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder addAttributesBuilder( + int index) { + return getAttributesFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.AudienceInsightsAttribute.getDefaultInstance()); + } + /** + *
+     * Required. A collection of audience attributes to be combined with logical OR.
+     * Attributes need not all be the same dimension.  Only Knowledge Graph
+     * entities, Product & Service Categories, and Affinity and In-Market
+     * audiences are supported in this context.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + public java.util.List + getAttributesBuilderList() { + return getAttributesFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsAttribute, com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder, com.google.ads.googleads.v11.services.AudienceInsightsAttributeOrBuilder> + getAttributesFieldBuilder() { + if (attributesBuilder_ == null) { + attributesBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceInsightsAttribute, com.google.ads.googleads.v11.services.AudienceInsightsAttribute.Builder, com.google.ads.googleads.v11.services.AudienceInsightsAttributeOrBuilder>( + attributes_, + ((bitField0_ & 0x00000001) != 0), + getParentForChildren(), + isClean()); + attributes_ = null; + } + return attributesBuilder_; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) + private static final com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup(); + } + + public static com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public InsightsAudienceAttributeGroup parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new InsightsAudienceAttributeGroup(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceAttributeGroupOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceAttributeGroupOrBuilder.java new file mode 100644 index 0000000000..ed4ee6a311 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceAttributeGroupOrBuilder.java @@ -0,0 +1,68 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface InsightsAudienceAttributeGroupOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.InsightsAudienceAttributeGroup) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + java.util.List + getAttributesList(); + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v11.services.AudienceInsightsAttribute getAttributes(int index); + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + int getAttributesCount(); + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + java.util.List + getAttributesOrBuilderList(); + /** + *
+   * Required. A collection of audience attributes to be combined with logical OR.
+   * Attributes need not all be the same dimension.  Only Knowledge Graph
+   * entities, Product & Service Categories, and Affinity and In-Market
+   * audiences are supported in this context.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsAttribute attributes = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v11.services.AudienceInsightsAttributeOrBuilder getAttributesOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceOrBuilder.java new file mode 100644 index 0000000000..6e0b15a449 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/InsightsAudienceOrBuilder.java @@ -0,0 +1,383 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface InsightsAudienceOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.InsightsAudience) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + java.util.List + getCountryLocationsList(); + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v11.common.LocationInfo getCountryLocations(int index); + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + int getCountryLocationsCount(); + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + java.util.List + getCountryLocationsOrBuilderList(); + /** + *
+   * Required. The countries for the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo country_locations = 1 [(.google.api.field_behavior) = REQUIRED]; + */ + com.google.ads.googleads.v11.common.LocationInfoOrBuilder getCountryLocationsOrBuilder( + int index); + + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + java.util.List + getSubCountryLocationsList(); + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + com.google.ads.googleads.v11.common.LocationInfo getSubCountryLocations(int index); + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + int getSubCountryLocationsCount(); + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + java.util.List + getSubCountryLocationsOrBuilderList(); + /** + *
+   * Sub-country geographic location attributes.  If present, each of these
+   * must be contained in one of the countries in this audience.  If absent, the
+   * audience is geographically to the country_locations and no further.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.LocationInfo sub_country_locations = 2; + */ + com.google.ads.googleads.v11.common.LocationInfoOrBuilder getSubCountryLocationsOrBuilder( + int index); + + /** + *
+   * Gender for the audience.  If absent, the audience does not restrict by
+   * gender.
+   * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + * @return Whether the gender field is set. + */ + boolean hasGender(); + /** + *
+   * Gender for the audience.  If absent, the audience does not restrict by
+   * gender.
+   * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + * @return The gender. + */ + com.google.ads.googleads.v11.common.GenderInfo getGender(); + /** + *
+   * Gender for the audience.  If absent, the audience does not restrict by
+   * gender.
+   * 
+ * + * .google.ads.googleads.v11.common.GenderInfo gender = 3; + */ + com.google.ads.googleads.v11.common.GenderInfoOrBuilder getGenderOrBuilder(); + + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + java.util.List + getAgeRangesList(); + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + com.google.ads.googleads.v11.common.AgeRangeInfo getAgeRanges(int index); + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + int getAgeRangesCount(); + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + java.util.List + getAgeRangesOrBuilderList(); + /** + *
+   * Age ranges for the audience.  If absent, the audience represents all people
+   * over 18 that match the other attributes.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.AgeRangeInfo age_ranges = 4; + */ + com.google.ads.googleads.v11.common.AgeRangeInfoOrBuilder getAgeRangesOrBuilder( + int index); + + /** + *
+   * Parental status for the audience.  If absent, the audience does not
+   * restrict by parental status.
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + * @return Whether the parentalStatus field is set. + */ + boolean hasParentalStatus(); + /** + *
+   * Parental status for the audience.  If absent, the audience does not
+   * restrict by parental status.
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + * @return The parentalStatus. + */ + com.google.ads.googleads.v11.common.ParentalStatusInfo getParentalStatus(); + /** + *
+   * Parental status for the audience.  If absent, the audience does not
+   * restrict by parental status.
+   * 
+ * + * .google.ads.googleads.v11.common.ParentalStatusInfo parental_status = 5; + */ + com.google.ads.googleads.v11.common.ParentalStatusInfoOrBuilder getParentalStatusOrBuilder(); + + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + java.util.List + getIncomeRangesList(); + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + com.google.ads.googleads.v11.common.IncomeRangeInfo getIncomeRanges(int index); + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + int getIncomeRangesCount(); + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + java.util.List + getIncomeRangesOrBuilderList(); + /** + *
+   * Household income percentile ranges for the audience.  If absent, the
+   * audience does not restrict by household income range.
+   * 
+ * + * repeated .google.ads.googleads.v11.common.IncomeRangeInfo income_ranges = 6; + */ + com.google.ads.googleads.v11.common.IncomeRangeInfoOrBuilder getIncomeRangesOrBuilder( + int index); + + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + java.util.List + getDynamicLineupsList(); + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineup getDynamicLineups(int index); + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + int getDynamicLineupsCount(); + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + java.util.List + getDynamicLineupsOrBuilderList(); + /** + *
+   * Dynamic lineups representing the YouTube content viewed by the audience.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.AudienceInsightsDynamicLineup dynamic_lineups = 7; + */ + com.google.ads.googleads.v11.services.AudienceInsightsDynamicLineupOrBuilder getDynamicLineupsOrBuilder( + int index); + + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + java.util.List + getTopicAudienceCombinationsList(); + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroup getTopicAudienceCombinations(int index); + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + int getTopicAudienceCombinationsCount(); + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + java.util.List + getTopicAudienceCombinationsOrBuilderList(); + /** + *
+   * A combination of entity, category and user interest attributes defining the
+   * audience. The combination has a logical AND-of-ORs structure: Attributes
+   * within each InsightsAudienceAttributeGroup are combined with OR, and
+   * the combinations themselves are combined together with AND.  For example,
+   * the expression (Entity OR Affinity) AND (In-Market OR Category) can be
+   * formed using two InsightsAudienceAttributeGroups with two Attributes
+   * each.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.InsightsAudienceAttributeGroup topic_audience_combinations = 8; + */ + com.google.ads.googleads.v11.services.InsightsAudienceAttributeGroupOrBuilder getTopicAudienceCombinationsOrBuilder( + int index); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ListAudienceInsightsAttributesRequest.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ListAudienceInsightsAttributesRequest.java index bb6d1ec0a9..b68c34f7ca 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ListAudienceInsightsAttributesRequest.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ListAudienceInsightsAttributesRequest.java @@ -978,8 +978,8 @@ public int getDimensionsValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension dimensions = 2 [(.google.api.field_behavior) = REQUIRED]; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of dimensions at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for dimensions to set. * @return This builder for chaining. */ public Builder setDimensionsValue( diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponse.java index cb0043f6c4..f96744e630 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponse.java @@ -156,8 +156,8 @@ public com.google.ads.googleads.v11.services.MutateAccountLinkResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -171,8 +171,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -186,8 +186,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -708,8 +708,8 @@ public com.google.ads.googleads.v11.services.MutateAccountLinkResultOrBuilder ge *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -722,8 +722,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -740,8 +740,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -763,8 +763,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -784,8 +784,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -809,8 +809,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -830,8 +830,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -845,8 +845,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -863,8 +863,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponseOrBuilder.java index 316594c261..3d98fe5757 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAccountLinkResponseOrBuilder.java @@ -38,8 +38,8 @@ public interface MutateAccountLinkResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -50,8 +50,8 @@ public interface MutateAccountLinkResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -62,8 +62,8 @@ public interface MutateAccountLinkResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponse.java index cec9de88b0..e87a9d45ba 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupAdLabelsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponseOrBuilder.java index 9d1ff124fa..08fb17dd3a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdLabelsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupAdLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupAdLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupAdLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponse.java index be4722f4c3..46f8c8e103 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupAdsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponseOrBuilder.java index 9e887dc1af..d4a4c3f450 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAdsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponse.java index 801ddad1fb..27537d89ca 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupAssetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponseOrBuilder.java index a3374c38b9..fbd8729756 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupAssetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface MutateAdGroupAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface MutateAdGroupAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponse.java index 3cfd2af4c1..066de992b3 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupBidModifiersResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponseOrBuilder.java index 9477ad0e1a..b339ab0cdf 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupBidModifiersResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupBidModifiersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupBidModifiersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupBidModifiersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponse.java index 22b0f81b7f..d55ac4ee59 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupCriteriaResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponseOrBuilder.java index 9bb3eb5a2c..ba08314d3e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriteriaResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponse.java index e5a8dc6675..6c6cb59ad5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizerRes *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizerRes *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponseOrBuilder.java index 0365398fd8..ef9d8e720d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionCustomizersResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizerResultOrBu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizerResultOrBu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAdGroupCriterionCustomizerResultOrBu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponse.java index 2f3e7f134e..6273eb716c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupCriterionLabelsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponseOrBuilder.java index cb3a0edf56..230cf8bd12 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCriterionLabelsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupCriterionLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupCriterionLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupCriterionLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponse.java index e8016fd7d3..2bdc8e548f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAdGroupCustomizerResultOrBuil *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAdGroupCustomizerResult.Build *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponseOrBuilder.java index 6195474d6a..6927064e5d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupCustomizersResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAdGroupCustomizerResultOrBuilder get *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAdGroupCustomizerResultOrBuilder get *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAdGroupCustomizerResultOrBuilder get *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponse.java index dba17d3830..9ad2837a4a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupExtensionSettingsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponseOrBuilder.java index d96f68f0c3..046f8680aa 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupExtensionSettingsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponse.java index 313557f43d..f0b8de6a65 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupFeedsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponseOrBuilder.java index 952a33b048..dd00d5ce44 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupFeedsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponse.java index 284b05989b..598fdfc9a1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupLabelsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponseOrBuilder.java index f4c6ee4c60..9d7eaa7b2f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupLabelsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponse.java index 59e6b6a992..6f3bfe22ea 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponse.java @@ -119,8 +119,8 @@ private MutateAdGroupsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponseOrBuilder.java index e99c646845..b34ca7afba 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdGroupsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdGroupsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdGroupsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdGroupsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponse.java index 0b0d5e4b78..5f3956bec3 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponse.java @@ -119,8 +119,8 @@ private MutateAdParametersResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponseOrBuilder.java index 1999c12a22..3729a6acad 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdParametersResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdParametersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdParametersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdParametersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponse.java index de49a39ae7..985203a651 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponse.java @@ -119,8 +119,8 @@ private MutateAdsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponseOrBuilder.java index c8fdd133a0..8c62a80a4c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAdsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponse.java index 1dec314463..29d378c946 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAssetGroupAssetResultOrBuilde *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAssetGroupAssetResult.Builder *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponseOrBuilder.java index 201f141073..43de082c22 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupAssetsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupAssetResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupAssetResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupAssetResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponse.java index aa825bd117..4f844922e9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAssetGroupSignalResultOrBuild *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAssetGroupSignalResult.Builde *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponseOrBuilder.java index bb41b8e6a5..cb32c60c80 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupSignalsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupSignalResultOrBuilder getR *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupSignalResultOrBuilder getR *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupSignalResultOrBuilder getR *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponse.java index 56ab9cceb2..6f56567711 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAssetGroupResultOrBuilder get *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAssetGroupResult.Builder addR *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponseOrBuilder.java index 40d64da3ed..55f2da126e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetGroupsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupResultOrBuilder getResults *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupResultOrBuilder getResults *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAssetGroupResultOrBuilder getResults *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponse.java index d5023f8161..e0539a3325 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAssetSetAssetResultOrBuilder *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAssetSetAssetResult.Builder a *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponseOrBuilder.java index 453adb4568..476308f670 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetAssetsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAssetSetAssetResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAssetSetAssetResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAssetSetAssetResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponse.java index 5ab1b08134..7c8e51ca67 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAssetSetResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAssetSetResult.Builder addRes *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponseOrBuilder.java index a94502c3af..39795142aa 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetSetsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAssetSetResultOrBuilder getResultsOr *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAssetSetResultOrBuilder getResultsOr *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAssetSetResultOrBuilder getResultsOr *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponse.java index 5b8c7664ae..fb609be986 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponse.java @@ -119,8 +119,8 @@ private MutateAssetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponseOrBuilder.java index 80358810f6..8d71cd52c5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAssetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponse.java index fa5701672d..cfb09ba4d4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateAudienceResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateAudienceResult.Builder addRes *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponseOrBuilder.java index cdc7e62f63..8746f671ef 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateAudiencesResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateAudienceResultOrBuilder getResultsOr *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateAudienceResultOrBuilder getResultsOr *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateAudienceResultOrBuilder getResultsOr *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponse.java index 05f3850e48..4b751b0734 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponse.java @@ -119,8 +119,8 @@ private MutateBiddingDataExclusionsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponseOrBuilder.java index 50b1379fe3..42c9530293 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingDataExclusionsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateBiddingDataExclusionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateBiddingDataExclusionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateBiddingDataExclusionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponse.java index 106ca3fc33..c43bf397e1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponse.java @@ -119,8 +119,8 @@ private MutateBiddingSeasonalityAdjustmentsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponseOrBuilder.java index b08f99cebb..f876b5ca4e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingSeasonalityAdjustmentsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateBiddingSeasonalityAdjustmentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateBiddingSeasonalityAdjustmentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateBiddingSeasonalityAdjustmentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponse.java index ca2500abaf..d89b7d89c2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponse.java @@ -119,8 +119,8 @@ private MutateBiddingStrategiesResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponseOrBuilder.java index 625da90ddb..bff31a7fe0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateBiddingStrategiesResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateBiddingStrategiesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateBiddingStrategiesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateBiddingStrategiesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponse.java index 1c87c19604..c69511946c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateCampaignAssetSetResultOrBuild *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateCampaignAssetSetResult.Builde *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponseOrBuilder.java index 8c8176436e..19e5e34f13 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetSetsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateCampaignAssetSetResultOrBuilder getR *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateCampaignAssetSetResultOrBuilder getR *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateCampaignAssetSetResultOrBuilder getR *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponse.java index 6a515a3de2..75990dcb4a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignAssetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponseOrBuilder.java index 33e7ffb990..0e6331f304 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignAssetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface MutateCampaignAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface MutateCampaignAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponse.java index 650fec6e37..4b8b6176c6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponse.java @@ -119,8 +119,8 @@ private MutateCampaignBidModifiersResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponseOrBuilder.java index 6606de6269..94085cfb92 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBidModifiersResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignBidModifiersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignBidModifiersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignBidModifiersResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponse.java index 0e33ec2581..4f776649b1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignBudgetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponseOrBuilder.java index 8e2fbff388..dcb0b485f0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignBudgetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignBudgetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignBudgetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignBudgetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponse.java index b022f44eac..a59c49ea95 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponse.java @@ -119,8 +119,8 @@ private MutateCampaignCriteriaResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponseOrBuilder.java index 902b8f0539..70b91c18e6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCriteriaResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponse.java index 38d8e6217a..3ebeb706ef 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateCampaignCustomizerResultOrBui *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateCampaignCustomizerResult.Buil *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponseOrBuilder.java index d9537b30e2..6323f78bec 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignCustomizersResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateCampaignCustomizerResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateCampaignCustomizerResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateCampaignCustomizerResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponse.java index a0c20309ec..f3319c888d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignDraftsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponseOrBuilder.java index 519eab872c..a42ced9c73 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignDraftsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignDraftsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignDraftsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignDraftsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponse.java index 25f99ea0b7..392049dae1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignExperimentsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponseOrBuilder.java index 4a311e313d..542752c4e9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExperimentsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignExperimentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignExperimentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignExperimentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponse.java index d349d6b4a7..67ecc79360 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignExtensionSettingsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponseOrBuilder.java index 4f6766bf99..17e7df56d1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignExtensionSettingsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponse.java index f82720104b..1bd15b2515 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignFeedsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponseOrBuilder.java index 984cdf7934..425c96adf2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignFeedsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponse.java index 9df152d62c..3b40bdc890 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateCampaignGroupResultOrBuilder *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateCampaignGroupResult.Builder a *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponseOrBuilder.java index 9361ddae88..2aa87341c2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignGroupsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateCampaignGroupResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateCampaignGroupResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateCampaignGroupResultOrBuilder getResu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponse.java index 69dc3010f4..6317418c0a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignLabelsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponseOrBuilder.java index 0cd5b29503..05452e813a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignLabelsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponse.java index 782a0afe9a..e94a3b606e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignSharedSetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponseOrBuilder.java index 1e6c2c2858..a6f74fbe05 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignSharedSetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignSharedSetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignSharedSetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignSharedSetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponse.java index 16d126a9f1..b4da057717 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponse.java @@ -119,8 +119,8 @@ private MutateCampaignsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponseOrBuilder.java index 685c67e7d3..2a3f629f59 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCampaignsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCampaignsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCampaignsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCampaignsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponse.java index 3bebe64bf8..8bf826b0d2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponse.java @@ -119,8 +119,8 @@ private MutateConversionActionsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponseOrBuilder.java index 24e4f27115..42d0f1bd16 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionActionsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateConversionActionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateConversionActionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateConversionActionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponse.java index befdaabf4f..0e7c71f2f6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponse.java @@ -120,8 +120,8 @@ private MutateConversionCustomVariablesResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -135,8 +135,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -150,8 +150,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -605,8 +605,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -619,8 +619,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -637,8 +637,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -660,8 +660,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -681,8 +681,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -706,8 +706,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -727,8 +727,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -742,8 +742,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -760,8 +760,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponseOrBuilder.java index 64189239a1..68a9ea7094 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionCustomVariablesResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateConversionCustomVariablesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface MutateConversionCustomVariablesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface MutateConversionCustomVariablesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponse.java index b1088cddbe..37ebd9862b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponse.java @@ -180,8 +180,8 @@ public com.google.ads.googleads.v11.services.MutateConversionValueRuleSetResultO *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -195,8 +195,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -210,8 +210,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -917,8 +917,8 @@ public com.google.ads.googleads.v11.services.MutateConversionValueRuleSetResult. *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -931,8 +931,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -949,8 +949,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -972,8 +972,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -993,8 +993,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1018,8 +1018,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1039,8 +1039,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1054,8 +1054,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1072,8 +1072,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponseOrBuilder.java index 66fc0fb2b9..6d338bd8ce 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRuleSetsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateConversionValueRuleSetResultOrBuilde *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateConversionValueRuleSetResultOrBuilde *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateConversionValueRuleSetResultOrBuilde *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponse.java index 207874d437..8f2982e5e7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponse.java @@ -180,8 +180,8 @@ public com.google.ads.googleads.v11.services.MutateConversionValueRuleResultOrBu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -195,8 +195,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -210,8 +210,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -917,8 +917,8 @@ public com.google.ads.googleads.v11.services.MutateConversionValueRuleResult.Bui *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -931,8 +931,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -949,8 +949,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -972,8 +972,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -993,8 +993,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1018,8 +1018,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1039,8 +1039,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1054,8 +1054,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -1072,8 +1072,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponseOrBuilder.java index 5f8eaa3beb..8ce20f49d1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateConversionValueRulesResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateConversionValueRuleResultOrBuilder g *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateConversionValueRuleResultOrBuilder g *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateConversionValueRuleResultOrBuilder g *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponse.java index bc31271524..05f971e71a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponse.java @@ -119,8 +119,8 @@ private MutateCustomerAssetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponseOrBuilder.java index 95e69d7be6..02b99a01ba 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerAssetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCustomerAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface MutateCustomerAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface MutateCustomerAssetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponse.java index 72c461c602..a848c93bd6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateCustomerCustomizerResultOrBui *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateCustomerCustomizerResult.Buil *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponseOrBuilder.java index 5c3dcc0a1f..5053b0f4a4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerCustomizersResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateCustomerCustomizerResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateCustomerCustomizerResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateCustomerCustomizerResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponse.java index 5d997b373e..03472bbd0a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponse.java @@ -119,8 +119,8 @@ private MutateCustomerExtensionSettingsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponseOrBuilder.java index b4819f28ec..58db297611 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerExtensionSettingsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCustomerExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCustomerExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCustomerExtensionSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponse.java index e37603a712..51422c45c7 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponse.java @@ -119,8 +119,8 @@ private MutateCustomerFeedsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponseOrBuilder.java index a56e801f97..c346a4572b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerFeedsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCustomerFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCustomerFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCustomerFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponse.java index 2d18dd90bb..c4fafacb9b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponse.java @@ -119,8 +119,8 @@ private MutateCustomerLabelsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponseOrBuilder.java index 60b0ce7da6..9f3a27d12c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerLabelsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCustomerLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCustomerLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCustomerLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponse.java index 7788682066..be3a55be1c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponse.java @@ -119,8 +119,8 @@ private MutateCustomerNegativeCriteriaResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponseOrBuilder.java index a476c45d52..4fac207a7b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomerNegativeCriteriaResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateCustomerNegativeCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateCustomerNegativeCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateCustomerNegativeCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponse.java index 63fdf83df5..cd497a8b67 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateCustomizerAttributeResultOrBu *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateCustomizerAttributeResult.Bui *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponseOrBuilder.java index 20ae7bbfd4..1944234dae 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateCustomizerAttributesResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateCustomizerAttributeResultOrBuilder g *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateCustomizerAttributeResultOrBuilder g *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateCustomizerAttributeResultOrBuilder g *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponse.java index 9a7c5766d5..6753f57396 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponse.java @@ -119,8 +119,8 @@ private MutateExperimentArmsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponseOrBuilder.java index c2248289d5..b68c702642 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentArmsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateExperimentArmsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface MutateExperimentArmsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface MutateExperimentArmsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponse.java index 31c0541bfe..ca0667b086 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponse.java @@ -119,8 +119,8 @@ private MutateExperimentsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponseOrBuilder.java index 79c4abe8bf..e1c6cddc4b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExperimentsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateExperimentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface MutateExperimentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface MutateExperimentsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponse.java index dbd36b4f2a..a02611a9fb 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponse.java @@ -119,8 +119,8 @@ private MutateExtensionFeedItemsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponseOrBuilder.java index dbebb99383..8fd13f117d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateExtensionFeedItemsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateExtensionFeedItemsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateExtensionFeedItemsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateExtensionFeedItemsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponse.java index a8d717dded..7f672a58eb 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateFeedItemSetLinkResultOrBuilde *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateFeedItemSetLinkResult.Builder *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponseOrBuilder.java index 8c1cd6d740..4e680f9763 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetLinksResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateFeedItemSetLinkResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateFeedItemSetLinkResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateFeedItemSetLinkResultOrBuilder getRe *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponse.java index e95d00a5f4..1d7678202a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponse.java @@ -179,8 +179,8 @@ public com.google.ads.googleads.v11.services.MutateFeedItemSetResultOrBuilder ge *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -194,8 +194,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -209,8 +209,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -915,8 +915,8 @@ public com.google.ads.googleads.v11.services.MutateFeedItemSetResult.Builder add *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -929,8 +929,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -947,8 +947,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -970,8 +970,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -991,8 +991,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1016,8 +1016,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1037,8 +1037,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1052,8 +1052,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; @@ -1070,8 +1070,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponseOrBuilder.java index 524fa49898..748913514f 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemSetsResponseOrBuilder.java @@ -55,8 +55,8 @@ com.google.ads.googleads.v11.services.MutateFeedItemSetResultOrBuilder getResult *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -67,8 +67,8 @@ com.google.ads.googleads.v11.services.MutateFeedItemSetResultOrBuilder getResult *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; @@ -79,8 +79,8 @@ com.google.ads.googleads.v11.services.MutateFeedItemSetResultOrBuilder getResult *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 2; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponse.java index 8c70290850..e9619d881c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponse.java @@ -119,8 +119,8 @@ private MutateFeedItemTargetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponseOrBuilder.java index cd4ee8b406..babd4ff803 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemTargetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateFeedItemTargetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateFeedItemTargetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateFeedItemTargetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponse.java index dd7067d620..dab5c26c42 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponse.java @@ -119,8 +119,8 @@ private MutateFeedItemsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponseOrBuilder.java index 8a32b07991..5226b8a360 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedItemsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateFeedItemsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateFeedItemsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateFeedItemsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponse.java index 0fef6aa306..b2b61bb2da 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponse.java @@ -119,8 +119,8 @@ private MutateFeedMappingsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponseOrBuilder.java index a143b3a700..b67b807b55 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedMappingsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateFeedMappingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateFeedMappingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateFeedMappingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponse.java index d7e86fe06b..2976ed44d2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponse.java @@ -119,8 +119,8 @@ private MutateFeedsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponseOrBuilder.java index 43f6fec123..e001f75154 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateFeedsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateFeedsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequest.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequest.java index 526e798749..610553f89b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequest.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequest.java @@ -271,7 +271,7 @@ public boolean getValidateOnly() { * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; @@ -285,7 +285,7 @@ public boolean getValidateOnly() { * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; @@ -1224,7 +1224,7 @@ public Builder clearValidateOnly() { * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; @@ -1238,7 +1238,7 @@ public Builder clearValidateOnly() { * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; @@ -1256,7 +1256,7 @@ public Builder setResponseContentTypeValue(int value) { * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; @@ -1273,7 +1273,7 @@ public com.google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseConten * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; @@ -1294,7 +1294,7 @@ public Builder setResponseContentType(com.google.ads.googleads.v11.enums.Respons * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequestOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequestOrBuilder.java index 7b051af0cc..e701d60348 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequestOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsRequestOrBuilder.java @@ -100,7 +100,7 @@ com.google.ads.googleads.v11.services.MutateOperationOrBuilder getMutateOperatio * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; @@ -112,7 +112,7 @@ com.google.ads.googleads.v11.services.MutateOperationOrBuilder getMutateOperatio * The response content type setting. Determines whether the mutable resource * or just the resource name should be returned post mutation. The mutable * resource will only be returned if the resource has the appropriate response - * field. E.g. MutateCampaignResult.campaign. + * field. For example, MutateCampaignResult.campaign. *
* * .google.ads.googleads.v11.enums.ResponseContentTypeEnum.ResponseContentType response_content_type = 5; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponse.java index 23354c0814..faddeb61dd 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponse.java @@ -119,8 +119,8 @@ private MutateGoogleAdsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g., auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g., auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g., auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g., auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponseOrBuilder.java index a3818cf0e1..d5965b7ac6 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateGoogleAdsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateGoogleAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g., auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateGoogleAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g., auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateGoogleAdsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g., auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponse.java index daf08669d2..04672139ae 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponse.java @@ -119,8 +119,8 @@ private MutateKeywordPlanAdGroupKeywordsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponseOrBuilder.java index 3ad6daee18..d05994d010 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupKeywordsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateKeywordPlanAdGroupKeywordsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateKeywordPlanAdGroupKeywordsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateKeywordPlanAdGroupKeywordsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponse.java index 846697c7e3..15f0067ea0 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponse.java @@ -119,8 +119,8 @@ private MutateKeywordPlanAdGroupsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -608,8 +608,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -622,8 +622,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -640,8 +640,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -663,8 +663,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -684,8 +684,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -709,8 +709,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -730,8 +730,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -745,8 +745,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -763,8 +763,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponseOrBuilder.java index 9cd5020606..297857ee6d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanAdGroupsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateKeywordPlanAdGroupsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateKeywordPlanAdGroupsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateKeywordPlanAdGroupsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponse.java index b714cb6333..4677db7ffe 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponse.java @@ -119,8 +119,8 @@ private MutateKeywordPlanCampaignKeywordsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponseOrBuilder.java index 63a6f8c98c..3e6af3dd88 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignKeywordsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateKeywordPlanCampaignKeywordsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateKeywordPlanCampaignKeywordsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateKeywordPlanCampaignKeywordsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponse.java index f2ce532a74..15ea25c930 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponse.java @@ -119,8 +119,8 @@ private MutateKeywordPlanCampaignsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponseOrBuilder.java index 893dfcc8e0..0e6e9791c9 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlanCampaignsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateKeywordPlanCampaignsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateKeywordPlanCampaignsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateKeywordPlanCampaignsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponse.java index a6167c14d9..480c807934 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponse.java @@ -119,8 +119,8 @@ private MutateKeywordPlansResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponseOrBuilder.java index b805a8f7c0..fcf9fa16db 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateKeywordPlansResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateKeywordPlansResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateKeywordPlansResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateKeywordPlansResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponse.java index 51e5e26df4..d40a41478d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponse.java @@ -119,8 +119,8 @@ private MutateLabelsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponseOrBuilder.java index f432af9a73..744a7b5a94 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateLabelsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateLabelsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponse.java index df342c2422..832e1e2861 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponse.java @@ -119,8 +119,8 @@ private MutateMediaFilesResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponseOrBuilder.java index 30a49eaf02..3049c8fecf 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateMediaFilesResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateMediaFilesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateMediaFilesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateMediaFilesResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponse.java index a23f38775b..a710e8dd67 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponse.java @@ -1088,6 +1088,34 @@ private MutateOperationResponse( responseCase_ = 80; break; } + case 650: { + com.google.ads.googleads.v11.services.MutateExperimentResult.Builder subBuilder = null; + if (responseCase_ == 81) { + subBuilder = ((com.google.ads.googleads.v11.services.MutateExperimentResult) response_).toBuilder(); + } + response_ = + input.readMessage(com.google.ads.googleads.v11.services.MutateExperimentResult.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.services.MutateExperimentResult) response_); + response_ = subBuilder.buildPartial(); + } + responseCase_ = 81; + break; + } + case 658: { + com.google.ads.googleads.v11.services.MutateExperimentArmResult.Builder subBuilder = null; + if (responseCase_ == 82) { + subBuilder = ((com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_).toBuilder(); + } + response_ = + input.readMessage(com.google.ads.googleads.v11.services.MutateExperimentArmResult.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom((com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_); + response_ = subBuilder.buildPartial(); + } + responseCase_ = 82; + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -1182,6 +1210,8 @@ public enum ResponseCase CUSTOMER_NEGATIVE_CRITERION_RESULT(34), CUSTOMER_RESULT(35), CUSTOMIZER_ATTRIBUTE_RESULT(70), + EXPERIMENT_RESULT(81), + EXPERIMENT_ARM_RESULT(82), EXTENSION_FEED_ITEM_RESULT(36), FEED_ITEM_RESULT(37), FEED_ITEM_SET_RESULT(53), @@ -1273,6 +1303,8 @@ public static ResponseCase forNumber(int value) { case 34: return CUSTOMER_NEGATIVE_CRITERION_RESULT; case 35: return CUSTOMER_RESULT; case 70: return CUSTOMIZER_ATTRIBUTE_RESULT; + case 81: return EXPERIMENT_RESULT; + case 82: return EXPERIMENT_ARM_RESULT; case 36: return EXTENSION_FEED_ITEM_RESULT; case 37: return FEED_ITEM_RESULT; case 53: return FEED_ITEM_SET_RESULT; @@ -3672,6 +3704,92 @@ public com.google.ads.googleads.v11.services.MutateCustomizerAttributeResultOrBu return com.google.ads.googleads.v11.services.MutateCustomizerAttributeResult.getDefaultInstance(); } + public static final int EXPERIMENT_RESULT_FIELD_NUMBER = 81; + /** + *
+   * The result for the experiment mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + * @return Whether the experimentResult field is set. + */ + @java.lang.Override + public boolean hasExperimentResult() { + return responseCase_ == 81; + } + /** + *
+   * The result for the experiment mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + * @return The experimentResult. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentResult getExperimentResult() { + if (responseCase_ == 81) { + return (com.google.ads.googleads.v11.services.MutateExperimentResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentResult.getDefaultInstance(); + } + /** + *
+   * The result for the experiment mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentResultOrBuilder getExperimentResultOrBuilder() { + if (responseCase_ == 81) { + return (com.google.ads.googleads.v11.services.MutateExperimentResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentResult.getDefaultInstance(); + } + + public static final int EXPERIMENT_ARM_RESULT_FIELD_NUMBER = 82; + /** + *
+   * The result for the experiment arm mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + * @return Whether the experimentArmResult field is set. + */ + @java.lang.Override + public boolean hasExperimentArmResult() { + return responseCase_ == 82; + } + /** + *
+   * The result for the experiment arm mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + * @return The experimentArmResult. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentArmResult getExperimentArmResult() { + if (responseCase_ == 82) { + return (com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentArmResult.getDefaultInstance(); + } + /** + *
+   * The result for the experiment arm mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentArmResultOrBuilder getExperimentArmResultOrBuilder() { + if (responseCase_ == 82) { + return (com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentArmResult.getDefaultInstance(); + } + public static final int EXTENSION_FEED_ITEM_RESULT_FIELD_NUMBER = 36; /** *
@@ -4725,6 +4843,12 @@ public void writeTo(com.google.protobuf.CodedOutputStream output)
     if (responseCase_ == 80) {
       output.writeMessage(80, (com.google.ads.googleads.v11.services.MutateAudienceResult) response_);
     }
+    if (responseCase_ == 81) {
+      output.writeMessage(81, (com.google.ads.googleads.v11.services.MutateExperimentResult) response_);
+    }
+    if (responseCase_ == 82) {
+      output.writeMessage(82, (com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_);
+    }
     unknownFields.writeTo(output);
   }
 
@@ -5030,6 +5154,14 @@ public int getSerializedSize() {
       size += com.google.protobuf.CodedOutputStream
         .computeMessageSize(80, (com.google.ads.googleads.v11.services.MutateAudienceResult) response_);
     }
+    if (responseCase_ == 81) {
+      size += com.google.protobuf.CodedOutputStream
+        .computeMessageSize(81, (com.google.ads.googleads.v11.services.MutateExperimentResult) response_);
+    }
+    if (responseCase_ == 82) {
+      size += com.google.protobuf.CodedOutputStream
+        .computeMessageSize(82, (com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_);
+    }
     size += unknownFields.getSerializedSize();
     memoizedSize = size;
     return size;
@@ -5267,6 +5399,14 @@ public boolean equals(final java.lang.Object obj) {
         if (!getCustomizerAttributeResult()
             .equals(other.getCustomizerAttributeResult())) return false;
         break;
+      case 81:
+        if (!getExperimentResult()
+            .equals(other.getExperimentResult())) return false;
+        break;
+      case 82:
+        if (!getExperimentArmResult()
+            .equals(other.getExperimentArmResult())) return false;
+        break;
       case 36:
         if (!getExtensionFeedItemResult()
             .equals(other.getExtensionFeedItemResult())) return false;
@@ -5578,6 +5718,14 @@ public int hashCode() {
         hash = (37 * hash) + CUSTOMIZER_ATTRIBUTE_RESULT_FIELD_NUMBER;
         hash = (53 * hash) + getCustomizerAttributeResult().hashCode();
         break;
+      case 81:
+        hash = (37 * hash) + EXPERIMENT_RESULT_FIELD_NUMBER;
+        hash = (53 * hash) + getExperimentResult().hashCode();
+        break;
+      case 82:
+        hash = (37 * hash) + EXPERIMENT_ARM_RESULT_FIELD_NUMBER;
+        hash = (53 * hash) + getExperimentArmResult().hashCode();
+        break;
       case 36:
         hash = (37 * hash) + EXTENSION_FEED_ITEM_RESULT_FIELD_NUMBER;
         hash = (53 * hash) + getExtensionFeedItemResult().hashCode();
@@ -6207,6 +6355,20 @@ public com.google.ads.googleads.v11.services.MutateOperationResponse buildPartia
           result.response_ = customizerAttributeResultBuilder_.build();
         }
       }
+      if (responseCase_ == 81) {
+        if (experimentResultBuilder_ == null) {
+          result.response_ = response_;
+        } else {
+          result.response_ = experimentResultBuilder_.build();
+        }
+      }
+      if (responseCase_ == 82) {
+        if (experimentArmResultBuilder_ == null) {
+          result.response_ = response_;
+        } else {
+          result.response_ = experimentArmResultBuilder_.build();
+        }
+      }
       if (responseCase_ == 36) {
         if (extensionFeedItemResultBuilder_ == null) {
           result.response_ = response_;
@@ -6610,6 +6772,14 @@ public Builder mergeFrom(com.google.ads.googleads.v11.services.MutateOperationRe
           mergeCustomizerAttributeResult(other.getCustomizerAttributeResult());
           break;
         }
+        case EXPERIMENT_RESULT: {
+          mergeExperimentResult(other.getExperimentResult());
+          break;
+        }
+        case EXPERIMENT_ARM_RESULT: {
+          mergeExperimentArmResult(other.getExperimentArmResult());
+          break;
+        }
         case EXTENSION_FEED_ITEM_RESULT: {
           mergeExtensionFeedItemResult(other.getExtensionFeedItemResult());
           break;
@@ -16524,6 +16694,362 @@ public com.google.ads.googleads.v11.services.MutateCustomizerAttributeResultOrBu
       return customizerAttributeResultBuilder_;
     }
 
+    private com.google.protobuf.SingleFieldBuilderV3<
+        com.google.ads.googleads.v11.services.MutateExperimentResult, com.google.ads.googleads.v11.services.MutateExperimentResult.Builder, com.google.ads.googleads.v11.services.MutateExperimentResultOrBuilder> experimentResultBuilder_;
+    /**
+     * 
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + * @return Whether the experimentResult field is set. + */ + @java.lang.Override + public boolean hasExperimentResult() { + return responseCase_ == 81; + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + * @return The experimentResult. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentResult getExperimentResult() { + if (experimentResultBuilder_ == null) { + if (responseCase_ == 81) { + return (com.google.ads.googleads.v11.services.MutateExperimentResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentResult.getDefaultInstance(); + } else { + if (responseCase_ == 81) { + return experimentResultBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.services.MutateExperimentResult.getDefaultInstance(); + } + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + public Builder setExperimentResult(com.google.ads.googleads.v11.services.MutateExperimentResult value) { + if (experimentResultBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + response_ = value; + onChanged(); + } else { + experimentResultBuilder_.setMessage(value); + } + responseCase_ = 81; + return this; + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + public Builder setExperimentResult( + com.google.ads.googleads.v11.services.MutateExperimentResult.Builder builderForValue) { + if (experimentResultBuilder_ == null) { + response_ = builderForValue.build(); + onChanged(); + } else { + experimentResultBuilder_.setMessage(builderForValue.build()); + } + responseCase_ = 81; + return this; + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + public Builder mergeExperimentResult(com.google.ads.googleads.v11.services.MutateExperimentResult value) { + if (experimentResultBuilder_ == null) { + if (responseCase_ == 81 && + response_ != com.google.ads.googleads.v11.services.MutateExperimentResult.getDefaultInstance()) { + response_ = com.google.ads.googleads.v11.services.MutateExperimentResult.newBuilder((com.google.ads.googleads.v11.services.MutateExperimentResult) response_) + .mergeFrom(value).buildPartial(); + } else { + response_ = value; + } + onChanged(); + } else { + if (responseCase_ == 81) { + experimentResultBuilder_.mergeFrom(value); + } else { + experimentResultBuilder_.setMessage(value); + } + } + responseCase_ = 81; + return this; + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + public Builder clearExperimentResult() { + if (experimentResultBuilder_ == null) { + if (responseCase_ == 81) { + responseCase_ = 0; + response_ = null; + onChanged(); + } + } else { + if (responseCase_ == 81) { + responseCase_ = 0; + response_ = null; + } + experimentResultBuilder_.clear(); + } + return this; + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + public com.google.ads.googleads.v11.services.MutateExperimentResult.Builder getExperimentResultBuilder() { + return getExperimentResultFieldBuilder().getBuilder(); + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentResultOrBuilder getExperimentResultOrBuilder() { + if ((responseCase_ == 81) && (experimentResultBuilder_ != null)) { + return experimentResultBuilder_.getMessageOrBuilder(); + } else { + if (responseCase_ == 81) { + return (com.google.ads.googleads.v11.services.MutateExperimentResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentResult.getDefaultInstance(); + } + } + /** + *
+     * The result for the experiment mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.MutateExperimentResult, com.google.ads.googleads.v11.services.MutateExperimentResult.Builder, com.google.ads.googleads.v11.services.MutateExperimentResultOrBuilder> + getExperimentResultFieldBuilder() { + if (experimentResultBuilder_ == null) { + if (!(responseCase_ == 81)) { + response_ = com.google.ads.googleads.v11.services.MutateExperimentResult.getDefaultInstance(); + } + experimentResultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.MutateExperimentResult, com.google.ads.googleads.v11.services.MutateExperimentResult.Builder, com.google.ads.googleads.v11.services.MutateExperimentResultOrBuilder>( + (com.google.ads.googleads.v11.services.MutateExperimentResult) response_, + getParentForChildren(), + isClean()); + response_ = null; + } + responseCase_ = 81; + onChanged();; + return experimentResultBuilder_; + } + + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.MutateExperimentArmResult, com.google.ads.googleads.v11.services.MutateExperimentArmResult.Builder, com.google.ads.googleads.v11.services.MutateExperimentArmResultOrBuilder> experimentArmResultBuilder_; + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + * @return Whether the experimentArmResult field is set. + */ + @java.lang.Override + public boolean hasExperimentArmResult() { + return responseCase_ == 82; + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + * @return The experimentArmResult. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentArmResult getExperimentArmResult() { + if (experimentArmResultBuilder_ == null) { + if (responseCase_ == 82) { + return (com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentArmResult.getDefaultInstance(); + } else { + if (responseCase_ == 82) { + return experimentArmResultBuilder_.getMessage(); + } + return com.google.ads.googleads.v11.services.MutateExperimentArmResult.getDefaultInstance(); + } + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + public Builder setExperimentArmResult(com.google.ads.googleads.v11.services.MutateExperimentArmResult value) { + if (experimentArmResultBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + response_ = value; + onChanged(); + } else { + experimentArmResultBuilder_.setMessage(value); + } + responseCase_ = 82; + return this; + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + public Builder setExperimentArmResult( + com.google.ads.googleads.v11.services.MutateExperimentArmResult.Builder builderForValue) { + if (experimentArmResultBuilder_ == null) { + response_ = builderForValue.build(); + onChanged(); + } else { + experimentArmResultBuilder_.setMessage(builderForValue.build()); + } + responseCase_ = 82; + return this; + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + public Builder mergeExperimentArmResult(com.google.ads.googleads.v11.services.MutateExperimentArmResult value) { + if (experimentArmResultBuilder_ == null) { + if (responseCase_ == 82 && + response_ != com.google.ads.googleads.v11.services.MutateExperimentArmResult.getDefaultInstance()) { + response_ = com.google.ads.googleads.v11.services.MutateExperimentArmResult.newBuilder((com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_) + .mergeFrom(value).buildPartial(); + } else { + response_ = value; + } + onChanged(); + } else { + if (responseCase_ == 82) { + experimentArmResultBuilder_.mergeFrom(value); + } else { + experimentArmResultBuilder_.setMessage(value); + } + } + responseCase_ = 82; + return this; + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + public Builder clearExperimentArmResult() { + if (experimentArmResultBuilder_ == null) { + if (responseCase_ == 82) { + responseCase_ = 0; + response_ = null; + onChanged(); + } + } else { + if (responseCase_ == 82) { + responseCase_ = 0; + response_ = null; + } + experimentArmResultBuilder_.clear(); + } + return this; + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + public com.google.ads.googleads.v11.services.MutateExperimentArmResult.Builder getExperimentArmResultBuilder() { + return getExperimentArmResultFieldBuilder().getBuilder(); + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.MutateExperimentArmResultOrBuilder getExperimentArmResultOrBuilder() { + if ((responseCase_ == 82) && (experimentArmResultBuilder_ != null)) { + return experimentArmResultBuilder_.getMessageOrBuilder(); + } else { + if (responseCase_ == 82) { + return (com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_; + } + return com.google.ads.googleads.v11.services.MutateExperimentArmResult.getDefaultInstance(); + } + } + /** + *
+     * The result for the experiment arm mutate.
+     * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.MutateExperimentArmResult, com.google.ads.googleads.v11.services.MutateExperimentArmResult.Builder, com.google.ads.googleads.v11.services.MutateExperimentArmResultOrBuilder> + getExperimentArmResultFieldBuilder() { + if (experimentArmResultBuilder_ == null) { + if (!(responseCase_ == 82)) { + response_ = com.google.ads.googleads.v11.services.MutateExperimentArmResult.getDefaultInstance(); + } + experimentArmResultBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.MutateExperimentArmResult, com.google.ads.googleads.v11.services.MutateExperimentArmResult.Builder, com.google.ads.googleads.v11.services.MutateExperimentArmResultOrBuilder>( + (com.google.ads.googleads.v11.services.MutateExperimentArmResult) response_, + getParentForChildren(), + isClean()); + response_ = null; + } + responseCase_ = 82; + onChanged();; + return experimentArmResultBuilder_; + } + private com.google.protobuf.SingleFieldBuilderV3< com.google.ads.googleads.v11.services.MutateExtensionFeedItemResult, com.google.ads.googleads.v11.services.MutateExtensionFeedItemResult.Builder, com.google.ads.googleads.v11.services.MutateExtensionFeedItemResultOrBuilder> extensionFeedItemResultBuilder_; /** diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponseOrBuilder.java index 1ac8a9a6e3..01c2c7a2a2 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateOperationResponseOrBuilder.java @@ -1492,6 +1492,60 @@ public interface MutateOperationResponseOrBuilder extends */ com.google.ads.googleads.v11.services.MutateCustomizerAttributeResultOrBuilder getCustomizerAttributeResultOrBuilder(); + /** + *
+   * The result for the experiment mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + * @return Whether the experimentResult field is set. + */ + boolean hasExperimentResult(); + /** + *
+   * The result for the experiment mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + * @return The experimentResult. + */ + com.google.ads.googleads.v11.services.MutateExperimentResult getExperimentResult(); + /** + *
+   * The result for the experiment mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentResult experiment_result = 81; + */ + com.google.ads.googleads.v11.services.MutateExperimentResultOrBuilder getExperimentResultOrBuilder(); + + /** + *
+   * The result for the experiment arm mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + * @return Whether the experimentArmResult field is set. + */ + boolean hasExperimentArmResult(); + /** + *
+   * The result for the experiment arm mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + * @return The experimentArmResult. + */ + com.google.ads.googleads.v11.services.MutateExperimentArmResult getExperimentArmResult(); + /** + *
+   * The result for the experiment arm mutate.
+   * 
+ * + * .google.ads.googleads.v11.services.MutateExperimentArmResult experiment_arm_result = 82; + */ + com.google.ads.googleads.v11.services.MutateExperimentArmResultOrBuilder getExperimentArmResultOrBuilder(); + /** *
    * The result for the extension feed item mutate.
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponse.java
index 85f20d74b5..0381fd6aff 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponse.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponse.java
@@ -119,8 +119,8 @@ private MutateRemarketingActionsResponse(
    * 
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponseOrBuilder.java index eb7936f3eb..d28b03b4f8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateRemarketingActionsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateRemarketingActionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateRemarketingActionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateRemarketingActionsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponse.java index b346e523a8..24ec4cadde 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponse.java @@ -119,8 +119,8 @@ private MutateSharedCriteriaResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponseOrBuilder.java index 89d8f2c1fd..63bb4d9ced 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedCriteriaResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateSharedCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateSharedCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateSharedCriteriaResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponse.java index 99d5636b3d..3e2611ab73 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponse.java @@ -119,8 +119,8 @@ private MutateSharedSetsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponseOrBuilder.java index afcdec8b7e..c56e48c274 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSharedSetsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateSharedSetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateSharedSetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateSharedSetsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponse.java index c85cd43e1a..05beca4de4 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponse.java @@ -119,8 +119,8 @@ private MutateSmartCampaignSettingsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponseOrBuilder.java index c3c86689fb..bcb1ad0e09 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateSmartCampaignSettingsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateSmartCampaignSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -23,8 +23,8 @@ public interface MutateSmartCampaignSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; @@ -35,8 +35,8 @@ public interface MutateSmartCampaignSettingsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponse.java index 2e4a651691..df13a16db8 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponse.java @@ -119,8 +119,8 @@ private MutateUserListsResponse( *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -134,8 +134,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -149,8 +149,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -603,8 +603,8 @@ public Builder mergeFrom( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -617,8 +617,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -635,8 +635,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -658,8 +658,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -679,8 +679,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -704,8 +704,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -725,8 +725,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -740,8 +740,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; @@ -758,8 +758,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to operation failures in the partial failure mode.
      * Returned only when partial_failure = true and all errors occur inside the
-     * operations. If any errors occur outside the operations (e.g. auth errors),
-     * we return an RPC level error.
+     * operations. If any errors occur outside the operations (for example, auth
+     * errors), we return an RPC level error.
      * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponseOrBuilder.java index 98b3817687..2427adf44d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/MutateUserListsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface MutateUserListsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -23,8 +23,8 @@ public interface MutateUserListsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; @@ -35,8 +35,8 @@ public interface MutateUserListsResponseOrBuilder extends *
    * Errors that pertain to operation failures in the partial failure mode.
    * Returned only when partial_failure = true and all errors occur inside the
-   * operations. If any errors occur outside the operations (e.g. auth errors),
-   * we return an RPC level error.
+   * operations. If any errors occur outside the operations (for example, auth
+   * errors), we return an RPC level error.
    * 
* * .google.rpc.Status partial_failure_error = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargeting.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargeting.java index b49a42a69a..fb4099b2e3 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargeting.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargeting.java @@ -24,6 +24,7 @@ private PlannableTargeting() { genders_ = java.util.Collections.emptyList(); devices_ = java.util.Collections.emptyList(); networks_ = java.util.Collections.emptyList(); + youtubeSelectLineups_ = java.util.Collections.emptyList(); } @java.lang.Override @@ -121,6 +122,15 @@ private PlannableTargeting( input.popLimit(oldLimit); break; } + case 42: { + if (!((mutable_bitField0_ & 0x00000010) != 0)) { + youtubeSelectLineups_ = new java.util.ArrayList(); + mutable_bitField0_ |= 0x00000010; + } + youtubeSelectLineups_.add( + input.readMessage(com.google.ads.googleads.v11.services.YouTubeSelectLineUp.parser(), extensionRegistry)); + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -150,6 +160,9 @@ private PlannableTargeting( if (((mutable_bitField0_ & 0x00000008) != 0)) { networks_ = java.util.Collections.unmodifiableList(networks_); } + if (((mutable_bitField0_ & 0x00000010) != 0)) { + youtubeSelectLineups_ = java.util.Collections.unmodifiableList(youtubeSelectLineups_); + } this.unknownFields = unknownFields.build(); makeExtensionsImmutable(); } @@ -468,6 +481,66 @@ public int getNetworksValue(int index) { } private int networksMemoizedSerializedSize; + public static final int YOUTUBE_SELECT_LINEUPS_FIELD_NUMBER = 5; + private java.util.List youtubeSelectLineups_; + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + @java.lang.Override + public java.util.List getYoutubeSelectLineupsList() { + return youtubeSelectLineups_; + } + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + @java.lang.Override + public java.util.List + getYoutubeSelectLineupsOrBuilderList() { + return youtubeSelectLineups_; + } + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + @java.lang.Override + public int getYoutubeSelectLineupsCount() { + return youtubeSelectLineups_.size(); + } + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp getYoutubeSelectLineups(int index) { + return youtubeSelectLineups_.get(index); + } + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectLineUpOrBuilder getYoutubeSelectLineupsOrBuilder( + int index) { + return youtubeSelectLineups_.get(index); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -503,6 +576,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) for (int i = 0; i < networks_.size(); i++) { output.writeEnumNoTag(networks_.get(i)); } + for (int i = 0; i < youtubeSelectLineups_.size(); i++) { + output.writeMessage(5, youtubeSelectLineups_.get(i)); + } unknownFields.writeTo(output); } @@ -544,6 +620,10 @@ public int getSerializedSize() { .computeUInt32SizeNoTag(dataSize); }networksMemoizedSerializedSize = dataSize; } + for (int i = 0; i < youtubeSelectLineups_.size(); i++) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, youtubeSelectLineups_.get(i)); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -565,6 +645,8 @@ public boolean equals(final java.lang.Object obj) { if (!getDevicesList() .equals(other.getDevicesList())) return false; if (!networks_.equals(other.networks_)) return false; + if (!getYoutubeSelectLineupsList() + .equals(other.getYoutubeSelectLineupsList())) return false; if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -592,6 +674,10 @@ public int hashCode() { hash = (37 * hash) + NETWORKS_FIELD_NUMBER; hash = (53 * hash) + networks_.hashCode(); } + if (getYoutubeSelectLineupsCount() > 0) { + hash = (37 * hash) + YOUTUBE_SELECT_LINEUPS_FIELD_NUMBER; + hash = (53 * hash) + getYoutubeSelectLineupsList().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -726,6 +812,7 @@ private void maybeForceBuilderInitialization() { .alwaysUseFieldBuilders) { getGendersFieldBuilder(); getDevicesFieldBuilder(); + getYoutubeSelectLineupsFieldBuilder(); } } @java.lang.Override @@ -747,6 +834,12 @@ public Builder clear() { } networks_ = java.util.Collections.emptyList(); bitField0_ = (bitField0_ & ~0x00000008); + if (youtubeSelectLineupsBuilder_ == null) { + youtubeSelectLineups_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000010); + } else { + youtubeSelectLineupsBuilder_.clear(); + } return this; } @@ -802,6 +895,15 @@ public com.google.ads.googleads.v11.services.PlannableTargeting buildPartial() { bitField0_ = (bitField0_ & ~0x00000008); } result.networks_ = networks_; + if (youtubeSelectLineupsBuilder_ == null) { + if (((bitField0_ & 0x00000010) != 0)) { + youtubeSelectLineups_ = java.util.Collections.unmodifiableList(youtubeSelectLineups_); + bitField0_ = (bitField0_ & ~0x00000010); + } + result.youtubeSelectLineups_ = youtubeSelectLineups_; + } else { + result.youtubeSelectLineups_ = youtubeSelectLineupsBuilder_.build(); + } onBuilt(); return result; } @@ -922,6 +1024,32 @@ public Builder mergeFrom(com.google.ads.googleads.v11.services.PlannableTargetin } onChanged(); } + if (youtubeSelectLineupsBuilder_ == null) { + if (!other.youtubeSelectLineups_.isEmpty()) { + if (youtubeSelectLineups_.isEmpty()) { + youtubeSelectLineups_ = other.youtubeSelectLineups_; + bitField0_ = (bitField0_ & ~0x00000010); + } else { + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.addAll(other.youtubeSelectLineups_); + } + onChanged(); + } + } else { + if (!other.youtubeSelectLineups_.isEmpty()) { + if (youtubeSelectLineupsBuilder_.isEmpty()) { + youtubeSelectLineupsBuilder_.dispose(); + youtubeSelectLineupsBuilder_ = null; + youtubeSelectLineups_ = other.youtubeSelectLineups_; + bitField0_ = (bitField0_ & ~0x00000010); + youtubeSelectLineupsBuilder_ = + com.google.protobuf.GeneratedMessageV3.alwaysUseFieldBuilders ? + getYoutubeSelectLineupsFieldBuilder() : null; + } else { + youtubeSelectLineupsBuilder_.addAllMessages(other.youtubeSelectLineups_); + } + } + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1115,8 +1243,8 @@ public int getAgeRangesValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange age_ranges = 1; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of ageRanges at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for ageRanges to set. * @return This builder for chaining. */ public Builder setAgeRangesValue( @@ -1985,8 +2113,8 @@ public int getNetworksValue(int index) { *
* * repeated .google.ads.googleads.v11.enums.ReachPlanNetworkEnum.ReachPlanNetwork networks = 4; - * @param index The index of the value to return. - * @return The enum numeric value on the wire of networks at the given index. + * @param index The index to set the value at. + * @param value The enum numeric value on the wire for networks to set. * @return This builder for chaining. */ public Builder setNetworksValue( @@ -2029,6 +2157,318 @@ public Builder addAllNetworksValue( onChanged(); return this; } + + private java.util.List youtubeSelectLineups_ = + java.util.Collections.emptyList(); + private void ensureYoutubeSelectLineupsIsMutable() { + if (!((bitField0_ & 0x00000010) != 0)) { + youtubeSelectLineups_ = new java.util.ArrayList(youtubeSelectLineups_); + bitField0_ |= 0x00000010; + } + } + + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeSelectLineUp, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder, com.google.ads.googleads.v11.services.YouTubeSelectLineUpOrBuilder> youtubeSelectLineupsBuilder_; + + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public java.util.List getYoutubeSelectLineupsList() { + if (youtubeSelectLineupsBuilder_ == null) { + return java.util.Collections.unmodifiableList(youtubeSelectLineups_); + } else { + return youtubeSelectLineupsBuilder_.getMessageList(); + } + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public int getYoutubeSelectLineupsCount() { + if (youtubeSelectLineupsBuilder_ == null) { + return youtubeSelectLineups_.size(); + } else { + return youtubeSelectLineupsBuilder_.getCount(); + } + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp getYoutubeSelectLineups(int index) { + if (youtubeSelectLineupsBuilder_ == null) { + return youtubeSelectLineups_.get(index); + } else { + return youtubeSelectLineupsBuilder_.getMessage(index); + } + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder setYoutubeSelectLineups( + int index, com.google.ads.googleads.v11.services.YouTubeSelectLineUp value) { + if (youtubeSelectLineupsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.set(index, value); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.setMessage(index, value); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder setYoutubeSelectLineups( + int index, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder builderForValue) { + if (youtubeSelectLineupsBuilder_ == null) { + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.set(index, builderForValue.build()); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.setMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder addYoutubeSelectLineups(com.google.ads.googleads.v11.services.YouTubeSelectLineUp value) { + if (youtubeSelectLineupsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.add(value); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.addMessage(value); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder addYoutubeSelectLineups( + int index, com.google.ads.googleads.v11.services.YouTubeSelectLineUp value) { + if (youtubeSelectLineupsBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.add(index, value); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.addMessage(index, value); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder addYoutubeSelectLineups( + com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder builderForValue) { + if (youtubeSelectLineupsBuilder_ == null) { + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.add(builderForValue.build()); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.addMessage(builderForValue.build()); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder addYoutubeSelectLineups( + int index, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder builderForValue) { + if (youtubeSelectLineupsBuilder_ == null) { + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.add(index, builderForValue.build()); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.addMessage(index, builderForValue.build()); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder addAllYoutubeSelectLineups( + java.lang.Iterable values) { + if (youtubeSelectLineupsBuilder_ == null) { + ensureYoutubeSelectLineupsIsMutable(); + com.google.protobuf.AbstractMessageLite.Builder.addAll( + values, youtubeSelectLineups_); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.addAllMessages(values); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder clearYoutubeSelectLineups() { + if (youtubeSelectLineupsBuilder_ == null) { + youtubeSelectLineups_ = java.util.Collections.emptyList(); + bitField0_ = (bitField0_ & ~0x00000010); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.clear(); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public Builder removeYoutubeSelectLineups(int index) { + if (youtubeSelectLineupsBuilder_ == null) { + ensureYoutubeSelectLineupsIsMutable(); + youtubeSelectLineups_.remove(index); + onChanged(); + } else { + youtubeSelectLineupsBuilder_.remove(index); + } + return this; + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder getYoutubeSelectLineupsBuilder( + int index) { + return getYoutubeSelectLineupsFieldBuilder().getBuilder(index); + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public com.google.ads.googleads.v11.services.YouTubeSelectLineUpOrBuilder getYoutubeSelectLineupsOrBuilder( + int index) { + if (youtubeSelectLineupsBuilder_ == null) { + return youtubeSelectLineups_.get(index); } else { + return youtubeSelectLineupsBuilder_.getMessageOrBuilder(index); + } + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public java.util.List + getYoutubeSelectLineupsOrBuilderList() { + if (youtubeSelectLineupsBuilder_ != null) { + return youtubeSelectLineupsBuilder_.getMessageOrBuilderList(); + } else { + return java.util.Collections.unmodifiableList(youtubeSelectLineups_); + } + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder addYoutubeSelectLineupsBuilder() { + return getYoutubeSelectLineupsFieldBuilder().addBuilder( + com.google.ads.googleads.v11.services.YouTubeSelectLineUp.getDefaultInstance()); + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder addYoutubeSelectLineupsBuilder( + int index) { + return getYoutubeSelectLineupsFieldBuilder().addBuilder( + index, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.getDefaultInstance()); + } + /** + *
+     * Targetable YouTube Select Lineups for the ad product.
+     * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + public java.util.List + getYoutubeSelectLineupsBuilderList() { + return getYoutubeSelectLineupsFieldBuilder().getBuilderList(); + } + private com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeSelectLineUp, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder, com.google.ads.googleads.v11.services.YouTubeSelectLineUpOrBuilder> + getYoutubeSelectLineupsFieldBuilder() { + if (youtubeSelectLineupsBuilder_ == null) { + youtubeSelectLineupsBuilder_ = new com.google.protobuf.RepeatedFieldBuilderV3< + com.google.ads.googleads.v11.services.YouTubeSelectLineUp, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder, com.google.ads.googleads.v11.services.YouTubeSelectLineUpOrBuilder>( + youtubeSelectLineups_, + ((bitField0_ & 0x00000010) != 0), + getParentForChildren(), + isClean()); + youtubeSelectLineups_ = null; + } + return youtubeSelectLineupsBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargetingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargetingOrBuilder.java index 2987c16984..65b6eca23a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargetingOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannableTargetingOrBuilder.java @@ -217,4 +217,48 @@ com.google.ads.googleads.v11.common.DeviceInfoOrBuilder getDevicesOrBuilder( * @return The enum numeric value on the wire of networks at the given index. */ int getNetworksValue(int index); + + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + java.util.List + getYoutubeSelectLineupsList(); + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + com.google.ads.googleads.v11.services.YouTubeSelectLineUp getYoutubeSelectLineups(int index); + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + int getYoutubeSelectLineupsCount(); + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + java.util.List + getYoutubeSelectLineupsOrBuilderList(); + /** + *
+   * Targetable YouTube Select Lineups for the ad product.
+   * 
+ * + * repeated .google.ads.googleads.v11.services.YouTubeSelectLineUp youtube_select_lineups = 5; + */ + com.google.ads.googleads.v11.services.YouTubeSelectLineUpOrBuilder getYoutubeSelectLineupsOrBuilder( + int index); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProduct.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProduct.java index ae7166185a..f7406fc093 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProduct.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProduct.java @@ -65,6 +65,19 @@ private PlannedProduct( budgetMicros_ = input.readInt64(); break; } + case 42: { + com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder subBuilder = null; + if (advancedProductTargeting_ != null) { + subBuilder = advancedProductTargeting_.toBuilder(); + } + advancedProductTargeting_ = input.readMessage(com.google.ads.googleads.v11.services.AdvancedProductTargeting.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(advancedProductTargeting_); + advancedProductTargeting_ = subBuilder.buildPartial(); + } + + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -198,6 +211,50 @@ public long getBudgetMicros() { return budgetMicros_; } + public static final int ADVANCED_PRODUCT_TARGETING_FIELD_NUMBER = 5; + private com.google.ads.googleads.v11.services.AdvancedProductTargeting advancedProductTargeting_; + /** + *
+   * Targeting settings for the selected product.
+   * To list the available targeting for each product use
+   * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+   * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + * @return Whether the advancedProductTargeting field is set. + */ + @java.lang.Override + public boolean hasAdvancedProductTargeting() { + return advancedProductTargeting_ != null; + } + /** + *
+   * Targeting settings for the selected product.
+   * To list the available targeting for each product use
+   * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+   * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + * @return The advancedProductTargeting. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AdvancedProductTargeting getAdvancedProductTargeting() { + return advancedProductTargeting_ == null ? com.google.ads.googleads.v11.services.AdvancedProductTargeting.getDefaultInstance() : advancedProductTargeting_; + } + /** + *
+   * Targeting settings for the selected product.
+   * To list the available targeting for each product use
+   * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+   * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AdvancedProductTargetingOrBuilder getAdvancedProductTargetingOrBuilder() { + return getAdvancedProductTargeting(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -218,6 +275,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (((bitField0_ & 0x00000002) != 0)) { output.writeInt64(4, budgetMicros_); } + if (advancedProductTargeting_ != null) { + output.writeMessage(5, getAdvancedProductTargeting()); + } unknownFields.writeTo(output); } @@ -234,6 +294,10 @@ public int getSerializedSize() { size += com.google.protobuf.CodedOutputStream .computeInt64Size(4, budgetMicros_); } + if (advancedProductTargeting_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(5, getAdvancedProductTargeting()); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -259,6 +323,11 @@ public boolean equals(final java.lang.Object obj) { if (getBudgetMicros() != other.getBudgetMicros()) return false; } + if (hasAdvancedProductTargeting() != other.hasAdvancedProductTargeting()) return false; + if (hasAdvancedProductTargeting()) { + if (!getAdvancedProductTargeting() + .equals(other.getAdvancedProductTargeting())) return false; + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -279,6 +348,10 @@ public int hashCode() { hash = (53 * hash) + com.google.protobuf.Internal.hashLong( getBudgetMicros()); } + if (hasAdvancedProductTargeting()) { + hash = (37 * hash) + ADVANCED_PRODUCT_TARGETING_FIELD_NUMBER; + hash = (53 * hash) + getAdvancedProductTargeting().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -420,6 +493,12 @@ public Builder clear() { bitField0_ = (bitField0_ & ~0x00000001); budgetMicros_ = 0L; bitField0_ = (bitField0_ & ~0x00000002); + if (advancedProductTargetingBuilder_ == null) { + advancedProductTargeting_ = null; + } else { + advancedProductTargeting_ = null; + advancedProductTargetingBuilder_ = null; + } return this; } @@ -456,6 +535,11 @@ public com.google.ads.googleads.v11.services.PlannedProduct buildPartial() { result.budgetMicros_ = budgetMicros_; to_bitField0_ |= 0x00000002; } + if (advancedProductTargetingBuilder_ == null) { + result.advancedProductTargeting_ = advancedProductTargeting_; + } else { + result.advancedProductTargeting_ = advancedProductTargetingBuilder_.build(); + } result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -513,6 +597,9 @@ public Builder mergeFrom(com.google.ads.googleads.v11.services.PlannedProduct ot if (other.hasBudgetMicros()) { setBudgetMicros(other.getBudgetMicros()); } + if (other.hasAdvancedProductTargeting()) { + mergeAdvancedProductTargeting(other.getAdvancedProductTargeting()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -730,6 +817,179 @@ public Builder clearBudgetMicros() { onChanged(); return this; } + + private com.google.ads.googleads.v11.services.AdvancedProductTargeting advancedProductTargeting_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AdvancedProductTargeting, com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder, com.google.ads.googleads.v11.services.AdvancedProductTargetingOrBuilder> advancedProductTargetingBuilder_; + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + * @return Whether the advancedProductTargeting field is set. + */ + public boolean hasAdvancedProductTargeting() { + return advancedProductTargetingBuilder_ != null || advancedProductTargeting_ != null; + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + * @return The advancedProductTargeting. + */ + public com.google.ads.googleads.v11.services.AdvancedProductTargeting getAdvancedProductTargeting() { + if (advancedProductTargetingBuilder_ == null) { + return advancedProductTargeting_ == null ? com.google.ads.googleads.v11.services.AdvancedProductTargeting.getDefaultInstance() : advancedProductTargeting_; + } else { + return advancedProductTargetingBuilder_.getMessage(); + } + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + public Builder setAdvancedProductTargeting(com.google.ads.googleads.v11.services.AdvancedProductTargeting value) { + if (advancedProductTargetingBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + advancedProductTargeting_ = value; + onChanged(); + } else { + advancedProductTargetingBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + public Builder setAdvancedProductTargeting( + com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder builderForValue) { + if (advancedProductTargetingBuilder_ == null) { + advancedProductTargeting_ = builderForValue.build(); + onChanged(); + } else { + advancedProductTargetingBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + public Builder mergeAdvancedProductTargeting(com.google.ads.googleads.v11.services.AdvancedProductTargeting value) { + if (advancedProductTargetingBuilder_ == null) { + if (advancedProductTargeting_ != null) { + advancedProductTargeting_ = + com.google.ads.googleads.v11.services.AdvancedProductTargeting.newBuilder(advancedProductTargeting_).mergeFrom(value).buildPartial(); + } else { + advancedProductTargeting_ = value; + } + onChanged(); + } else { + advancedProductTargetingBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + public Builder clearAdvancedProductTargeting() { + if (advancedProductTargetingBuilder_ == null) { + advancedProductTargeting_ = null; + onChanged(); + } else { + advancedProductTargeting_ = null; + advancedProductTargetingBuilder_ = null; + } + + return this; + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + public com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder getAdvancedProductTargetingBuilder() { + + onChanged(); + return getAdvancedProductTargetingFieldBuilder().getBuilder(); + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + public com.google.ads.googleads.v11.services.AdvancedProductTargetingOrBuilder getAdvancedProductTargetingOrBuilder() { + if (advancedProductTargetingBuilder_ != null) { + return advancedProductTargetingBuilder_.getMessageOrBuilder(); + } else { + return advancedProductTargeting_ == null ? + com.google.ads.googleads.v11.services.AdvancedProductTargeting.getDefaultInstance() : advancedProductTargeting_; + } + } + /** + *
+     * Targeting settings for the selected product.
+     * To list the available targeting for each product use
+     * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+     * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AdvancedProductTargeting, com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder, com.google.ads.googleads.v11.services.AdvancedProductTargetingOrBuilder> + getAdvancedProductTargetingFieldBuilder() { + if (advancedProductTargetingBuilder_ == null) { + advancedProductTargetingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AdvancedProductTargeting, com.google.ads.googleads.v11.services.AdvancedProductTargeting.Builder, com.google.ads.googleads.v11.services.AdvancedProductTargetingOrBuilder>( + getAdvancedProductTargeting(), + getParentForChildren(), + isClean()); + advancedProductTargeting_ = null; + } + return advancedProductTargetingBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProductOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProductOrBuilder.java index d6fd83ffc4..7357859592 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProductOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/PlannedProductOrBuilder.java @@ -67,4 +67,37 @@ public interface PlannedProductOrBuilder extends * @return The budgetMicros. */ long getBudgetMicros(); + + /** + *
+   * Targeting settings for the selected product.
+   * To list the available targeting for each product use
+   * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+   * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + * @return Whether the advancedProductTargeting field is set. + */ + boolean hasAdvancedProductTargeting(); + /** + *
+   * Targeting settings for the selected product.
+   * To list the available targeting for each product use
+   * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+   * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + * @return The advancedProductTargeting. + */ + com.google.ads.googleads.v11.services.AdvancedProductTargeting getAdvancedProductTargeting(); + /** + *
+   * Targeting settings for the selected product.
+   * To list the available targeting for each product use
+   * [ReachPlanService.ListPlannableProducts][google.ads.googleads.v11.services.ReachPlanService.ListPlannableProducts].
+   * 
+ * + * .google.ads.googleads.v11.services.AdvancedProductTargeting advanced_product_targeting = 5; + */ + com.google.ads.googleads.v11.services.AdvancedProductTargetingOrBuilder getAdvancedProductTargetingOrBuilder(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceClient.java index 206025c962..4cf5f9b154 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceClient.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceClient.java @@ -471,6 +471,7 @@ public final GenerateReachForecastResponse generateReachForecast( * .setTargeting(Targeting.newBuilder().build()) * .addAllPlannedProducts(new ArrayList()) * .setForecastMetricOptions(ForecastMetricOptions.newBuilder().build()) + * .setCustomerReachGroup("customerReachGroup123255626") * .build(); * GenerateReachForecastResponse response = * reachPlanServiceClient.generateReachForecast(request); @@ -511,6 +512,7 @@ public final GenerateReachForecastResponse generateReachForecast( * .setTargeting(Targeting.newBuilder().build()) * .addAllPlannedProducts(new ArrayList()) * .setForecastMetricOptions(ForecastMetricOptions.newBuilder().build()) + * .setCustomerReachGroup("customerReachGroup123255626") * .build(); * ApiFuture future = * reachPlanServiceClient.generateReachForecastCallable().futureCall(request); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceProto.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceProto.java index 290a1ae43b..a1773c3c31 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceProto.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/ReachPlanServiceProto.java @@ -144,6 +144,26 @@ public static void registerAllExtensions( static final com.google.protobuf.GeneratedMessageV3.FieldAccessorTable internal_static_google_ads_googleads_v11_services_ForecastMetricOptions_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_AudienceTargeting_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_AudienceTargeting_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_fieldAccessorTable; + static final com.google.protobuf.Descriptors.Descriptor + internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_descriptor; + static final + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_fieldAccessorTable; public static com.google.protobuf.Descriptors.FileDescriptor getDescriptor() { @@ -184,7 +204,7 @@ public static void registerAllExtensions( "\026plannable_product_name\030\003 \001(\t\022R\n\023plannab" + "le_targeting\030\002 \001(\01325.google.ads.googlead" + "s.v11.services.PlannableTargetingB\031\n\027_pl" + - "annable_product_code\"\306\002\n\022PlannableTarget" + + "annable_product_code\"\236\003\n\022PlannableTarget" + "ing\022[\n\nage_ranges\030\001 \003(\0162G.google.ads.goo" + "gleads.v11.enums.ReachPlanAgeRangeEnum.R" + "eachPlanAgeRange\022<\n\007genders\030\002 \003(\0132+.goog" + @@ -192,157 +212,174 @@ public static void registerAllExtensions( "\n\007devices\030\003 \003(\0132+.google.ads.googleads.v" + "11.common.DeviceInfo\022W\n\010networks\030\004 \003(\0162E" + ".google.ads.googleads.v11.enums.ReachPla" + - "nNetworkEnum.ReachPlanNetwork\"\333\001\n\036Genera" + - "teProductMixIdeasRequest\022\030\n\013customer_id\030" + - "\001 \001(\tB\003\340A\002\022\"\n\025plannable_location_id\030\006 \001(" + - "\tB\003\340A\002\022\032\n\rcurrency_code\030\007 \001(\tB\003\340A\002\022\032\n\rbu" + - "dget_micros\030\010 \001(\003B\003\340A\002\022C\n\013preferences\030\005 " + - "\001(\0132..google.ads.googleads.v11.services." + - "Preferences\"\273\002\n\013Preferences\022\031\n\014is_skippa" + - "ble\030\006 \001(\010H\000\210\001\001\022\036\n\021starts_with_sound\030\007 \001(" + - "\010H\001\210\001\001\022Z\n\tad_length\030\003 \001(\0162G.google.ads.g" + - "oogleads.v11.enums.ReachPlanAdLengthEnum" + - ".ReachPlanAdLength\022\035\n\020top_content_only\030\010" + - " \001(\010H\002\210\001\001\022!\n\024has_guaranteed_price\030\t \001(\010H" + - "\003\210\001\001B\017\n\r_is_skippableB\024\n\022_starts_with_so" + - "undB\023\n\021_top_content_onlyB\027\n\025_has_guarant" + - "eed_price\"s\n\037GenerateProductMixIdeasResp" + - "onse\022P\n\022product_allocation\030\001 \003(\01324.googl" + - "e.ads.googleads.v11.services.ProductAllo" + - "cation\"\201\001\n\021ProductAllocation\022#\n\026plannabl" + - "e_product_code\030\003 \001(\tH\000\210\001\001\022\032\n\rbudget_micr" + - "os\030\004 \001(\003H\001\210\001\001B\031\n\027_plannable_product_code" + - "B\020\n\016_budget_micros\"\200\006\n\034GenerateReachFore" + - "castRequest\022\030\n\013customer_id\030\001 \001(\tB\003\340A\002\022\032\n" + - "\rcurrency_code\030\t \001(\tH\000\210\001\001\022S\n\021campaign_du" + - "ration\030\003 \001(\01323.google.ads.googleads.v11." + - "services.CampaignDurationB\003\340A\002\022!\n\024cookie" + - "_frequency_cap\030\n \001(\005H\001\210\001\001\022U\n\034cookie_freq" + - "uency_cap_setting\030\010 \001(\0132/.google.ads.goo" + - "gleads.v11.services.FrequencyCap\022$\n\027min_" + - "effective_frequency\030\013 \001(\005H\002\210\001\001\022b\n\031effect" + - "ive_frequency_limit\030\014 \001(\0132:.google.ads.g" + - "oogleads.v11.services.EffectiveFrequency" + - "LimitH\003\210\001\001\022?\n\ttargeting\030\006 \001(\0132,.google.a" + - "ds.googleads.v11.services.Targeting\022P\n\020p" + - "lanned_products\030\007 \003(\01321.google.ads.googl" + - "eads.v11.services.PlannedProductB\003\340A\002\022Y\n" + - "\027forecast_metric_options\030\r \001(\01328.google." + - "ads.googleads.v11.services.ForecastMetri" + - "cOptionsB\020\n\016_currency_codeB\027\n\025_cookie_fr" + - "equency_capB\032\n\030_min_effective_frequencyB" + - "\034\n\032_effective_frequency_limit\"F\n\027Effecti" + - "veFrequencyLimit\022+\n#effective_frequency_" + - "breakdown_limit\030\001 \001(\005\"\217\001\n\014FrequencyCap\022\030" + - "\n\013impressions\030\003 \001(\005B\003\340A\002\022e\n\ttime_unit\030\002 " + - "\001(\0162M.google.ads.googleads.v11.enums.Fre" + - "quencyCapTimeUnitEnum.FrequencyCapTimeUn" + - "itB\003\340A\002\"\371\002\n\tTargeting\022\"\n\025plannable_locat" + - "ion_id\030\006 \001(\tH\000\210\001\001\022Z\n\tage_range\030\002 \001(\0162G.g" + - "oogle.ads.googleads.v11.enums.ReachPlanA" + - "geRangeEnum.ReachPlanAgeRange\022<\n\007genders" + - "\030\003 \003(\0132+.google.ads.googleads.v11.common" + - ".GenderInfo\022<\n\007devices\030\004 \003(\0132+.google.ad" + - "s.googleads.v11.common.DeviceInfo\022V\n\007net" + - "work\030\005 \001(\0162E.google.ads.googleads.v11.en" + - "ums.ReachPlanNetworkEnum.ReachPlanNetwor" + - "kB\030\n\026_plannable_location_id\"\206\001\n\020Campaign" + - "Duration\022\035\n\020duration_in_days\030\002 \001(\005H\000\210\001\001\022" + - ">\n\ndate_range\030\003 \001(\0132*.google.ads.googlea" + - "ds.v11.common.DateRangeB\023\n\021_duration_in_" + - "days\"~\n\016PlannedProduct\022#\n\026plannable_prod" + - "uct_code\030\003 \001(\tH\000\210\001\001\022\032\n\rbudget_micros\030\004 \001" + - "(\003H\001\210\001\001B\031\n\027_plannable_product_codeB\020\n\016_b" + - "udget_micros\"\303\001\n\035GenerateReachForecastRe" + - "sponse\022^\n\032on_target_audience_metrics\030\001 \001" + - "(\0132:.google.ads.googleads.v11.services.O" + - "nTargetAudienceMetrics\022B\n\013reach_curve\030\002 " + - "\001(\0132-.google.ads.googleads.v11.services." + - "ReachCurve\"W\n\nReachCurve\022I\n\017reach_foreca" + - "sts\030\001 \003(\01320.google.ads.googleads.v11.ser" + - "vices.ReachForecast\"\314\001\n\rReachForecast\022\023\n" + - "\013cost_micros\030\005 \001(\003\022=\n\010forecast\030\002 \001(\0132+.g" + - "oogle.ads.googleads.v11.services.Forecas" + - "t\022g\n\037planned_product_reach_forecasts\030\004 \003" + - "(\0132>.google.ads.googleads.v11.services.P" + - "lannedProductReachForecast\"\206\005\n\010Forecast\022" + - "\034\n\017on_target_reach\030\005 \001(\003H\000\210\001\001\022\030\n\013total_r" + - "each\030\006 \001(\003H\001\210\001\001\022\"\n\025on_target_impressions" + - "\030\007 \001(\003H\002\210\001\001\022\036\n\021total_impressions\030\010 \001(\003H\003" + - "\210\001\001\022!\n\024viewable_impressions\030\t \001(\003H\004\210\001\001\022f" + - "\n\036effective_frequency_breakdowns\030\n \003(\0132>" + - ".google.ads.googleads.v11.services.Effec" + - "tiveFrequencyBreakdown\022#\n\026on_target_covi" + - "ew_reach\030\013 \001(\003H\005\210\001\001\022\037\n\022total_coview_reac" + - "h\030\014 \001(\003H\006\210\001\001\022)\n\034on_target_coview_impress" + - "ions\030\r \001(\003H\007\210\001\001\022%\n\030total_coview_impressi" + - "ons\030\016 \001(\003H\010\210\001\001B\022\n\020_on_target_reachB\016\n\014_t" + - "otal_reachB\030\n\026_on_target_impressionsB\024\n\022" + - "_total_impressionsB\027\n\025_viewable_impressi" + - "onsB\031\n\027_on_target_coview_reachB\025\n\023_total" + - "_coview_reachB\037\n\035_on_target_coview_impre" + - "ssionsB\033\n\031_total_coview_impressions\"\257\001\n\033" + - "PlannedProductReachForecast\022\036\n\026plannable" + - "_product_code\030\001 \001(\t\022\023\n\013cost_micros\030\002 \001(\003" + - "\022[\n\030planned_product_forecast\030\003 \001(\01329.goo" + - "gle.ads.googleads.v11.services.PlannedPr" + - "oductForecast\"\304\003\n\026PlannedProductForecast" + - "\022\027\n\017on_target_reach\030\001 \001(\003\022\023\n\013total_reach" + - "\030\002 \001(\003\022\035\n\025on_target_impressions\030\003 \001(\003\022\031\n" + - "\021total_impressions\030\004 \001(\003\022!\n\024viewable_imp" + - "ressions\030\005 \001(\003H\000\210\001\001\022#\n\026on_target_coview_" + - "reach\030\006 \001(\003H\001\210\001\001\022\037\n\022total_coview_reach\030\007" + - " \001(\003H\002\210\001\001\022)\n\034on_target_coview_impression" + - "s\030\010 \001(\003H\003\210\001\001\022%\n\030total_coview_impressions" + - "\030\t \001(\003H\004\210\001\001B\027\n\025_viewable_impressionsB\031\n\027" + - "_on_target_coview_reachB\025\n\023_total_coview" + - "_reachB\037\n\035_on_target_coview_impressionsB" + - "\033\n\031_total_coview_impressions\"\223\001\n\027OnTarge" + - "tAudienceMetrics\022\"\n\025youtube_audience_siz" + - "e\030\003 \001(\003H\000\210\001\001\022!\n\024census_audience_size\030\004 \001" + - "(\003H\001\210\001\001B\030\n\026_youtube_audience_sizeB\027\n\025_ce" + - "nsus_audience_size\"\374\001\n\033EffectiveFrequenc" + - "yBreakdown\022\033\n\023effective_frequency\030\001 \001(\005\022" + - "\027\n\017on_target_reach\030\002 \001(\003\022\023\n\013total_reach\030" + - "\003 \001(\003\022#\n\026effective_coview_reach\030\004 \001(\003H\000\210" + - "\001\001\022-\n on_target_effective_coview_reach\030\005" + - " \001(\003H\001\210\001\001B\031\n\027_effective_coview_reachB#\n!" + - "_on_target_effective_coview_reach\"/\n\025For" + - "ecastMetricOptions\022\026\n\016include_coview\030\001 \001" + - "(\0102\263\010\n\020ReachPlanService\022\305\001\n\026ListPlannabl" + - "eLocations\022@.google.ads.googleads.v11.se" + - "rvices.ListPlannableLocationsRequest\032A.g" + - "oogle.ads.googleads.v11.services.ListPla" + - "nnableLocationsResponse\"&\202\323\344\223\002 \"\033/v11:li" + - "stPlannableLocations:\001*\022\331\001\n\025ListPlannabl" + - "eProducts\022?.google.ads.googleads.v11.ser" + - "vices.ListPlannableProductsRequest\032@.goo" + - "gle.ads.googleads.v11.services.ListPlann" + - "ableProductsResponse\"=\202\323\344\223\002\037\"\032/v11:listP" + - "lannableProducts:\001*\332A\025plannable_location" + - "_id\022\244\002\n\027GenerateProductMixIdeas\022A.google" + - ".ads.googleads.v11.services.GenerateProd" + - "uctMixIdeasRequest\032B.google.ads.googlead" + - "s.v11.services.GenerateProductMixIdeasRe" + - "sponse\"\201\001\202\323\344\223\002;\"6/v11/customers/{custome" + - "r_id=*}:generateProductMixIdeas:\001*\332A=cus" + - "tomer_id,plannable_location_id,currency_" + - "code,budget_micros\022\214\002\n\025GenerateReachFore" + - "cast\022?.google.ads.googleads.v11.services" + - ".GenerateReachForecastRequest\032@.google.a" + - "ds.googleads.v11.services.GenerateReachF" + - "orecastResponse\"p\202\323\344\223\0029\"4/v11/customers/" + - "{customer_id=*}:generateReachForecast:\001*" + - "\332A.customer_id,campaign_duration,planned" + - "_products\032E\312A\030googleads.googleapis.com\322A" + - "\'https://www.googleapis.com/auth/adwords" + - "B\201\002\n%com.google.ads.googleads.v11.servic" + - "esB\025ReachPlanServiceProtoP\001ZIgoogle.gola" + - "ng.org/genproto/googleapis/ads/googleads" + - "/v11/services;services\242\002\003GAA\252\002!Google.Ad" + - "s.GoogleAds.V11.Services\312\002!Google\\Ads\\Go" + - "ogleAds\\V11\\Services\352\002%Google::Ads::Goog" + - "leAds::V11::Servicesb\006proto3" + "nNetworkEnum.ReachPlanNetwork\022V\n\026youtube" + + "_select_lineups\030\005 \003(\01326.google.ads.googl" + + "eads.v11.services.YouTubeSelectLineUp\"\333\001" + + "\n\036GenerateProductMixIdeasRequest\022\030\n\013cust" + + "omer_id\030\001 \001(\tB\003\340A\002\022\"\n\025plannable_location" + + "_id\030\006 \001(\tB\003\340A\002\022\032\n\rcurrency_code\030\007 \001(\tB\003\340" + + "A\002\022\032\n\rbudget_micros\030\010 \001(\003B\003\340A\002\022C\n\013prefer" + + "ences\030\005 \001(\0132..google.ads.googleads.v11.s" + + "ervices.Preferences\"\273\002\n\013Preferences\022\031\n\014i" + + "s_skippable\030\006 \001(\010H\000\210\001\001\022\036\n\021starts_with_so" + + "und\030\007 \001(\010H\001\210\001\001\022Z\n\tad_length\030\003 \001(\0162G.goog" + + "le.ads.googleads.v11.enums.ReachPlanAdLe" + + "ngthEnum.ReachPlanAdLength\022\035\n\020top_conten" + + "t_only\030\010 \001(\010H\002\210\001\001\022!\n\024has_guaranteed_pric" + + "e\030\t \001(\010H\003\210\001\001B\017\n\r_is_skippableB\024\n\022_starts" + + "_with_soundB\023\n\021_top_content_onlyB\027\n\025_has" + + "_guaranteed_price\"s\n\037GenerateProductMixI" + + "deasResponse\022P\n\022product_allocation\030\001 \003(\013" + + "24.google.ads.googleads.v11.services.Pro" + + "ductAllocation\"\201\001\n\021ProductAllocation\022#\n\026" + + "plannable_product_code\030\003 \001(\tH\000\210\001\001\022\032\n\rbud" + + "get_micros\030\004 \001(\003H\001\210\001\001B\031\n\027_plannable_prod" + + "uct_codeB\020\n\016_budget_micros\"\274\006\n\034GenerateR" + + "eachForecastRequest\022\030\n\013customer_id\030\001 \001(\t" + + "B\003\340A\002\022\032\n\rcurrency_code\030\t \001(\tH\000\210\001\001\022S\n\021cam" + + "paign_duration\030\003 \001(\01323.google.ads.google" + + "ads.v11.services.CampaignDurationB\003\340A\002\022!" + + "\n\024cookie_frequency_cap\030\n \001(\005H\001\210\001\001\022U\n\034coo" + + "kie_frequency_cap_setting\030\010 \001(\0132/.google" + + ".ads.googleads.v11.services.FrequencyCap" + + "\022$\n\027min_effective_frequency\030\013 \001(\005H\002\210\001\001\022b" + + "\n\031effective_frequency_limit\030\014 \001(\0132:.goog" + + "le.ads.googleads.v11.services.EffectiveF" + + "requencyLimitH\003\210\001\001\022?\n\ttargeting\030\006 \001(\0132,." + + "google.ads.googleads.v11.services.Target" + + "ing\022P\n\020planned_products\030\007 \003(\01321.google.a" + + "ds.googleads.v11.services.PlannedProduct" + + "B\003\340A\002\022Y\n\027forecast_metric_options\030\r \001(\01328" + + ".google.ads.googleads.v11.services.Forec" + + "astMetricOptions\022!\n\024customer_reach_group" + + "\030\016 \001(\tH\004\210\001\001B\020\n\016_currency_codeB\027\n\025_cookie" + + "_frequency_capB\032\n\030_min_effective_frequen" + + "cyB\034\n\032_effective_frequency_limitB\027\n\025_cus" + + "tomer_reach_group\"F\n\027EffectiveFrequencyL" + + "imit\022+\n#effective_frequency_breakdown_li" + + "mit\030\001 \001(\005\"\217\001\n\014FrequencyCap\022\030\n\013impression" + + "s\030\003 \001(\005B\003\340A\002\022e\n\ttime_unit\030\002 \001(\0162M.google" + + ".ads.googleads.v11.enums.FrequencyCapTim" + + "eUnitEnum.FrequencyCapTimeUnitB\003\340A\002\"\313\003\n\t" + + "Targeting\022\"\n\025plannable_location_id\030\006 \001(\t" + + "H\000\210\001\001\022Z\n\tage_range\030\002 \001(\0162G.google.ads.go" + + "ogleads.v11.enums.ReachPlanAgeRangeEnum." + + "ReachPlanAgeRange\022<\n\007genders\030\003 \003(\0132+.goo" + + "gle.ads.googleads.v11.common.GenderInfo\022" + + "<\n\007devices\030\004 \003(\0132+.google.ads.googleads." + + "v11.common.DeviceInfo\022V\n\007network\030\005 \001(\0162E" + + ".google.ads.googleads.v11.enums.ReachPla" + + "nNetworkEnum.ReachPlanNetwork\022P\n\022audienc" + + "e_targeting\030\007 \001(\01324.google.ads.googleads" + + ".v11.services.AudienceTargetingB\030\n\026_plan" + + "nable_location_id\"\206\001\n\020CampaignDuration\022\035" + + "\n\020duration_in_days\030\002 \001(\005H\000\210\001\001\022>\n\ndate_ra" + + "nge\030\003 \001(\0132*.google.ads.googleads.v11.com" + + "mon.DateRangeB\023\n\021_duration_in_days\"\337\001\n\016P" + + "lannedProduct\022#\n\026plannable_product_code\030" + + "\003 \001(\tH\000\210\001\001\022\032\n\rbudget_micros\030\004 \001(\003H\001\210\001\001\022_" + + "\n\032advanced_product_targeting\030\005 \001(\0132;.goo" + + "gle.ads.googleads.v11.services.AdvancedP" + + "roductTargetingB\031\n\027_plannable_product_co" + + "deB\020\n\016_budget_micros\"\303\001\n\035GenerateReachFo" + + "recastResponse\022^\n\032on_target_audience_met" + + "rics\030\001 \001(\0132:.google.ads.googleads.v11.se" + + "rvices.OnTargetAudienceMetrics\022B\n\013reach_" + + "curve\030\002 \001(\0132-.google.ads.googleads.v11.s" + + "ervices.ReachCurve\"W\n\nReachCurve\022I\n\017reac" + + "h_forecasts\030\001 \003(\01320.google.ads.googleads" + + ".v11.services.ReachForecast\"\314\001\n\rReachFor" + + "ecast\022\023\n\013cost_micros\030\005 \001(\003\022=\n\010forecast\030\002" + + " \001(\0132+.google.ads.googleads.v11.services" + + ".Forecast\022g\n\037planned_product_reach_forec" + + "asts\030\004 \003(\0132>.google.ads.googleads.v11.se" + + "rvices.PlannedProductReachForecast\"\206\005\n\010F" + + "orecast\022\034\n\017on_target_reach\030\005 \001(\003H\000\210\001\001\022\030\n" + + "\013total_reach\030\006 \001(\003H\001\210\001\001\022\"\n\025on_target_imp" + + "ressions\030\007 \001(\003H\002\210\001\001\022\036\n\021total_impressions" + + "\030\010 \001(\003H\003\210\001\001\022!\n\024viewable_impressions\030\t \001(" + + "\003H\004\210\001\001\022f\n\036effective_frequency_breakdowns" + + "\030\n \003(\0132>.google.ads.googleads.v11.servic" + + "es.EffectiveFrequencyBreakdown\022#\n\026on_tar" + + "get_coview_reach\030\013 \001(\003H\005\210\001\001\022\037\n\022total_cov" + + "iew_reach\030\014 \001(\003H\006\210\001\001\022)\n\034on_target_coview" + + "_impressions\030\r \001(\003H\007\210\001\001\022%\n\030total_coview_" + + "impressions\030\016 \001(\003H\010\210\001\001B\022\n\020_on_target_rea" + + "chB\016\n\014_total_reachB\030\n\026_on_target_impress" + + "ionsB\024\n\022_total_impressionsB\027\n\025_viewable_" + + "impressionsB\031\n\027_on_target_coview_reachB\025" + + "\n\023_total_coview_reachB\037\n\035_on_target_covi" + + "ew_impressionsB\033\n\031_total_coview_impressi" + + "ons\"\257\001\n\033PlannedProductReachForecast\022\036\n\026p" + + "lannable_product_code\030\001 \001(\t\022\023\n\013cost_micr" + + "os\030\002 \001(\003\022[\n\030planned_product_forecast\030\003 \001" + + "(\01329.google.ads.googleads.v11.services.P" + + "lannedProductForecast\"\304\003\n\026PlannedProduct" + + "Forecast\022\027\n\017on_target_reach\030\001 \001(\003\022\023\n\013tot" + + "al_reach\030\002 \001(\003\022\035\n\025on_target_impressions\030" + + "\003 \001(\003\022\031\n\021total_impressions\030\004 \001(\003\022!\n\024view" + + "able_impressions\030\005 \001(\003H\000\210\001\001\022#\n\026on_target" + + "_coview_reach\030\006 \001(\003H\001\210\001\001\022\037\n\022total_coview" + + "_reach\030\007 \001(\003H\002\210\001\001\022)\n\034on_target_coview_im" + + "pressions\030\010 \001(\003H\003\210\001\001\022%\n\030total_coview_imp" + + "ressions\030\t \001(\003H\004\210\001\001B\027\n\025_viewable_impress" + + "ionsB\031\n\027_on_target_coview_reachB\025\n\023_tota" + + "l_coview_reachB\037\n\035_on_target_coview_impr" + + "essionsB\033\n\031_total_coview_impressions\"\223\001\n" + + "\027OnTargetAudienceMetrics\022\"\n\025youtube_audi" + + "ence_size\030\003 \001(\003H\000\210\001\001\022!\n\024census_audience_" + + "size\030\004 \001(\003H\001\210\001\001B\030\n\026_youtube_audience_siz" + + "eB\027\n\025_census_audience_size\"\374\001\n\033Effective" + + "FrequencyBreakdown\022\033\n\023effective_frequenc" + + "y\030\001 \001(\005\022\027\n\017on_target_reach\030\002 \001(\003\022\023\n\013tota" + + "l_reach\030\003 \001(\003\022#\n\026effective_coview_reach\030" + + "\004 \001(\003H\000\210\001\001\022-\n on_target_effective_coview" + + "_reach\030\005 \001(\003H\001\210\001\001B\031\n\027_effective_coview_r" + + "eachB#\n!_on_target_effective_coview_reac" + + "h\"/\n\025ForecastMetricOptions\022\026\n\016include_co" + + "view\030\001 \001(\010\"]\n\021AudienceTargeting\022H\n\ruser_" + + "interest\030\001 \003(\01321.google.ads.googleads.v1" + + "1.common.UserInterestInfo\"\215\001\n\030AdvancedPr" + + "oductTargeting\022[\n\027youtube_select_setting" + + "s\030\001 \001(\01328.google.ads.googleads.v11.servi" + + "ces.YouTubeSelectSettingsH\000B\024\n\022advanced_" + + "targeting\"*\n\025YouTubeSelectSettings\022\021\n\tli" + + "neup_id\030\001 \001(\003\"=\n\023YouTubeSelectLineUp\022\021\n\t" + + "lineup_id\030\001 \001(\003\022\023\n\013lineup_name\030\002 \001(\t2\263\010\n" + + "\020ReachPlanService\022\305\001\n\026ListPlannableLocat" + + "ions\022@.google.ads.googleads.v11.services" + + ".ListPlannableLocationsRequest\032A.google." + + "ads.googleads.v11.services.ListPlannable" + + "LocationsResponse\"&\202\323\344\223\002 \"\033/v11:listPlan" + + "nableLocations:\001*\022\331\001\n\025ListPlannableProdu" + + "cts\022?.google.ads.googleads.v11.services." + + "ListPlannableProductsRequest\032@.google.ad" + + "s.googleads.v11.services.ListPlannablePr" + + "oductsResponse\"=\202\323\344\223\002\037\"\032/v11:listPlannab" + + "leProducts:\001*\332A\025plannable_location_id\022\244\002" + + "\n\027GenerateProductMixIdeas\022A.google.ads.g" + + "oogleads.v11.services.GenerateProductMix" + + "IdeasRequest\032B.google.ads.googleads.v11." + + "services.GenerateProductMixIdeasResponse" + + "\"\201\001\202\323\344\223\002;\"6/v11/customers/{customer_id=*" + + "}:generateProductMixIdeas:\001*\332A=customer_" + + "id,plannable_location_id,currency_code,b" + + "udget_micros\022\214\002\n\025GenerateReachForecast\022?" + + ".google.ads.googleads.v11.services.Gener" + + "ateReachForecastRequest\032@.google.ads.goo" + + "gleads.v11.services.GenerateReachForecas" + + "tResponse\"p\202\323\344\223\0029\"4/v11/customers/{custo" + + "mer_id=*}:generateReachForecast:\001*\332A.cus" + + "tomer_id,campaign_duration,planned_produ" + + "cts\032E\312A\030googleads.googleapis.com\322A\'https" + + "://www.googleapis.com/auth/adwordsB\201\002\n%c" + + "om.google.ads.googleads.v11.servicesB\025Re" + + "achPlanServiceProtoP\001ZIgoogle.golang.org" + + "/genproto/googleapis/ads/googleads/v11/s" + + "ervices;services\242\002\003GAA\252\002!Google.Ads.Goog" + + "leAds.V11.Services\312\002!Google\\Ads\\GoogleAd" + + "s\\V11\\Services\352\002%Google::Ads::GoogleAds:" + + ":V11::Servicesb\006proto3" }; descriptor = com.google.protobuf.Descriptors.FileDescriptor .internalBuildGeneratedFileFrom(descriptorData, @@ -398,7 +435,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_services_PlannableTargeting_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_PlannableTargeting_descriptor, - new java.lang.String[] { "AgeRanges", "Genders", "Devices", "Networks", }); + new java.lang.String[] { "AgeRanges", "Genders", "Devices", "Networks", "YoutubeSelectLineups", }); internal_static_google_ads_googleads_v11_services_GenerateProductMixIdeasRequest_descriptor = getDescriptor().getMessageTypes().get(7); internal_static_google_ads_googleads_v11_services_GenerateProductMixIdeasRequest_fieldAccessorTable = new @@ -428,7 +465,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_services_GenerateReachForecastRequest_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_GenerateReachForecastRequest_descriptor, - new java.lang.String[] { "CustomerId", "CurrencyCode", "CampaignDuration", "CookieFrequencyCap", "CookieFrequencyCapSetting", "MinEffectiveFrequency", "EffectiveFrequencyLimit", "Targeting", "PlannedProducts", "ForecastMetricOptions", "CurrencyCode", "CookieFrequencyCap", "MinEffectiveFrequency", "EffectiveFrequencyLimit", }); + new java.lang.String[] { "CustomerId", "CurrencyCode", "CampaignDuration", "CookieFrequencyCap", "CookieFrequencyCapSetting", "MinEffectiveFrequency", "EffectiveFrequencyLimit", "Targeting", "PlannedProducts", "ForecastMetricOptions", "CustomerReachGroup", "CurrencyCode", "CookieFrequencyCap", "MinEffectiveFrequency", "EffectiveFrequencyLimit", "CustomerReachGroup", }); internal_static_google_ads_googleads_v11_services_EffectiveFrequencyLimit_descriptor = getDescriptor().getMessageTypes().get(12); internal_static_google_ads_googleads_v11_services_EffectiveFrequencyLimit_fieldAccessorTable = new @@ -446,7 +483,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_services_Targeting_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_Targeting_descriptor, - new java.lang.String[] { "PlannableLocationId", "AgeRange", "Genders", "Devices", "Network", "PlannableLocationId", }); + new java.lang.String[] { "PlannableLocationId", "AgeRange", "Genders", "Devices", "Network", "AudienceTargeting", "PlannableLocationId", }); internal_static_google_ads_googleads_v11_services_CampaignDuration_descriptor = getDescriptor().getMessageTypes().get(15); internal_static_google_ads_googleads_v11_services_CampaignDuration_fieldAccessorTable = new @@ -458,7 +495,7 @@ public static void registerAllExtensions( internal_static_google_ads_googleads_v11_services_PlannedProduct_fieldAccessorTable = new com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_PlannedProduct_descriptor, - new java.lang.String[] { "PlannableProductCode", "BudgetMicros", "PlannableProductCode", "BudgetMicros", }); + new java.lang.String[] { "PlannableProductCode", "BudgetMicros", "AdvancedProductTargeting", "PlannableProductCode", "BudgetMicros", }); internal_static_google_ads_googleads_v11_services_GenerateReachForecastResponse_descriptor = getDescriptor().getMessageTypes().get(17); internal_static_google_ads_googleads_v11_services_GenerateReachForecastResponse_fieldAccessorTable = new @@ -513,6 +550,30 @@ public static void registerAllExtensions( com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( internal_static_google_ads_googleads_v11_services_ForecastMetricOptions_descriptor, new java.lang.String[] { "IncludeCoview", }); + internal_static_google_ads_googleads_v11_services_AudienceTargeting_descriptor = + getDescriptor().getMessageTypes().get(26); + internal_static_google_ads_googleads_v11_services_AudienceTargeting_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_AudienceTargeting_descriptor, + new java.lang.String[] { "UserInterest", }); + internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_descriptor = + getDescriptor().getMessageTypes().get(27); + internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_AdvancedProductTargeting_descriptor, + new java.lang.String[] { "YoutubeSelectSettings", "AdvancedTargeting", }); + internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_descriptor = + getDescriptor().getMessageTypes().get(28); + internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_descriptor, + new java.lang.String[] { "LineupId", }); + internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_descriptor = + getDescriptor().getMessageTypes().get(29); + internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_fieldAccessorTable = new + com.google.protobuf.GeneratedMessageV3.FieldAccessorTable( + internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_descriptor, + new java.lang.String[] { "LineupId", "LineupName", }); com.google.protobuf.ExtensionRegistry registry = com.google.protobuf.ExtensionRegistry.newInstance(); registry.add(com.google.api.ClientProto.defaultHost); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValue.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValue.java index 2d8e5abaf9..8a98111680 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValue.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValue.java @@ -146,7 +146,7 @@ public double getAdjustedValue() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -161,7 +161,7 @@ public boolean hasCurrencyCode() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -185,7 +185,7 @@ public java.lang.String getCurrencyCode() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -637,7 +637,7 @@ public Builder clearAdjustedValue() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -651,7 +651,7 @@ public boolean hasCurrencyCode() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -674,7 +674,7 @@ public java.lang.String getCurrencyCode() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -698,7 +698,7 @@ public java.lang.String getCurrencyCode() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -720,7 +720,7 @@ public Builder setCurrencyCode( * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -737,7 +737,7 @@ public Builder clearCurrencyCode() { * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValueOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValueOrBuilder.java index fabc5d9567..96d3ce3868 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValueOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/RestatementValueOrBuilder.java @@ -43,7 +43,7 @@ public interface RestatementValueOrBuilder extends * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -55,7 +55,7 @@ public interface RestatementValueOrBuilder extends * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; @@ -67,7 +67,7 @@ public interface RestatementValueOrBuilder extends * The currency of the restated value. If not provided, then the default * currency from the conversion action is used, and if that is not set then * the account currency is used. This is the ISO 4217 3-character currency - * code e.g. USD or EUR. + * code for example, USD or EUR. *
* * optional string currency_code = 4; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfo.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfo.java index 0db5b859a2..f9bbea72bb 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfo.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfo.java @@ -2053,8 +2053,8 @@ public com.google.ads.googleads.v11.services.SmartCampaignSuggestionInfo.Busines /** *
    * Optional. The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -2070,8 +2070,8 @@ public boolean hasBusinessProfileLocation() {
   /**
    * 
    * Optional. The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -2101,8 +2101,8 @@ public java.lang.String getBusinessProfileLocation() {
   /**
    * 
    * Optional. The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3838,8 +3838,8 @@ public com.google.ads.googleads.v11.services.SmartCampaignSuggestionInfo.Busines
     /**
      * 
      * Optional. The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3856,8 +3856,8 @@ public boolean hasBusinessProfileLocation() {
     /**
      * 
      * Optional. The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3888,8 +3888,8 @@ public java.lang.String getBusinessProfileLocation() {
     /**
      * 
      * Optional. The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3921,8 +3921,8 @@ public java.lang.String getBusinessProfileLocation() {
     /**
      * 
      * Optional. The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3946,8 +3946,8 @@ public Builder setBusinessProfileLocation(
     /**
      * 
      * Optional. The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -3968,8 +3968,8 @@ public Builder clearBusinessProfileLocation() {
     /**
      * 
      * Optional. The resource name of a Business Profile location.
-     * Business Profile location resource names can be fetched via the Business
-     * Profile API and adhere to the following format:
+     * Business Profile location resource names can be fetched through the
+     * Business Profile API and adhere to the following format:
      * `locations/{locationId}`.
      * See the [Business Profile API]
      * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfoOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfoOrBuilder.java
index 655a9cecd2..0110032477 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfoOrBuilder.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SmartCampaignSuggestionInfoOrBuilder.java
@@ -172,8 +172,8 @@ com.google.ads.googleads.v11.common.KeywordThemeInfoOrBuilder getKeywordThemesOr
   /**
    * 
    * Optional. The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -187,8 +187,8 @@ com.google.ads.googleads.v11.common.KeywordThemeInfoOrBuilder getKeywordThemesOr
   /**
    * 
    * Optional. The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
@@ -202,8 +202,8 @@ com.google.ads.googleads.v11.common.KeywordThemeInfoOrBuilder getKeywordThemesOr
   /**
    * 
    * Optional. The resource name of a Business Profile location.
-   * Business Profile location resource names can be fetched via the Business
-   * Profile API and adhere to the following format:
+   * Business Profile location resource names can be fetched through the
+   * Business Profile API and adhere to the following format:
    * `locations/{locationId}`.
    * See the [Business Profile API]
    * (https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations)
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequest.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequest.java
index 4fe6159169..b40d75ce11 100644
--- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequest.java
+++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequest.java
@@ -113,7 +113,7 @@ private SuggestKeywordThemeConstantsRequest(
   /**
    * 
    * The query text of a keyword theme that will be used to map to similar
-   * keyword themes. E.g. "plumber" or "roofer".
+   * keyword themes. For example, "plumber" or "roofer".
    * 
* * string query_text = 1; @@ -135,7 +135,7 @@ public java.lang.String getQueryText() { /** *
    * The query text of a keyword theme that will be used to map to similar
-   * keyword themes. E.g. "plumber" or "roofer".
+   * keyword themes. For example, "plumber" or "roofer".
    * 
* * string query_text = 1; @@ -597,7 +597,7 @@ public Builder mergeFrom( /** *
      * The query text of a keyword theme that will be used to map to similar
-     * keyword themes. E.g. "plumber" or "roofer".
+     * keyword themes. For example, "plumber" or "roofer".
      * 
* * string query_text = 1; @@ -618,7 +618,7 @@ public java.lang.String getQueryText() { /** *
      * The query text of a keyword theme that will be used to map to similar
-     * keyword themes. E.g. "plumber" or "roofer".
+     * keyword themes. For example, "plumber" or "roofer".
      * 
* * string query_text = 1; @@ -640,7 +640,7 @@ public java.lang.String getQueryText() { /** *
      * The query text of a keyword theme that will be used to map to similar
-     * keyword themes. E.g. "plumber" or "roofer".
+     * keyword themes. For example, "plumber" or "roofer".
      * 
* * string query_text = 1; @@ -660,7 +660,7 @@ public Builder setQueryText( /** *
      * The query text of a keyword theme that will be used to map to similar
-     * keyword themes. E.g. "plumber" or "roofer".
+     * keyword themes. For example, "plumber" or "roofer".
      * 
* * string query_text = 1; @@ -675,7 +675,7 @@ public Builder clearQueryText() { /** *
      * The query text of a keyword theme that will be used to map to similar
-     * keyword themes. E.g. "plumber" or "roofer".
+     * keyword themes. For example, "plumber" or "roofer".
      * 
* * string query_text = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequestOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequestOrBuilder.java index bc97b02ca4..bc9f53fa99 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequestOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/SuggestKeywordThemeConstantsRequestOrBuilder.java @@ -10,7 +10,7 @@ public interface SuggestKeywordThemeConstantsRequestOrBuilder extends /** *
    * The query text of a keyword theme that will be used to map to similar
-   * keyword themes. E.g. "plumber" or "roofer".
+   * keyword themes. For example, "plumber" or "roofer".
    * 
* * string query_text = 1; @@ -20,7 +20,7 @@ public interface SuggestKeywordThemeConstantsRequestOrBuilder extends /** *
    * The query text of a keyword theme that will be used to map to similar
-   * keyword themes. E.g. "plumber" or "roofer".
+   * keyword themes. For example, "plumber" or "roofer".
    * 
* * string query_text = 1; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/Targeting.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/Targeting.java index ace0107289..657eaee0df 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/Targeting.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/Targeting.java @@ -94,6 +94,19 @@ private Targeting( plannableLocationId_ = s; break; } + case 58: { + com.google.ads.googleads.v11.services.AudienceTargeting.Builder subBuilder = null; + if (audienceTargeting_ != null) { + subBuilder = audienceTargeting_.toBuilder(); + } + audienceTargeting_ = input.readMessage(com.google.ads.googleads.v11.services.AudienceTargeting.parser(), extensionRegistry); + if (subBuilder != null) { + subBuilder.mergeFrom(audienceTargeting_); + audienceTargeting_ = subBuilder.buildPartial(); + } + + break; + } default: { if (!parseUnknownField( input, unknownFields, extensionRegistry, tag)) { @@ -398,6 +411,47 @@ public com.google.ads.googleads.v11.common.DeviceInfoOrBuilder getDevicesOrBuild return result == null ? com.google.ads.googleads.v11.enums.ReachPlanNetworkEnum.ReachPlanNetwork.UNRECOGNIZED : result; } + public static final int AUDIENCE_TARGETING_FIELD_NUMBER = 7; + private com.google.ads.googleads.v11.services.AudienceTargeting audienceTargeting_; + /** + *
+   * Targeted audiences.
+   * If not specified, does not target any specific audience.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + * @return Whether the audienceTargeting field is set. + */ + @java.lang.Override + public boolean hasAudienceTargeting() { + return audienceTargeting_ != null; + } + /** + *
+   * Targeted audiences.
+   * If not specified, does not target any specific audience.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + * @return The audienceTargeting. + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceTargeting getAudienceTargeting() { + return audienceTargeting_ == null ? com.google.ads.googleads.v11.services.AudienceTargeting.getDefaultInstance() : audienceTargeting_; + } + /** + *
+   * Targeted audiences.
+   * If not specified, does not target any specific audience.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + @java.lang.Override + public com.google.ads.googleads.v11.services.AudienceTargetingOrBuilder getAudienceTargetingOrBuilder() { + return getAudienceTargeting(); + } + private byte memoizedIsInitialized = -1; @java.lang.Override public final boolean isInitialized() { @@ -427,6 +481,9 @@ public void writeTo(com.google.protobuf.CodedOutputStream output) if (((bitField0_ & 0x00000001) != 0)) { com.google.protobuf.GeneratedMessageV3.writeString(output, 6, plannableLocationId_); } + if (audienceTargeting_ != null) { + output.writeMessage(7, getAudienceTargeting()); + } unknownFields.writeTo(output); } @@ -455,6 +512,10 @@ public int getSerializedSize() { if (((bitField0_ & 0x00000001) != 0)) { size += com.google.protobuf.GeneratedMessageV3.computeStringSize(6, plannableLocationId_); } + if (audienceTargeting_ != null) { + size += com.google.protobuf.CodedOutputStream + .computeMessageSize(7, getAudienceTargeting()); + } size += unknownFields.getSerializedSize(); memoizedSize = size; return size; @@ -481,6 +542,11 @@ public boolean equals(final java.lang.Object obj) { if (!getDevicesList() .equals(other.getDevicesList())) return false; if (network_ != other.network_) return false; + if (hasAudienceTargeting() != other.hasAudienceTargeting()) return false; + if (hasAudienceTargeting()) { + if (!getAudienceTargeting() + .equals(other.getAudienceTargeting())) return false; + } if (!unknownFields.equals(other.unknownFields)) return false; return true; } @@ -508,6 +574,10 @@ public int hashCode() { } hash = (37 * hash) + NETWORK_FIELD_NUMBER; hash = (53 * hash) + network_; + if (hasAudienceTargeting()) { + hash = (37 * hash) + AUDIENCE_TARGETING_FIELD_NUMBER; + hash = (53 * hash) + getAudienceTargeting().hashCode(); + } hash = (29 * hash) + unknownFields.hashCode(); memoizedHashCode = hash; return hash; @@ -665,6 +735,12 @@ public Builder clear() { } network_ = 0; + if (audienceTargetingBuilder_ == null) { + audienceTargeting_ = null; + } else { + audienceTargeting_ = null; + audienceTargetingBuilder_ = null; + } return this; } @@ -717,6 +793,11 @@ public com.google.ads.googleads.v11.services.Targeting buildPartial() { result.devices_ = devicesBuilder_.build(); } result.network_ = network_; + if (audienceTargetingBuilder_ == null) { + result.audienceTargeting_ = audienceTargeting_; + } else { + result.audienceTargeting_ = audienceTargetingBuilder_.build(); + } result.bitField0_ = to_bitField0_; onBuilt(); return result; @@ -829,6 +910,9 @@ public Builder mergeFrom(com.google.ads.googleads.v11.services.Targeting other) if (other.network_ != 0) { setNetworkValue(other.getNetworkValue()); } + if (other.hasAudienceTargeting()) { + mergeAudienceTargeting(other.getAudienceTargeting()); + } this.mergeUnknownFields(other.unknownFields); onChanged(); return this; @@ -1835,6 +1919,170 @@ public Builder clearNetwork() { onChanged(); return this; } + + private com.google.ads.googleads.v11.services.AudienceTargeting audienceTargeting_; + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceTargeting, com.google.ads.googleads.v11.services.AudienceTargeting.Builder, com.google.ads.googleads.v11.services.AudienceTargetingOrBuilder> audienceTargetingBuilder_; + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + * @return Whether the audienceTargeting field is set. + */ + public boolean hasAudienceTargeting() { + return audienceTargetingBuilder_ != null || audienceTargeting_ != null; + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + * @return The audienceTargeting. + */ + public com.google.ads.googleads.v11.services.AudienceTargeting getAudienceTargeting() { + if (audienceTargetingBuilder_ == null) { + return audienceTargeting_ == null ? com.google.ads.googleads.v11.services.AudienceTargeting.getDefaultInstance() : audienceTargeting_; + } else { + return audienceTargetingBuilder_.getMessage(); + } + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + public Builder setAudienceTargeting(com.google.ads.googleads.v11.services.AudienceTargeting value) { + if (audienceTargetingBuilder_ == null) { + if (value == null) { + throw new NullPointerException(); + } + audienceTargeting_ = value; + onChanged(); + } else { + audienceTargetingBuilder_.setMessage(value); + } + + return this; + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + public Builder setAudienceTargeting( + com.google.ads.googleads.v11.services.AudienceTargeting.Builder builderForValue) { + if (audienceTargetingBuilder_ == null) { + audienceTargeting_ = builderForValue.build(); + onChanged(); + } else { + audienceTargetingBuilder_.setMessage(builderForValue.build()); + } + + return this; + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + public Builder mergeAudienceTargeting(com.google.ads.googleads.v11.services.AudienceTargeting value) { + if (audienceTargetingBuilder_ == null) { + if (audienceTargeting_ != null) { + audienceTargeting_ = + com.google.ads.googleads.v11.services.AudienceTargeting.newBuilder(audienceTargeting_).mergeFrom(value).buildPartial(); + } else { + audienceTargeting_ = value; + } + onChanged(); + } else { + audienceTargetingBuilder_.mergeFrom(value); + } + + return this; + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + public Builder clearAudienceTargeting() { + if (audienceTargetingBuilder_ == null) { + audienceTargeting_ = null; + onChanged(); + } else { + audienceTargeting_ = null; + audienceTargetingBuilder_ = null; + } + + return this; + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + public com.google.ads.googleads.v11.services.AudienceTargeting.Builder getAudienceTargetingBuilder() { + + onChanged(); + return getAudienceTargetingFieldBuilder().getBuilder(); + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + public com.google.ads.googleads.v11.services.AudienceTargetingOrBuilder getAudienceTargetingOrBuilder() { + if (audienceTargetingBuilder_ != null) { + return audienceTargetingBuilder_.getMessageOrBuilder(); + } else { + return audienceTargeting_ == null ? + com.google.ads.googleads.v11.services.AudienceTargeting.getDefaultInstance() : audienceTargeting_; + } + } + /** + *
+     * Targeted audiences.
+     * If not specified, does not target any specific audience.
+     * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + private com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceTargeting, com.google.ads.googleads.v11.services.AudienceTargeting.Builder, com.google.ads.googleads.v11.services.AudienceTargetingOrBuilder> + getAudienceTargetingFieldBuilder() { + if (audienceTargetingBuilder_ == null) { + audienceTargetingBuilder_ = new com.google.protobuf.SingleFieldBuilderV3< + com.google.ads.googleads.v11.services.AudienceTargeting, com.google.ads.googleads.v11.services.AudienceTargeting.Builder, com.google.ads.googleads.v11.services.AudienceTargetingOrBuilder>( + getAudienceTargeting(), + getParentForChildren(), + isClean()); + audienceTargeting_ = null; + } + return audienceTargetingBuilder_; + } @java.lang.Override public final Builder setUnknownFields( final com.google.protobuf.UnknownFieldSet unknownFields) { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/TargetingOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/TargetingOrBuilder.java index 9ace90b29c..9bd695781b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/TargetingOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/TargetingOrBuilder.java @@ -192,4 +192,34 @@ com.google.ads.googleads.v11.common.DeviceInfoOrBuilder getDevicesOrBuilder( * @return The network. */ com.google.ads.googleads.v11.enums.ReachPlanNetworkEnum.ReachPlanNetwork getNetwork(); + + /** + *
+   * Targeted audiences.
+   * If not specified, does not target any specific audience.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + * @return Whether the audienceTargeting field is set. + */ + boolean hasAudienceTargeting(); + /** + *
+   * Targeted audiences.
+   * If not specified, does not target any specific audience.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + * @return The audienceTargeting. + */ + com.google.ads.googleads.v11.services.AudienceTargeting getAudienceTargeting(); + /** + *
+   * Targeted audiences.
+   * If not specified, does not target any specific audience.
+   * 
+ * + * .google.ads.googleads.v11.services.AudienceTargeting audience_targeting = 7; + */ + com.google.ads.googleads.v11.services.AudienceTargetingOrBuilder getAudienceTargetingOrBuilder(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponse.java index fc5cab3005..5257745b45 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponse.java @@ -119,8 +119,8 @@ private UploadCallConversionsResponse( *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -136,8 +136,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -153,8 +153,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -619,8 +619,8 @@ public Builder mergeFrom( *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -635,8 +635,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -655,8 +655,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -680,8 +680,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -703,8 +703,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -730,8 +730,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -753,8 +753,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -770,8 +770,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -790,8 +790,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponseOrBuilder.java index 72217c7f5f..1fd2b0a2ef 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadCallConversionsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface UploadCallConversionsResponseOrBuilder extends *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -25,8 +25,8 @@ public interface UploadCallConversionsResponseOrBuilder extends *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -39,8 +39,8 @@ public interface UploadCallConversionsResponseOrBuilder extends *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponse.java index 4eb8f07456..b459a4a09c 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponse.java @@ -119,8 +119,8 @@ private UploadClickConversionsResponse( *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -136,8 +136,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -153,8 +153,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -619,8 +619,8 @@ public Builder mergeFrom( *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -635,8 +635,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -655,8 +655,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -680,8 +680,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -703,8 +703,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -730,8 +730,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -753,8 +753,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -770,8 +770,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -790,8 +790,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to conversion failures in the partial failure mode.
      * Returned when all errors occur inside the conversions. If any errors occur
-     * outside the conversions (e.g. auth errors), we return an RPC level error.
-     * See
+     * outside the conversions (for example, auth errors), we return an RPC level
+     * error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponseOrBuilder.java index 1ee1c07cbc..8325329f9e 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadClickConversionsResponseOrBuilder.java @@ -11,8 +11,8 @@ public interface UploadClickConversionsResponseOrBuilder extends *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -25,8 +25,8 @@ public interface UploadClickConversionsResponseOrBuilder extends *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -39,8 +39,8 @@ public interface UploadClickConversionsResponseOrBuilder extends *
    * Errors that pertain to conversion failures in the partial failure mode.
    * Returned when all errors occur inside the conversions. If any errors occur
-   * outside the conversions (e.g. auth errors), we return an RPC level error.
-   * See
+   * outside the conversions (for example, auth errors), we return an RPC level
+   * error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponse.java index a48912d6e9..dbd2451c80 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponse.java @@ -120,9 +120,8 @@ private UploadConversionAdjustmentsResponse( *
    * Errors that pertain to conversion adjustment failures in the partial
    * failure mode. Returned when all errors occur inside the adjustments. If any
-   * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-   * level error.
-   * See
+   * errors occur outside the adjustments (for example, auth errors), we return
+   * an RPC level error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -138,9 +137,8 @@ public boolean hasPartialFailureError() { *
    * Errors that pertain to conversion adjustment failures in the partial
    * failure mode. Returned when all errors occur inside the adjustments. If any
-   * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-   * level error.
-   * See
+   * errors occur outside the adjustments (for example, auth errors), we return
+   * an RPC level error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -156,9 +154,8 @@ public com.google.rpc.Status getPartialFailureError() { *
    * Errors that pertain to conversion adjustment failures in the partial
    * failure mode. Returned when all errors occur inside the adjustments. If any
-   * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-   * level error.
-   * See
+   * errors occur outside the adjustments (for example, auth errors), we return
+   * an RPC level error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -624,9 +621,8 @@ public Builder mergeFrom( *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -641,9 +637,8 @@ public boolean hasPartialFailureError() { *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -662,9 +657,8 @@ public com.google.rpc.Status getPartialFailureError() { *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -688,9 +682,8 @@ public Builder setPartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -712,9 +705,8 @@ public Builder setPartialFailureError( *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -740,9 +732,8 @@ public Builder mergePartialFailureError(com.google.rpc.Status value) { *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -764,9 +755,8 @@ public Builder clearPartialFailureError() { *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -782,9 +772,8 @@ public com.google.rpc.Status.Builder getPartialFailureErrorBuilder() { *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
@@ -803,9 +792,8 @@ public com.google.rpc.StatusOrBuilder getPartialFailureErrorOrBuilder() { *
      * Errors that pertain to conversion adjustment failures in the partial
      * failure mode. Returned when all errors occur inside the adjustments. If any
-     * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-     * level error.
-     * See
+     * errors occur outside the adjustments (for example, auth errors), we return
+     * an RPC level error. See
      * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
      * for more information about partial failure.
      * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponseOrBuilder.java index 02fd58ff2e..fbf0c34948 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadConversionAdjustmentsResponseOrBuilder.java @@ -11,9 +11,8 @@ public interface UploadConversionAdjustmentsResponseOrBuilder extends *
    * Errors that pertain to conversion adjustment failures in the partial
    * failure mode. Returned when all errors occur inside the adjustments. If any
-   * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-   * level error.
-   * See
+   * errors occur outside the adjustments (for example, auth errors), we return
+   * an RPC level error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -26,9 +25,8 @@ public interface UploadConversionAdjustmentsResponseOrBuilder extends *
    * Errors that pertain to conversion adjustment failures in the partial
    * failure mode. Returned when all errors occur inside the adjustments. If any
-   * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-   * level error.
-   * See
+   * errors occur outside the adjustments (for example, auth errors), we return
+   * an RPC level error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
@@ -41,9 +39,8 @@ public interface UploadConversionAdjustmentsResponseOrBuilder extends *
    * Errors that pertain to conversion adjustment failures in the partial
    * failure mode. Returned when all errors occur inside the adjustments. If any
-   * errors occur outside the adjustments (e.g. auth errors), we return an RPC
-   * level error.
-   * See
+   * errors occur outside the adjustments (for example, auth errors), we return
+   * an RPC level error. See
    * https://developers.google.com/google-ads/api/docs/best-practices/partial-failures
    * for more information about partial failure.
    * 
diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponse.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponse.java index 5bc8b96f71..f8f60cd98b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponse.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponse.java @@ -6,8 +6,8 @@ /** *
  * Response message for [UserDataService.UploadUserData][google.ads.googleads.v11.services.UserDataService.UploadUserData]
- * Uploads made via this service will not be visible under the 'Segment members'
- * section for the Customer Match List in the Google Ads UI.
+ * Uploads made through this service will not be visible under the 'Segment
+ * members' section for the Customer Match List in the Google Ads UI.
  * 
* * Protobuf type {@code google.ads.googleads.v11.services.UploadUserDataResponse} @@ -107,7 +107,7 @@ private UploadUserDataResponse( /** *
    * The date time at which the request was received by API, formatted as
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string upload_date_time = 3; @@ -120,7 +120,7 @@ public boolean hasUploadDateTime() { /** *
    * The date time at which the request was received by API, formatted as
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string upload_date_time = 3; @@ -142,7 +142,7 @@ public java.lang.String getUploadDateTime() { /** *
    * The date time at which the request was received by API, formatted as
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string upload_date_time = 3; @@ -368,8 +368,8 @@ protected Builder newBuilderForType( /** *
    * Response message for [UserDataService.UploadUserData][google.ads.googleads.v11.services.UserDataService.UploadUserData]
-   * Uploads made via this service will not be visible under the 'Segment members'
-   * section for the Customer Match List in the Google Ads UI.
+   * Uploads made through this service will not be visible under the 'Segment
+   * members' section for the Customer Match List in the Google Ads UI.
    * 
* * Protobuf type {@code google.ads.googleads.v11.services.UploadUserDataResponse} @@ -540,7 +540,7 @@ public Builder mergeFrom( /** *
      * The date time at which the request was received by API, formatted as
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string upload_date_time = 3; @@ -552,7 +552,7 @@ public boolean hasUploadDateTime() { /** *
      * The date time at which the request was received by API, formatted as
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string upload_date_time = 3; @@ -573,7 +573,7 @@ public java.lang.String getUploadDateTime() { /** *
      * The date time at which the request was received by API, formatted as
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string upload_date_time = 3; @@ -595,7 +595,7 @@ public java.lang.String getUploadDateTime() { /** *
      * The date time at which the request was received by API, formatted as
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string upload_date_time = 3; @@ -615,7 +615,7 @@ public Builder setUploadDateTime( /** *
      * The date time at which the request was received by API, formatted as
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string upload_date_time = 3; @@ -630,7 +630,7 @@ public Builder clearUploadDateTime() { /** *
      * The date time at which the request was received by API, formatted as
-     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+     * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
      * 
* * optional string upload_date_time = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponseOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponseOrBuilder.java index 873327cea2..251e66d50a 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponseOrBuilder.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UploadUserDataResponseOrBuilder.java @@ -10,7 +10,7 @@ public interface UploadUserDataResponseOrBuilder extends /** *
    * The date time at which the request was received by API, formatted as
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string upload_date_time = 3; @@ -20,7 +20,7 @@ public interface UploadUserDataResponseOrBuilder extends /** *
    * The date time at which the request was received by API, formatted as
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string upload_date_time = 3; @@ -30,7 +30,7 @@ public interface UploadUserDataResponseOrBuilder extends /** *
    * The date time at which the request was received by API, formatted as
-   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", e.g. "2019-01-01 12:32:45-08:00".
+   * "yyyy-mm-dd hh:mm:ss+|-hh:mm", for example, "2019-01-01 12:32:45-08:00".
    * 
* * optional string upload_date_time = 3; diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceClient.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceClient.java index 2cc2a447bf..3574c7274d 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceClient.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceClient.java @@ -27,8 +27,8 @@ // AUTO-GENERATED DOCUMENTATION AND CLASS. /** * Service Description: Service to manage user data uploads. Any uploads made to a Customer Match - * list via this service will be eligible for matching as per the customer matching process. Please - * see https://support.google.com/google-ads/answer/7474263. However, the uploads made via this + * list through this service will be eligible for matching as per the customer matching process. See + * https://support.google.com/google-ads/answer/7474263. However, the uploads made through this * service will not be visible under the 'Segment members' section for the Customer Match List in * the Google Ads UI. * diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceGrpc.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceGrpc.java index 59302e1ab0..bb31c3b3f1 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceGrpc.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/UserDataServiceGrpc.java @@ -5,11 +5,11 @@ /** *
  * Service to manage user data uploads.
- * Any uploads made to a Customer Match list via this service will be eligible
- * for matching as per the customer matching process. Please see
+ * Any uploads made to a Customer Match list through this service will be
+ * eligible for matching as per the customer matching process. See
  * https://support.google.com/google-ads/answer/7474263. However, the uploads
- * made via this service will not be visible under the 'Segment members' section
- * for the Customer Match List in the Google Ads UI.
+ * made through this service will not be visible under the 'Segment members'
+ * section for the Customer Match List in the Google Ads UI.
  * 
*/ @javax.annotation.Generated( @@ -101,11 +101,11 @@ public UserDataServiceFutureStub newStub(io.grpc.Channel channel, io.grpc.CallOp /** *
    * Service to manage user data uploads.
-   * Any uploads made to a Customer Match list via this service will be eligible
-   * for matching as per the customer matching process. Please see
+   * Any uploads made to a Customer Match list through this service will be
+   * eligible for matching as per the customer matching process. See
    * https://support.google.com/google-ads/answer/7474263. However, the uploads
-   * made via this service will not be visible under the 'Segment members' section
-   * for the Customer Match List in the Google Ads UI.
+   * made through this service will not be visible under the 'Segment members'
+   * section for the Customer Match List in the Google Ads UI.
    * 
*/ public static abstract class UserDataServiceImplBase implements io.grpc.BindableService { @@ -148,11 +148,11 @@ public void uploadUserData(com.google.ads.googleads.v11.services.UploadUserDataR /** *
    * Service to manage user data uploads.
-   * Any uploads made to a Customer Match list via this service will be eligible
-   * for matching as per the customer matching process. Please see
+   * Any uploads made to a Customer Match list through this service will be
+   * eligible for matching as per the customer matching process. See
    * https://support.google.com/google-ads/answer/7474263. However, the uploads
-   * made via this service will not be visible under the 'Segment members' section
-   * for the Customer Match List in the Google Ads UI.
+   * made through this service will not be visible under the 'Segment members'
+   * section for the Customer Match List in the Google Ads UI.
    * 
*/ public static final class UserDataServiceStub extends io.grpc.stub.AbstractAsyncStub { @@ -194,11 +194,11 @@ public void uploadUserData(com.google.ads.googleads.v11.services.UploadUserDataR /** *
    * Service to manage user data uploads.
-   * Any uploads made to a Customer Match list via this service will be eligible
-   * for matching as per the customer matching process. Please see
+   * Any uploads made to a Customer Match list through this service will be
+   * eligible for matching as per the customer matching process. See
    * https://support.google.com/google-ads/answer/7474263. However, the uploads
-   * made via this service will not be visible under the 'Segment members' section
-   * for the Customer Match List in the Google Ads UI.
+   * made through this service will not be visible under the 'Segment members'
+   * section for the Customer Match List in the Google Ads UI.
    * 
*/ public static final class UserDataServiceBlockingStub extends io.grpc.stub.AbstractBlockingStub { @@ -239,11 +239,11 @@ public com.google.ads.googleads.v11.services.UploadUserDataResponse uploadUserDa /** *
    * Service to manage user data uploads.
-   * Any uploads made to a Customer Match list via this service will be eligible
-   * for matching as per the customer matching process. Please see
+   * Any uploads made to a Customer Match list through this service will be
+   * eligible for matching as per the customer matching process. See
    * https://support.google.com/google-ads/answer/7474263. However, the uploads
-   * made via this service will not be visible under the 'Segment members' section
-   * for the Customer Match List in the Google Ads UI.
+   * made through this service will not be visible under the 'Segment members'
+   * section for the Customer Match List in the Google Ads UI.
    * 
*/ public static final class UserDataServiceFutureStub extends io.grpc.stub.AbstractFutureStub { diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeChannelAttributeMetadata.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeChannelAttributeMetadata.java new file mode 100644 index 0000000000..0949a74144 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeChannelAttributeMetadata.java @@ -0,0 +1,510 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * Metadata associated with a YouTube channel attribute.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata} + */ +public final class YouTubeChannelAttributeMetadata extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) + YouTubeChannelAttributeMetadataOrBuilder { +private static final long serialVersionUID = 0L; + // Use YouTubeChannelAttributeMetadata.newBuilder() to construct. + private YouTubeChannelAttributeMetadata(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private YouTubeChannelAttributeMetadata() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new YouTubeChannelAttributeMetadata(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private YouTubeChannelAttributeMetadata( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + + subscriberCount_ = input.readInt64(); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.class, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder.class); + } + + public static final int SUBSCRIBER_COUNT_FIELD_NUMBER = 1; + private long subscriberCount_; + /** + *
+   * The approximate number of subscribers to the YouTube channel.
+   * 
+ * + * int64 subscriber_count = 1; + * @return The subscriberCount. + */ + @java.lang.Override + public long getSubscriberCount() { + return subscriberCount_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (subscriberCount_ != 0L) { + output.writeInt64(1, subscriberCount_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (subscriberCount_ != 0L) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(1, subscriberCount_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata other = (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) obj; + + if (getSubscriberCount() + != other.getSubscriberCount()) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + SUBSCRIBER_COUNT_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getSubscriberCount()); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Metadata associated with a YouTube channel attribute.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadataOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.class, com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + subscriberCount_ = 0L; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.AudienceInsightsServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeChannelAttributeMetadata_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata build() { + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata buildPartial() { + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata result = new com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata(this); + result.subscriberCount_ = subscriberCount_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) { + return mergeFrom((com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata other) { + if (other == com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata.getDefaultInstance()) return this; + if (other.getSubscriberCount() != 0L) { + setSubscriberCount(other.getSubscriberCount()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private long subscriberCount_ ; + /** + *
+     * The approximate number of subscribers to the YouTube channel.
+     * 
+ * + * int64 subscriber_count = 1; + * @return The subscriberCount. + */ + @java.lang.Override + public long getSubscriberCount() { + return subscriberCount_; + } + /** + *
+     * The approximate number of subscribers to the YouTube channel.
+     * 
+ * + * int64 subscriber_count = 1; + * @param value The subscriberCount to set. + * @return This builder for chaining. + */ + public Builder setSubscriberCount(long value) { + + subscriberCount_ = value; + onChanged(); + return this; + } + /** + *
+     * The approximate number of subscribers to the YouTube channel.
+     * 
+ * + * int64 subscriber_count = 1; + * @return This builder for chaining. + */ + public Builder clearSubscriberCount() { + + subscriberCount_ = 0L; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) + private static final com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata(); + } + + public static com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public YouTubeChannelAttributeMetadata parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new YouTubeChannelAttributeMetadata(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeChannelAttributeMetadataOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeChannelAttributeMetadataOrBuilder.java new file mode 100644 index 0000000000..f9334676e5 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeChannelAttributeMetadataOrBuilder.java @@ -0,0 +1,19 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/audience_insights_service.proto + +package com.google.ads.googleads.v11.services; + +public interface YouTubeChannelAttributeMetadataOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.YouTubeChannelAttributeMetadata) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The approximate number of subscribers to the YouTube channel.
+   * 
+ * + * int64 subscriber_count = 1; + * @return The subscriberCount. + */ + long getSubscriberCount(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectLineUp.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectLineUp.java new file mode 100644 index 0000000000..deb3de5772 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectLineUp.java @@ -0,0 +1,676 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * A Plannable YouTube Select Lineup for product targeting.
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.YouTubeSelectLineUp} + */ +public final class YouTubeSelectLineUp extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.YouTubeSelectLineUp) + YouTubeSelectLineUpOrBuilder { +private static final long serialVersionUID = 0L; + // Use YouTubeSelectLineUp.newBuilder() to construct. + private YouTubeSelectLineUp(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private YouTubeSelectLineUp() { + lineupName_ = ""; + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new YouTubeSelectLineUp(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private YouTubeSelectLineUp( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + + lineupId_ = input.readInt64(); + break; + } + case 18: { + java.lang.String s = input.readStringRequireUtf8(); + + lineupName_ = s; + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.YouTubeSelectLineUp.class, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder.class); + } + + public static final int LINEUP_ID_FIELD_NUMBER = 1; + private long lineupId_; + /** + *
+   * The ID of the YouTube Select Lineup.
+   * 
+ * + * int64 lineup_id = 1; + * @return The lineupId. + */ + @java.lang.Override + public long getLineupId() { + return lineupId_; + } + + public static final int LINEUP_NAME_FIELD_NUMBER = 2; + private volatile java.lang.Object lineupName_; + /** + *
+   * The unique name of the YouTube Select Lineup.
+   * 
+ * + * string lineup_name = 2; + * @return The lineupName. + */ + @java.lang.Override + public java.lang.String getLineupName() { + java.lang.Object ref = lineupName_; + if (ref instanceof java.lang.String) { + return (java.lang.String) ref; + } else { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + lineupName_ = s; + return s; + } + } + /** + *
+   * The unique name of the YouTube Select Lineup.
+   * 
+ * + * string lineup_name = 2; + * @return The bytes for lineupName. + */ + @java.lang.Override + public com.google.protobuf.ByteString + getLineupNameBytes() { + java.lang.Object ref = lineupName_; + if (ref instanceof java.lang.String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + lineupName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (lineupId_ != 0L) { + output.writeInt64(1, lineupId_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(lineupName_)) { + com.google.protobuf.GeneratedMessageV3.writeString(output, 2, lineupName_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (lineupId_ != 0L) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(1, lineupId_); + } + if (!com.google.protobuf.GeneratedMessageV3.isStringEmpty(lineupName_)) { + size += com.google.protobuf.GeneratedMessageV3.computeStringSize(2, lineupName_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.YouTubeSelectLineUp)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.YouTubeSelectLineUp other = (com.google.ads.googleads.v11.services.YouTubeSelectLineUp) obj; + + if (getLineupId() + != other.getLineupId()) return false; + if (!getLineupName() + .equals(other.getLineupName())) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + LINEUP_ID_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getLineupId()); + hash = (37 * hash) + LINEUP_NAME_FIELD_NUMBER; + hash = (53 * hash) + getLineupName().hashCode(); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.YouTubeSelectLineUp prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * A Plannable YouTube Select Lineup for product targeting.
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.YouTubeSelectLineUp} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.YouTubeSelectLineUp) + com.google.ads.googleads.v11.services.YouTubeSelectLineUpOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.YouTubeSelectLineUp.class, com.google.ads.googleads.v11.services.YouTubeSelectLineUp.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.YouTubeSelectLineUp.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + lineupId_ = 0L; + + lineupName_ = ""; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectLineUp_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.YouTubeSelectLineUp.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp build() { + com.google.ads.googleads.v11.services.YouTubeSelectLineUp result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp buildPartial() { + com.google.ads.googleads.v11.services.YouTubeSelectLineUp result = new com.google.ads.googleads.v11.services.YouTubeSelectLineUp(this); + result.lineupId_ = lineupId_; + result.lineupName_ = lineupName_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.YouTubeSelectLineUp) { + return mergeFrom((com.google.ads.googleads.v11.services.YouTubeSelectLineUp)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.YouTubeSelectLineUp other) { + if (other == com.google.ads.googleads.v11.services.YouTubeSelectLineUp.getDefaultInstance()) return this; + if (other.getLineupId() != 0L) { + setLineupId(other.getLineupId()); + } + if (!other.getLineupName().isEmpty()) { + lineupName_ = other.lineupName_; + onChanged(); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.YouTubeSelectLineUp parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.YouTubeSelectLineUp) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private long lineupId_ ; + /** + *
+     * The ID of the YouTube Select Lineup.
+     * 
+ * + * int64 lineup_id = 1; + * @return The lineupId. + */ + @java.lang.Override + public long getLineupId() { + return lineupId_; + } + /** + *
+     * The ID of the YouTube Select Lineup.
+     * 
+ * + * int64 lineup_id = 1; + * @param value The lineupId to set. + * @return This builder for chaining. + */ + public Builder setLineupId(long value) { + + lineupId_ = value; + onChanged(); + return this; + } + /** + *
+     * The ID of the YouTube Select Lineup.
+     * 
+ * + * int64 lineup_id = 1; + * @return This builder for chaining. + */ + public Builder clearLineupId() { + + lineupId_ = 0L; + onChanged(); + return this; + } + + private java.lang.Object lineupName_ = ""; + /** + *
+     * The unique name of the YouTube Select Lineup.
+     * 
+ * + * string lineup_name = 2; + * @return The lineupName. + */ + public java.lang.String getLineupName() { + java.lang.Object ref = lineupName_; + if (!(ref instanceof java.lang.String)) { + com.google.protobuf.ByteString bs = + (com.google.protobuf.ByteString) ref; + java.lang.String s = bs.toStringUtf8(); + lineupName_ = s; + return s; + } else { + return (java.lang.String) ref; + } + } + /** + *
+     * The unique name of the YouTube Select Lineup.
+     * 
+ * + * string lineup_name = 2; + * @return The bytes for lineupName. + */ + public com.google.protobuf.ByteString + getLineupNameBytes() { + java.lang.Object ref = lineupName_; + if (ref instanceof String) { + com.google.protobuf.ByteString b = + com.google.protobuf.ByteString.copyFromUtf8( + (java.lang.String) ref); + lineupName_ = b; + return b; + } else { + return (com.google.protobuf.ByteString) ref; + } + } + /** + *
+     * The unique name of the YouTube Select Lineup.
+     * 
+ * + * string lineup_name = 2; + * @param value The lineupName to set. + * @return This builder for chaining. + */ + public Builder setLineupName( + java.lang.String value) { + if (value == null) { + throw new NullPointerException(); + } + + lineupName_ = value; + onChanged(); + return this; + } + /** + *
+     * The unique name of the YouTube Select Lineup.
+     * 
+ * + * string lineup_name = 2; + * @return This builder for chaining. + */ + public Builder clearLineupName() { + + lineupName_ = getDefaultInstance().getLineupName(); + onChanged(); + return this; + } + /** + *
+     * The unique name of the YouTube Select Lineup.
+     * 
+ * + * string lineup_name = 2; + * @param value The bytes for lineupName to set. + * @return This builder for chaining. + */ + public Builder setLineupNameBytes( + com.google.protobuf.ByteString value) { + if (value == null) { + throw new NullPointerException(); + } + checkByteStringIsUtf8(value); + + lineupName_ = value; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.YouTubeSelectLineUp) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.YouTubeSelectLineUp) + private static final com.google.ads.googleads.v11.services.YouTubeSelectLineUp DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.YouTubeSelectLineUp(); + } + + public static com.google.ads.googleads.v11.services.YouTubeSelectLineUp getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public YouTubeSelectLineUp parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new YouTubeSelectLineUp(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectLineUp getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectLineUpOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectLineUpOrBuilder.java new file mode 100644 index 0000000000..5ead9a5230 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectLineUpOrBuilder.java @@ -0,0 +1,39 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +public interface YouTubeSelectLineUpOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.YouTubeSelectLineUp) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * The ID of the YouTube Select Lineup.
+   * 
+ * + * int64 lineup_id = 1; + * @return The lineupId. + */ + long getLineupId(); + + /** + *
+   * The unique name of the YouTube Select Lineup.
+   * 
+ * + * string lineup_name = 2; + * @return The lineupName. + */ + java.lang.String getLineupName(); + /** + *
+   * The unique name of the YouTube Select Lineup.
+   * 
+ * + * string lineup_name = 2; + * @return The bytes for lineupName. + */ + com.google.protobuf.ByteString + getLineupNameBytes(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectSettings.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectSettings.java new file mode 100644 index 0000000000..02b3ffcdf5 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectSettings.java @@ -0,0 +1,510 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +/** + *
+ * Request settings for YouTube Select Lineups
+ * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.YouTubeSelectSettings} + */ +public final class YouTubeSelectSettings extends + com.google.protobuf.GeneratedMessageV3 implements + // @@protoc_insertion_point(message_implements:google.ads.googleads.v11.services.YouTubeSelectSettings) + YouTubeSelectSettingsOrBuilder { +private static final long serialVersionUID = 0L; + // Use YouTubeSelectSettings.newBuilder() to construct. + private YouTubeSelectSettings(com.google.protobuf.GeneratedMessageV3.Builder builder) { + super(builder); + } + private YouTubeSelectSettings() { + } + + @java.lang.Override + @SuppressWarnings({"unused"}) + protected java.lang.Object newInstance( + UnusedPrivateParameter unused) { + return new YouTubeSelectSettings(); + } + + @java.lang.Override + public final com.google.protobuf.UnknownFieldSet + getUnknownFields() { + return this.unknownFields; + } + private YouTubeSelectSettings( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + this(); + if (extensionRegistry == null) { + throw new java.lang.NullPointerException(); + } + com.google.protobuf.UnknownFieldSet.Builder unknownFields = + com.google.protobuf.UnknownFieldSet.newBuilder(); + try { + boolean done = false; + while (!done) { + int tag = input.readTag(); + switch (tag) { + case 0: + done = true; + break; + case 8: { + + lineupId_ = input.readInt64(); + break; + } + default: { + if (!parseUnknownField( + input, unknownFields, extensionRegistry, tag)) { + done = true; + } + break; + } + } + } + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + throw e.setUnfinishedMessage(this); + } catch (com.google.protobuf.UninitializedMessageException e) { + throw e.asInvalidProtocolBufferException().setUnfinishedMessage(this); + } catch (java.io.IOException e) { + throw new com.google.protobuf.InvalidProtocolBufferException( + e).setUnfinishedMessage(this); + } finally { + this.unknownFields = unknownFields.build(); + makeExtensionsImmutable(); + } + } + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.YouTubeSelectSettings.class, com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder.class); + } + + public static final int LINEUP_ID_FIELD_NUMBER = 1; + private long lineupId_; + /** + *
+   * Lineup for YouTube Select Targeting.
+   * 
+ * + * int64 lineup_id = 1; + * @return The lineupId. + */ + @java.lang.Override + public long getLineupId() { + return lineupId_; + } + + private byte memoizedIsInitialized = -1; + @java.lang.Override + public final boolean isInitialized() { + byte isInitialized = memoizedIsInitialized; + if (isInitialized == 1) return true; + if (isInitialized == 0) return false; + + memoizedIsInitialized = 1; + return true; + } + + @java.lang.Override + public void writeTo(com.google.protobuf.CodedOutputStream output) + throws java.io.IOException { + if (lineupId_ != 0L) { + output.writeInt64(1, lineupId_); + } + unknownFields.writeTo(output); + } + + @java.lang.Override + public int getSerializedSize() { + int size = memoizedSize; + if (size != -1) return size; + + size = 0; + if (lineupId_ != 0L) { + size += com.google.protobuf.CodedOutputStream + .computeInt64Size(1, lineupId_); + } + size += unknownFields.getSerializedSize(); + memoizedSize = size; + return size; + } + + @java.lang.Override + public boolean equals(final java.lang.Object obj) { + if (obj == this) { + return true; + } + if (!(obj instanceof com.google.ads.googleads.v11.services.YouTubeSelectSettings)) { + return super.equals(obj); + } + com.google.ads.googleads.v11.services.YouTubeSelectSettings other = (com.google.ads.googleads.v11.services.YouTubeSelectSettings) obj; + + if (getLineupId() + != other.getLineupId()) return false; + if (!unknownFields.equals(other.unknownFields)) return false; + return true; + } + + @java.lang.Override + public int hashCode() { + if (memoizedHashCode != 0) { + return memoizedHashCode; + } + int hash = 41; + hash = (19 * hash) + getDescriptor().hashCode(); + hash = (37 * hash) + LINEUP_ID_FIELD_NUMBER; + hash = (53 * hash) + com.google.protobuf.Internal.hashLong( + getLineupId()); + hash = (29 * hash) + unknownFields.hashCode(); + memoizedHashCode = hash; + return hash; + } + + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + java.nio.ByteBuffer data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + java.nio.ByteBuffer data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + com.google.protobuf.ByteString data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + com.google.protobuf.ByteString data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom(byte[] data) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + byte[] data, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return PARSER.parseFrom(data, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseDelimitedFrom(java.io.InputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseDelimitedFrom( + java.io.InputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseDelimitedWithIOException(PARSER, input, extensionRegistry); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + com.google.protobuf.CodedInputStream input) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input); + } + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings parseFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + return com.google.protobuf.GeneratedMessageV3 + .parseWithIOException(PARSER, input, extensionRegistry); + } + + @java.lang.Override + public Builder newBuilderForType() { return newBuilder(); } + public static Builder newBuilder() { + return DEFAULT_INSTANCE.toBuilder(); + } + public static Builder newBuilder(com.google.ads.googleads.v11.services.YouTubeSelectSettings prototype) { + return DEFAULT_INSTANCE.toBuilder().mergeFrom(prototype); + } + @java.lang.Override + public Builder toBuilder() { + return this == DEFAULT_INSTANCE + ? new Builder() : new Builder().mergeFrom(this); + } + + @java.lang.Override + protected Builder newBuilderForType( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + Builder builder = new Builder(parent); + return builder; + } + /** + *
+   * Request settings for YouTube Select Lineups
+   * 
+ * + * Protobuf type {@code google.ads.googleads.v11.services.YouTubeSelectSettings} + */ + public static final class Builder extends + com.google.protobuf.GeneratedMessageV3.Builder implements + // @@protoc_insertion_point(builder_implements:google.ads.googleads.v11.services.YouTubeSelectSettings) + com.google.ads.googleads.v11.services.YouTubeSelectSettingsOrBuilder { + public static final com.google.protobuf.Descriptors.Descriptor + getDescriptor() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_descriptor; + } + + @java.lang.Override + protected com.google.protobuf.GeneratedMessageV3.FieldAccessorTable + internalGetFieldAccessorTable() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_fieldAccessorTable + .ensureFieldAccessorsInitialized( + com.google.ads.googleads.v11.services.YouTubeSelectSettings.class, com.google.ads.googleads.v11.services.YouTubeSelectSettings.Builder.class); + } + + // Construct using com.google.ads.googleads.v11.services.YouTubeSelectSettings.newBuilder() + private Builder() { + maybeForceBuilderInitialization(); + } + + private Builder( + com.google.protobuf.GeneratedMessageV3.BuilderParent parent) { + super(parent); + maybeForceBuilderInitialization(); + } + private void maybeForceBuilderInitialization() { + if (com.google.protobuf.GeneratedMessageV3 + .alwaysUseFieldBuilders) { + } + } + @java.lang.Override + public Builder clear() { + super.clear(); + lineupId_ = 0L; + + return this; + } + + @java.lang.Override + public com.google.protobuf.Descriptors.Descriptor + getDescriptorForType() { + return com.google.ads.googleads.v11.services.ReachPlanServiceProto.internal_static_google_ads_googleads_v11_services_YouTubeSelectSettings_descriptor; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettings getDefaultInstanceForType() { + return com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance(); + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettings build() { + com.google.ads.googleads.v11.services.YouTubeSelectSettings result = buildPartial(); + if (!result.isInitialized()) { + throw newUninitializedMessageException(result); + } + return result; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettings buildPartial() { + com.google.ads.googleads.v11.services.YouTubeSelectSettings result = new com.google.ads.googleads.v11.services.YouTubeSelectSettings(this); + result.lineupId_ = lineupId_; + onBuilt(); + return result; + } + + @java.lang.Override + public Builder clone() { + return super.clone(); + } + @java.lang.Override + public Builder setField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.setField(field, value); + } + @java.lang.Override + public Builder clearField( + com.google.protobuf.Descriptors.FieldDescriptor field) { + return super.clearField(field); + } + @java.lang.Override + public Builder clearOneof( + com.google.protobuf.Descriptors.OneofDescriptor oneof) { + return super.clearOneof(oneof); + } + @java.lang.Override + public Builder setRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + int index, java.lang.Object value) { + return super.setRepeatedField(field, index, value); + } + @java.lang.Override + public Builder addRepeatedField( + com.google.protobuf.Descriptors.FieldDescriptor field, + java.lang.Object value) { + return super.addRepeatedField(field, value); + } + @java.lang.Override + public Builder mergeFrom(com.google.protobuf.Message other) { + if (other instanceof com.google.ads.googleads.v11.services.YouTubeSelectSettings) { + return mergeFrom((com.google.ads.googleads.v11.services.YouTubeSelectSettings)other); + } else { + super.mergeFrom(other); + return this; + } + } + + public Builder mergeFrom(com.google.ads.googleads.v11.services.YouTubeSelectSettings other) { + if (other == com.google.ads.googleads.v11.services.YouTubeSelectSettings.getDefaultInstance()) return this; + if (other.getLineupId() != 0L) { + setLineupId(other.getLineupId()); + } + this.mergeUnknownFields(other.unknownFields); + onChanged(); + return this; + } + + @java.lang.Override + public final boolean isInitialized() { + return true; + } + + @java.lang.Override + public Builder mergeFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws java.io.IOException { + com.google.ads.googleads.v11.services.YouTubeSelectSettings parsedMessage = null; + try { + parsedMessage = PARSER.parsePartialFrom(input, extensionRegistry); + } catch (com.google.protobuf.InvalidProtocolBufferException e) { + parsedMessage = (com.google.ads.googleads.v11.services.YouTubeSelectSettings) e.getUnfinishedMessage(); + throw e.unwrapIOException(); + } finally { + if (parsedMessage != null) { + mergeFrom(parsedMessage); + } + } + return this; + } + + private long lineupId_ ; + /** + *
+     * Lineup for YouTube Select Targeting.
+     * 
+ * + * int64 lineup_id = 1; + * @return The lineupId. + */ + @java.lang.Override + public long getLineupId() { + return lineupId_; + } + /** + *
+     * Lineup for YouTube Select Targeting.
+     * 
+ * + * int64 lineup_id = 1; + * @param value The lineupId to set. + * @return This builder for chaining. + */ + public Builder setLineupId(long value) { + + lineupId_ = value; + onChanged(); + return this; + } + /** + *
+     * Lineup for YouTube Select Targeting.
+     * 
+ * + * int64 lineup_id = 1; + * @return This builder for chaining. + */ + public Builder clearLineupId() { + + lineupId_ = 0L; + onChanged(); + return this; + } + @java.lang.Override + public final Builder setUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.setUnknownFields(unknownFields); + } + + @java.lang.Override + public final Builder mergeUnknownFields( + final com.google.protobuf.UnknownFieldSet unknownFields) { + return super.mergeUnknownFields(unknownFields); + } + + + // @@protoc_insertion_point(builder_scope:google.ads.googleads.v11.services.YouTubeSelectSettings) + } + + // @@protoc_insertion_point(class_scope:google.ads.googleads.v11.services.YouTubeSelectSettings) + private static final com.google.ads.googleads.v11.services.YouTubeSelectSettings DEFAULT_INSTANCE; + static { + DEFAULT_INSTANCE = new com.google.ads.googleads.v11.services.YouTubeSelectSettings(); + } + + public static com.google.ads.googleads.v11.services.YouTubeSelectSettings getDefaultInstance() { + return DEFAULT_INSTANCE; + } + + private static final com.google.protobuf.Parser + PARSER = new com.google.protobuf.AbstractParser() { + @java.lang.Override + public YouTubeSelectSettings parsePartialFrom( + com.google.protobuf.CodedInputStream input, + com.google.protobuf.ExtensionRegistryLite extensionRegistry) + throws com.google.protobuf.InvalidProtocolBufferException { + return new YouTubeSelectSettings(input, extensionRegistry); + } + }; + + public static com.google.protobuf.Parser parser() { + return PARSER; + } + + @java.lang.Override + public com.google.protobuf.Parser getParserForType() { + return PARSER; + } + + @java.lang.Override + public com.google.ads.googleads.v11.services.YouTubeSelectSettings getDefaultInstanceForType() { + return DEFAULT_INSTANCE; + } + +} + diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectSettingsOrBuilder.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectSettingsOrBuilder.java new file mode 100644 index 0000000000..1c3259e882 --- /dev/null +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/YouTubeSelectSettingsOrBuilder.java @@ -0,0 +1,19 @@ +// Generated by the protocol buffer compiler. DO NOT EDIT! +// source: google/ads/googleads/v11/services/reach_plan_service.proto + +package com.google.ads.googleads.v11.services; + +public interface YouTubeSelectSettingsOrBuilder extends + // @@protoc_insertion_point(interface_extends:google.ads.googleads.v11.services.YouTubeSelectSettings) + com.google.protobuf.MessageOrBuilder { + + /** + *
+   * Lineup for YouTube Select Targeting.
+   * 
+ * + * int64 lineup_id = 1; + * @return The lineupId. + */ + long getLineupId(); +} diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/gapic_metadata.json b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/gapic_metadata.json index 42112aa6f9..f07f76e71b 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/gapic_metadata.json +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/gapic_metadata.json @@ -292,6 +292,9 @@ "grpc": { "libraryClient": "AudienceInsightsServiceClient", "rpcs": { + "GenerateAudienceCompositionInsights": { + "methods": ["generateAudienceCompositionInsights", "generateAudienceCompositionInsights", "generateAudienceCompositionInsightsCallable"] + }, "GenerateInsightsFinderReport": { "methods": ["generateInsightsFinderReport", "generateInsightsFinderReport", "generateInsightsFinderReportCallable"] }, diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/package-info.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/package-info.java index 4588c13ebd..90a295ef52 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/package-info.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/package-info.java @@ -19,7 +19,7 @@ * *

======================= AccountBudgetProposalServiceClient ======================= * - *

Service Description: A service for managing account-level budgets via proposals. + *

Service Description: A service for managing account-level budgets through proposals. * *

A proposal is a request to create a new budget or make changes to an existing one. * @@ -1878,8 +1878,8 @@ *

======================= UserDataServiceClient ======================= * *

Service Description: Service to manage user data uploads. Any uploads made to a Customer Match - * list via this service will be eligible for matching as per the customer matching process. Please - * see https://support.google.com/google-ads/answer/7474263. However, the uploads made via this + * list through this service will be eligible for matching as per the customer matching process. See + * https://support.google.com/google-ads/answer/7474263. However, the uploads made through this * service will not be visible under the 'Segment members' section for the Customer Match List in * the Google Ads UI. * diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStub.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStub.java index 90b259911c..cfc94e35ee 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStub.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStub.java @@ -16,6 +16,8 @@ package com.google.ads.googleads.v11.services.stub; +import com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest; +import com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse; import com.google.ads.googleads.v11.services.GenerateInsightsFinderReportRequest; import com.google.ads.googleads.v11.services.GenerateInsightsFinderReportResponse; import com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesRequest; @@ -46,6 +48,13 @@ public abstract class AudienceInsightsServiceStub implements BackgroundResource "Not implemented: listAudienceInsightsAttributesCallable()"); } + public UnaryCallable< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsCallable() { + throw new UnsupportedOperationException( + "Not implemented: generateAudienceCompositionInsightsCallable()"); + } + @Override public abstract void close(); } diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStubSettings.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStubSettings.java index 22234a59e8..fb8ff931e5 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStubSettings.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/AudienceInsightsServiceStubSettings.java @@ -16,6 +16,8 @@ package com.google.ads.googleads.v11.services.stub; +import com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest; +import com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse; import com.google.ads.googleads.v11.services.GenerateInsightsFinderReportRequest; import com.google.ads.googleads.v11.services.GenerateInsightsFinderReportResponse; import com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesRequest; @@ -92,6 +94,9 @@ public class AudienceInsightsServiceStubSettings private final UnaryCallSettings< ListAudienceInsightsAttributesRequest, ListAudienceInsightsAttributesResponse> listAudienceInsightsAttributesSettings; + private final UnaryCallSettings< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsSettings; /** Returns the object with the settings used for calls to generateInsightsFinderReport. */ public UnaryCallSettings< @@ -107,6 +112,13 @@ public class AudienceInsightsServiceStubSettings return listAudienceInsightsAttributesSettings; } + /** Returns the object with the settings used for calls to generateAudienceCompositionInsights. */ + public UnaryCallSettings< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsSettings() { + return generateAudienceCompositionInsightsSettings; + } + public AudienceInsightsServiceStub createStub() throws IOException { if (getTransportChannelProvider() .getTransportName() @@ -186,6 +198,8 @@ protected AudienceInsightsServiceStubSettings(Builder settingsBuilder) throws IO settingsBuilder.generateInsightsFinderReportSettings().build(); listAudienceInsightsAttributesSettings = settingsBuilder.listAudienceInsightsAttributesSettings().build(); + generateAudienceCompositionInsightsSettings = + settingsBuilder.generateAudienceCompositionInsightsSettings().build(); } /** Builder for AudienceInsightsServiceStubSettings. */ @@ -198,6 +212,9 @@ public static class Builder private final UnaryCallSettings.Builder< ListAudienceInsightsAttributesRequest, ListAudienceInsightsAttributesResponse> listAudienceInsightsAttributesSettings; + private final UnaryCallSettings.Builder< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsSettings; private static final ImmutableMap> RETRYABLE_CODE_DEFINITIONS; @@ -240,10 +257,13 @@ protected Builder(ClientContext clientContext) { generateInsightsFinderReportSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); listAudienceInsightsAttributesSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); + generateAudienceCompositionInsightsSettings = UnaryCallSettings.newUnaryCallSettingsBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( - generateInsightsFinderReportSettings, listAudienceInsightsAttributesSettings); + generateInsightsFinderReportSettings, + listAudienceInsightsAttributesSettings, + generateAudienceCompositionInsightsSettings); initDefaults(this); } @@ -254,10 +274,14 @@ protected Builder(AudienceInsightsServiceStubSettings settings) { settings.generateInsightsFinderReportSettings.toBuilder(); listAudienceInsightsAttributesSettings = settings.listAudienceInsightsAttributesSettings.toBuilder(); + generateAudienceCompositionInsightsSettings = + settings.generateAudienceCompositionInsightsSettings.toBuilder(); unaryMethodSettingsBuilders = ImmutableList.>of( - generateInsightsFinderReportSettings, listAudienceInsightsAttributesSettings); + generateInsightsFinderReportSettings, + listAudienceInsightsAttributesSettings, + generateAudienceCompositionInsightsSettings); } private static Builder createDefault() { @@ -284,6 +308,11 @@ private static Builder initDefaults(Builder builder) { .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); + builder + .generateAudienceCompositionInsightsSettings() + .setRetryableCodes(RETRYABLE_CODE_DEFINITIONS.get("retry_policy_0_codes")) + .setRetrySettings(RETRY_PARAM_DEFINITIONS.get("retry_policy_0_params")); + return builder; } @@ -316,6 +345,15 @@ public Builder applyToAllUnaryMethods( return listAudienceInsightsAttributesSettings; } + /** + * Returns the builder for the settings used for calls to generateAudienceCompositionInsights. + */ + public UnaryCallSettings.Builder< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsSettings() { + return generateAudienceCompositionInsightsSettings; + } + @Override public AudienceInsightsServiceStubSettings build() throws IOException { return new AudienceInsightsServiceStubSettings(this); diff --git a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/GrpcAudienceInsightsServiceStub.java b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/GrpcAudienceInsightsServiceStub.java index 5a6b617452..0f1a8289cc 100644 --- a/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/GrpcAudienceInsightsServiceStub.java +++ b/google-ads-stubs-v11/src/main/java/com/google/ads/googleads/v11/services/stub/GrpcAudienceInsightsServiceStub.java @@ -16,6 +16,8 @@ package com.google.ads.googleads.v11.services.stub; +import com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsRequest; +import com.google.ads.googleads.v11.services.GenerateAudienceCompositionInsightsResponse; import com.google.ads.googleads.v11.services.GenerateInsightsFinderReportRequest; import com.google.ads.googleads.v11.services.GenerateInsightsFinderReportResponse; import com.google.ads.googleads.v11.services.ListAudienceInsightsAttributesRequest; @@ -74,12 +76,33 @@ public class GrpcAudienceInsightsServiceStub extends AudienceInsightsServiceStub ListAudienceInsightsAttributesResponse.getDefaultInstance())) .build(); + private static final MethodDescriptor< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsMethodDescriptor = + MethodDescriptor + . + newBuilder() + .setType(MethodDescriptor.MethodType.UNARY) + .setFullMethodName( + "google.ads.googleads.v11.services.AudienceInsightsService/GenerateAudienceCompositionInsights") + .setRequestMarshaller( + ProtoUtils.marshaller( + GenerateAudienceCompositionInsightsRequest.getDefaultInstance())) + .setResponseMarshaller( + ProtoUtils.marshaller( + GenerateAudienceCompositionInsightsResponse.getDefaultInstance())) + .build(); + private final UnaryCallable< GenerateInsightsFinderReportRequest, GenerateInsightsFinderReportResponse> generateInsightsFinderReportCallable; private final UnaryCallable< ListAudienceInsightsAttributesRequest, ListAudienceInsightsAttributesResponse> listAudienceInsightsAttributesCallable; + private final UnaryCallable< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsCallable; private final BackgroundResource backgroundResources; private final GrpcOperationsStub operationsStub; @@ -152,6 +175,21 @@ protected GrpcAudienceInsightsServiceStub( return params.build(); }) .build(); + GrpcCallSettings< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsTransportSettings = + GrpcCallSettings + . + newBuilder() + .setMethodDescriptor(generateAudienceCompositionInsightsMethodDescriptor) + .setParamsExtractor( + request -> { + ImmutableMap.Builder params = ImmutableMap.builder(); + params.put("customer_id", String.valueOf(request.getCustomerId())); + return params.build(); + }) + .build(); this.generateInsightsFinderReportCallable = callableFactory.createUnaryCallable( @@ -163,6 +201,11 @@ protected GrpcAudienceInsightsServiceStub( listAudienceInsightsAttributesTransportSettings, settings.listAudienceInsightsAttributesSettings(), clientContext); + this.generateAudienceCompositionInsightsCallable = + callableFactory.createUnaryCallable( + generateAudienceCompositionInsightsTransportSettings, + settings.generateAudienceCompositionInsightsSettings(), + clientContext); this.backgroundResources = new BackgroundResourceAggregation(clientContext.getBackgroundResources()); @@ -185,6 +228,13 @@ public GrpcOperationsStub getOperationsStub() { return listAudienceInsightsAttributesCallable; } + @Override + public UnaryCallable< + GenerateAudienceCompositionInsightsRequest, GenerateAudienceCompositionInsightsResponse> + generateAudienceCompositionInsightsCallable() { + return generateAudienceCompositionInsightsCallable; + } + @Override public final void close() { try { diff --git a/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClientTest.java b/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClientTest.java index 9fe8aa2b93..cc92e0197f 100644 --- a/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClientTest.java +++ b/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/AudienceInsightsServiceClientTest.java @@ -169,4 +169,50 @@ public void listAudienceInsightsAttributesExceptionTest() throws Exception { // Expected exception. } } + + @Test + public void generateAudienceCompositionInsightsTest() throws Exception { + GenerateAudienceCompositionInsightsResponse expectedResponse = + GenerateAudienceCompositionInsightsResponse.newBuilder() + .addAllSections(new ArrayList()) + .build(); + mockAudienceInsightsService.addResponse(expectedResponse); + + String customerId = "customerId-1581184615"; + InsightsAudience audience = InsightsAudience.newBuilder().build(); + List dimensions = new ArrayList<>(); + + GenerateAudienceCompositionInsightsResponse actualResponse = + client.generateAudienceCompositionInsights(customerId, audience, dimensions); + Assert.assertEquals(expectedResponse, actualResponse); + + List actualRequests = mockAudienceInsightsService.getRequests(); + Assert.assertEquals(1, actualRequests.size()); + GenerateAudienceCompositionInsightsRequest actualRequest = + ((GenerateAudienceCompositionInsightsRequest) actualRequests.get(0)); + + Assert.assertEquals(customerId, actualRequest.getCustomerId()); + Assert.assertEquals(audience, actualRequest.getAudience()); + Assert.assertEquals(dimensions, actualRequest.getDimensionsList()); + Assert.assertTrue( + channelProvider.isHeaderSent( + ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), + GaxGrpcProperties.getDefaultApiClientHeaderPattern())); + } + + @Test + public void generateAudienceCompositionInsightsExceptionTest() throws Exception { + StatusRuntimeException exception = new StatusRuntimeException(io.grpc.Status.INVALID_ARGUMENT); + mockAudienceInsightsService.addException(exception); + + try { + String customerId = "customerId-1581184615"; + InsightsAudience audience = InsightsAudience.newBuilder().build(); + List dimensions = new ArrayList<>(); + client.generateAudienceCompositionInsights(customerId, audience, dimensions); + Assert.fail("No exception raised"); + } catch (InvalidArgumentException e) { + // Expected exception. + } + } } diff --git a/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/MockAudienceInsightsServiceImpl.java b/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/MockAudienceInsightsServiceImpl.java index 12743e3c99..27e1e3eaec 100644 --- a/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/MockAudienceInsightsServiceImpl.java +++ b/google-ads-stubs-v11/src/test/java/com/google/ads/googleads/v11/services/MockAudienceInsightsServiceImpl.java @@ -101,4 +101,26 @@ public void listAudienceInsightsAttributes( Exception.class.getName()))); } } + + @Override + public void generateAudienceCompositionInsights( + GenerateAudienceCompositionInsightsRequest request, + StreamObserver responseObserver) { + Object response = responses.poll(); + if (response instanceof GenerateAudienceCompositionInsightsResponse) { + requests.add(request); + responseObserver.onNext(((GenerateAudienceCompositionInsightsResponse) response)); + responseObserver.onCompleted(); + } else if (response instanceof Exception) { + responseObserver.onError(((Exception) response)); + } else { + responseObserver.onError( + new IllegalArgumentException( + String.format( + "Unrecognized response type %s for method GenerateAudienceCompositionInsights, expected %s or %s", + response == null ? "null" : response.getClass().getName(), + GenerateAudienceCompositionInsightsResponse.class.getName(), + Exception.class.getName()))); + } + } } diff --git a/google-ads/src/test/java/com/google/ads/googleads/lib/catalog/ApiCatalogTest.java b/google-ads/src/test/java/com/google/ads/googleads/lib/catalog/ApiCatalogTest.java index 7b319d8324..cfd5315f26 100644 --- a/google-ads/src/test/java/com/google/ads/googleads/lib/catalog/ApiCatalogTest.java +++ b/google-ads/src/test/java/com/google/ads/googleads/lib/catalog/ApiCatalogTest.java @@ -22,7 +22,7 @@ import com.google.ads.googleads.lib.FakeCredential; import com.google.ads.googleads.lib.GoogleAdsAllVersions; import com.google.ads.googleads.lib.stubs.exceptions.BaseGoogleAdsException; -import com.google.ads.googleads.v10.services.MockGoogleAdsService; +import com.google.ads.googleads.v11.services.MockGoogleAdsService; import com.google.api.gax.grpc.GrpcStatusCode; import com.google.api.gax.grpc.testing.LocalChannelProvider; import com.google.api.gax.grpc.testing.MockServiceHelper; diff --git a/google-ads/src/test/java/com/google/ads/googleads/lib/logging/LoggingInterceptorTest.java b/google-ads/src/test/java/com/google/ads/googleads/lib/logging/LoggingInterceptorTest.java index f51da41603..d9d0d61d61 100644 --- a/google-ads/src/test/java/com/google/ads/googleads/lib/logging/LoggingInterceptorTest.java +++ b/google-ads/src/test/java/com/google/ads/googleads/lib/logging/LoggingInterceptorTest.java @@ -24,11 +24,11 @@ import com.google.ads.googleads.lib.logging.Event.Detail; import com.google.ads.googleads.lib.logging.Event.Summary; import com.google.ads.googleads.lib.utils.FieldMasks; -import com.google.ads.googleads.v10.resources.CustomerUserAccess; -import com.google.ads.googleads.v10.resources.Feed; -import com.google.ads.googleads.v10.services.CreateCustomerClientRequest; -import com.google.ads.googleads.v10.services.SearchGoogleAdsResponse; -import com.google.ads.googleads.v10.services.SearchGoogleAdsStreamResponse; +import com.google.ads.googleads.v11.resources.CustomerUserAccess; +import com.google.ads.googleads.v11.resources.Feed; +import com.google.ads.googleads.v11.services.CreateCustomerClientRequest; +import com.google.ads.googleads.v11.services.SearchGoogleAdsResponse; +import com.google.ads.googleads.v11.services.SearchGoogleAdsStreamResponse; import com.google.common.collect.ImmutableMap; import com.google.protobuf.InvalidProtocolBufferException; import com.google.protobuf.Message; diff --git a/google-ads/src/test/java/com/google/ads/googleads/lib/logging/scrub/LogScrubberTest.java b/google-ads/src/test/java/com/google/ads/googleads/lib/logging/scrub/LogScrubberTest.java index 32955d112a..a9d304fb26 100644 --- a/google-ads/src/test/java/com/google/ads/googleads/lib/logging/scrub/LogScrubberTest.java +++ b/google-ads/src/test/java/com/google/ads/googleads/lib/logging/scrub/LogScrubberTest.java @@ -16,10 +16,10 @@ import static org.junit.Assert.assertEquals; -import com.google.ads.googleads.v10.resources.CustomerUserAccessInvitation; -import com.google.ads.googleads.v10.services.CreateCustomerClientRequest; -import com.google.ads.googleads.v10.services.SearchGoogleAdsResponse; -import com.google.ads.googleads.v10.services.SearchGoogleAdsStreamResponse; +import com.google.ads.googleads.v11.resources.CustomerUserAccessInvitation; +import com.google.ads.googleads.v11.services.CreateCustomerClientRequest; +import com.google.ads.googleads.v11.services.SearchGoogleAdsResponse; +import com.google.ads.googleads.v11.services.SearchGoogleAdsStreamResponse; import com.google.common.io.Resources; import com.google.protobuf.Message; import com.google.protobuf.TextFormat; @@ -44,51 +44,51 @@ public class LogScrubberTest { public static List parameters() { return Arrays.asList( new Object[] { - "v10 search stream scrubs email", - "searchStream_v10_email_expected.textpb", - "searchStream_v10_email_input.textpb", + "search stream scrubs email", + "searchStream_email_expected.textpb", + "searchStream_email_input.textpb", SearchGoogleAdsStreamResponse.class }, new Object[] { - "v10 search stream scrubs inviter email", - "searchStream_v10_inviter_email_expected.textpb", - "searchStream_v10_inviter_email_input.textpb", + "search stream scrubs inviter email", + "searchStream_inviter_email_expected.textpb", + "searchStream_inviter_email_input.textpb", SearchGoogleAdsStreamResponse.class }, new Object[] { - "v10 search stream ignores when not present", - "searchStream_v10_ignoresWhenNotPresent_expected.textpb", - "searchStream_v10_ignoresWhenNotPresent_input.textpb", + "search stream ignores when not present", + "searchStream_ignoresWhenNotPresent_expected.textpb", + "searchStream_ignoresWhenNotPresent_input.textpb", SearchGoogleAdsStreamResponse.class }, new Object[] { - "v10 ignores other message", - "searchStream_v10_ignoresOtherMessage_expected.textpb", - "searchStream_v10_ignoresOtherMessage_input.textpb", + "ignores other message", + "searchStream_ignoresOtherMessage_expected.textpb", + "searchStream_ignoresOtherMessage_input.textpb", SearchGoogleAdsStreamResponse.class }, new Object[] { - "v10 search stream scrubs email", - "searchStream_v10_email_expected.textpb", - "searchStream_v10_email_input.textpb", + "search stream scrubs email", + "searchStream_email_expected.textpb", + "searchStream_email_input.textpb", SearchGoogleAdsResponse.class }, new Object[] { - "v10 search stream scrubs inviter email", - "searchStream_v10_inviter_email_expected.textpb", - "searchStream_v10_inviter_email_input.textpb", + "search stream scrubs inviter email", + "searchStream_inviter_email_expected.textpb", + "searchStream_inviter_email_input.textpb", SearchGoogleAdsResponse.class }, new Object[] { - "v10 search stream ignores when not present", - "searchStream_v10_ignoresWhenNotPresent_expected.textpb", - "searchStream_v10_ignoresWhenNotPresent_input.textpb", + "search stream ignores when not present", + "searchStream_ignoresWhenNotPresent_expected.textpb", + "searchStream_ignoresWhenNotPresent_input.textpb", SearchGoogleAdsResponse.class }, new Object[] { - "v10 ignores other message", - "searchStream_v10_ignoresOtherMessage_expected.textpb", - "searchStream_v10_ignoresOtherMessage_input.textpb", + "ignores other message", + "searchStream_ignoresOtherMessage_expected.textpb", + "searchStream_ignoresOtherMessage_input.textpb", SearchGoogleAdsResponse.class }, new Object[] { @@ -105,14 +105,14 @@ public static List parameters() { }, new Object[] { "search stream masks invitation email address", - "searchStream_v10_scrubsInvitationEmailAddress_expected.textpb", - "searchStream_v10_scrubsInvitationEmailAddress_input.textpb", + "searchStream_scrubsInvitationEmailAddress_expected.textpb", + "searchStream_scrubsInvitationEmailAddress_input.textpb", SearchGoogleAdsStreamResponse.class }, new Object[] { "search stream masks invitation email address", - "searchStream_v10_scrubsInvitationEmailAddress_expected.textpb", - "searchStream_v10_scrubsInvitationEmailAddress_input.textpb", + "searchStream_scrubsInvitationEmailAddress_expected.textpb", + "searchStream_scrubsInvitationEmailAddress_input.textpb", SearchGoogleAdsResponse.class }, new Object[] { diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_email_expected.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_email_expected.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_email_expected.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_email_expected.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_email_input.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_email_input.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_email_input.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_email_input.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresOtherMessage_expected.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresOtherMessage_expected.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresOtherMessage_expected.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresOtherMessage_expected.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresOtherMessage_input.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresOtherMessage_input.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresOtherMessage_input.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresOtherMessage_input.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresWhenNotPresent_expected.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresWhenNotPresent_expected.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresWhenNotPresent_expected.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresWhenNotPresent_expected.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresWhenNotPresent_input.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresWhenNotPresent_input.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_ignoresWhenNotPresent_input.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_ignoresWhenNotPresent_input.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_inviter_email_expected.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_inviter_email_expected.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_inviter_email_expected.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_inviter_email_expected.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_inviter_email_input.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_inviter_email_input.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_inviter_email_input.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_inviter_email_input.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_scrubsInvitationEmailAddress_expected.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_scrubsInvitationEmailAddress_expected.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_scrubsInvitationEmailAddress_expected.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_scrubsInvitationEmailAddress_expected.textpb diff --git a/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_scrubsInvitationEmailAddress_input.textpb b/google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_scrubsInvitationEmailAddress_input.textpb similarity index 100% rename from google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_v10_scrubsInvitationEmailAddress_input.textpb rename to google-ads/src/test/resources/com/google/ads/googleads/lib/logging/scrub/searchStream_scrubsInvitationEmailAddress_input.textpb