All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.services.realtimebidding.v1.model.AppTargeting Maven / Gradle / Ivy

There is a newer version: v1-rev20240930-2.0.0
Show newest version
/*
 * 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
 *
 * http://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.
 */
/*
 * This code was generated by https://github.com/googleapis/google-api-java-client-services/
 * Modify at your own risk.
 */

package com.google.api.services.realtimebidding.v1.model;

/**
 * A subset of app inventory to target. Bid requests that match criteria in at least one of the
 * specified dimensions will be sent.
 *
 * 

This is the Java data model class that specifies how to parse/serialize into the JSON that is * transmitted over HTTP when working with the Real-time Bidding API. For a detailed explanation * see: * https://developers.google.com/api-client-library/java/google-http-java-client/json *

* * @author Google, Inc. */ @SuppressWarnings("javadoc") public final class AppTargeting extends com.google.api.client.json.GenericJson { /** * Lists of included and excluded mobile app categories as defined in * https://developers.google.com/adwords/api/docs/appendix/mobileappcategories.csv. * The value may be {@code null}. */ @com.google.api.client.util.Key private NumericTargetingDimension mobileAppCategoryTargeting; /** * Targeted app IDs. App IDs can refer to those found in an app store or ones that are not * published in an app store. A maximum of 30,000 app IDs can be targeted. * The value may be {@code null}. */ @com.google.api.client.util.Key private StringTargetingDimension mobileAppTargeting; /** * Lists of included and excluded mobile app categories as defined in * https://developers.google.com/adwords/api/docs/appendix/mobileappcategories.csv. * @return value or {@code null} for none */ public NumericTargetingDimension getMobileAppCategoryTargeting() { return mobileAppCategoryTargeting; } /** * Lists of included and excluded mobile app categories as defined in * https://developers.google.com/adwords/api/docs/appendix/mobileappcategories.csv. * @param mobileAppCategoryTargeting mobileAppCategoryTargeting or {@code null} for none */ public AppTargeting setMobileAppCategoryTargeting(NumericTargetingDimension mobileAppCategoryTargeting) { this.mobileAppCategoryTargeting = mobileAppCategoryTargeting; return this; } /** * Targeted app IDs. App IDs can refer to those found in an app store or ones that are not * published in an app store. A maximum of 30,000 app IDs can be targeted. * @return value or {@code null} for none */ public StringTargetingDimension getMobileAppTargeting() { return mobileAppTargeting; } /** * Targeted app IDs. App IDs can refer to those found in an app store or ones that are not * published in an app store. A maximum of 30,000 app IDs can be targeted. * @param mobileAppTargeting mobileAppTargeting or {@code null} for none */ public AppTargeting setMobileAppTargeting(StringTargetingDimension mobileAppTargeting) { this.mobileAppTargeting = mobileAppTargeting; return this; } @Override public AppTargeting set(String fieldName, Object value) { return (AppTargeting) super.set(fieldName, value); } @Override public AppTargeting clone() { return (AppTargeting) super.clone(); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy