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

com.google.api.ads.dfp.jaxws.v201605.GrpSettings Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

package com.google.api.ads.dfp.jaxws.v201605;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             {@code GrpSettings} contains information for a line item that will have a target demographic
 *             when serving. This information will be used to set up tracking and enable reporting on the
 *             demographic information.
 *           
 * 
 * 

Java class for GrpSettings complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="GrpSettings">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="minTargetAge" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="maxTargetAge" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="targetGender" type="{https://www.google.com/apis/ads/publisher/v201605}GrpTargetGender" minOccurs="0"/>
 *         <element name="provider" type="{https://www.google.com/apis/ads/publisher/v201605}GrpProvider" minOccurs="0"/>
 *         <element name="targetImpressionGoal" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "GrpSettings", propOrder = { "minTargetAge", "maxTargetAge", "targetGender", "provider", "targetImpressionGoal" }) public class GrpSettings { protected Long minTargetAge; protected Long maxTargetAge; @XmlSchemaType(name = "string") protected GrpTargetGender targetGender; @XmlSchemaType(name = "string") protected GrpProvider provider; protected Long targetImpressionGoal; /** * Gets the value of the minTargetAge property. * * @return * possible object is * {@link Long } * */ public Long getMinTargetAge() { return minTargetAge; } /** * Sets the value of the minTargetAge property. * * @param value * allowed object is * {@link Long } * */ public void setMinTargetAge(Long value) { this.minTargetAge = value; } /** * Gets the value of the maxTargetAge property. * * @return * possible object is * {@link Long } * */ public Long getMaxTargetAge() { return maxTargetAge; } /** * Sets the value of the maxTargetAge property. * * @param value * allowed object is * {@link Long } * */ public void setMaxTargetAge(Long value) { this.maxTargetAge = value; } /** * Gets the value of the targetGender property. * * @return * possible object is * {@link GrpTargetGender } * */ public GrpTargetGender getTargetGender() { return targetGender; } /** * Sets the value of the targetGender property. * * @param value * allowed object is * {@link GrpTargetGender } * */ public void setTargetGender(GrpTargetGender value) { this.targetGender = value; } /** * Gets the value of the provider property. * * @return * possible object is * {@link GrpProvider } * */ public GrpProvider getProvider() { return provider; } /** * Sets the value of the provider property. * * @param value * allowed object is * {@link GrpProvider } * */ public void setProvider(GrpProvider value) { this.provider = value; } /** * Gets the value of the targetImpressionGoal property. * * @return * possible object is * {@link Long } * */ public Long getTargetImpressionGoal() { return targetImpressionGoal; } /** * Sets the value of the targetImpressionGoal property. * * @param value * allowed object is * {@link Long } * */ public void setTargetImpressionGoal(Long value) { this.targetImpressionGoal = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy