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

com.google.api.ads.dfp.jaxws.v201602.ProposalLineItemConstraints Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;


/**
 * 
 *             A {@code PropoalLineItemConstraints} represents all the constraints set for a
 *             {@link ProposalLineItem} and is always readonly. It comes from the {@link Product},
 *             based on which the proposal line item is created.
 *           
 * 
 * 

Java class for ProposalLineItemConstraints complex type. * *

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

 * <complexType name="ProposalLineItemConstraints">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="allowCreativePlaceholdersCustomization" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="builtInCreativePlaceholders" type="{https://www.google.com/apis/ads/publisher/v201602}CreativePlaceholder" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="builtInRoadblockingType" type="{https://www.google.com/apis/ads/publisher/v201602}RoadblockingType" minOccurs="0"/>
 *         <element name="builtInDeliveryRateType" type="{https://www.google.com/apis/ads/publisher/v201602}DeliveryRateType" minOccurs="0"/>
 *         <element name="builtInCreativeRotationType" type="{https://www.google.com/apis/ads/publisher/v201602}CreativeRotationType" minOccurs="0"/>
 *         <element name="builtInCompanionDeliveryOption" type="{https://www.google.com/apis/ads/publisher/v201602}CompanionDeliveryOption" minOccurs="0"/>
 *         <element name="builtInFrequencyCaps" type="{https://www.google.com/apis/ads/publisher/v201602}FrequencyCap" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="productBuiltInTargeting" type="{https://www.google.com/apis/ads/publisher/v201602}Targeting" minOccurs="0"/>
 *         <element name="customizableAttributes" type="{https://www.google.com/apis/ads/publisher/v201602}CustomizableAttributes" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProposalLineItemConstraints", propOrder = { "allowCreativePlaceholdersCustomization", "builtInCreativePlaceholders", "builtInRoadblockingType", "builtInDeliveryRateType", "builtInCreativeRotationType", "builtInCompanionDeliveryOption", "builtInFrequencyCaps", "productBuiltInTargeting", "customizableAttributes" }) public class ProposalLineItemConstraints { protected Boolean allowCreativePlaceholdersCustomization; protected List builtInCreativePlaceholders; @XmlSchemaType(name = "string") protected RoadblockingType builtInRoadblockingType; @XmlSchemaType(name = "string") protected DeliveryRateType builtInDeliveryRateType; @XmlSchemaType(name = "string") protected CreativeRotationType builtInCreativeRotationType; @XmlSchemaType(name = "string") protected CompanionDeliveryOption builtInCompanionDeliveryOption; protected List builtInFrequencyCaps; protected Targeting productBuiltInTargeting; protected CustomizableAttributes customizableAttributes; /** * Gets the value of the allowCreativePlaceholdersCustomization property. * * @return * possible object is * {@link Boolean } * */ public Boolean isAllowCreativePlaceholdersCustomization() { return allowCreativePlaceholdersCustomization; } /** * Sets the value of the allowCreativePlaceholdersCustomization property. * * @param value * allowed object is * {@link Boolean } * */ public void setAllowCreativePlaceholdersCustomization(Boolean value) { this.allowCreativePlaceholdersCustomization = value; } /** * Gets the value of the builtInCreativePlaceholders property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the builtInCreativePlaceholders property. * *

* For example, to add a new item, do as follows: *

     *    getBuiltInCreativePlaceholders().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link CreativePlaceholder } * * */ public List getBuiltInCreativePlaceholders() { if (builtInCreativePlaceholders == null) { builtInCreativePlaceholders = new ArrayList(); } return this.builtInCreativePlaceholders; } /** * Gets the value of the builtInRoadblockingType property. * * @return * possible object is * {@link RoadblockingType } * */ public RoadblockingType getBuiltInRoadblockingType() { return builtInRoadblockingType; } /** * Sets the value of the builtInRoadblockingType property. * * @param value * allowed object is * {@link RoadblockingType } * */ public void setBuiltInRoadblockingType(RoadblockingType value) { this.builtInRoadblockingType = value; } /** * Gets the value of the builtInDeliveryRateType property. * * @return * possible object is * {@link DeliveryRateType } * */ public DeliveryRateType getBuiltInDeliveryRateType() { return builtInDeliveryRateType; } /** * Sets the value of the builtInDeliveryRateType property. * * @param value * allowed object is * {@link DeliveryRateType } * */ public void setBuiltInDeliveryRateType(DeliveryRateType value) { this.builtInDeliveryRateType = value; } /** * Gets the value of the builtInCreativeRotationType property. * * @return * possible object is * {@link CreativeRotationType } * */ public CreativeRotationType getBuiltInCreativeRotationType() { return builtInCreativeRotationType; } /** * Sets the value of the builtInCreativeRotationType property. * * @param value * allowed object is * {@link CreativeRotationType } * */ public void setBuiltInCreativeRotationType(CreativeRotationType value) { this.builtInCreativeRotationType = value; } /** * Gets the value of the builtInCompanionDeliveryOption property. * * @return * possible object is * {@link CompanionDeliveryOption } * */ public CompanionDeliveryOption getBuiltInCompanionDeliveryOption() { return builtInCompanionDeliveryOption; } /** * Sets the value of the builtInCompanionDeliveryOption property. * * @param value * allowed object is * {@link CompanionDeliveryOption } * */ public void setBuiltInCompanionDeliveryOption(CompanionDeliveryOption value) { this.builtInCompanionDeliveryOption = value; } /** * Gets the value of the builtInFrequencyCaps property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the builtInFrequencyCaps property. * *

* For example, to add a new item, do as follows: *

     *    getBuiltInFrequencyCaps().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link FrequencyCap } * * */ public List getBuiltInFrequencyCaps() { if (builtInFrequencyCaps == null) { builtInFrequencyCaps = new ArrayList(); } return this.builtInFrequencyCaps; } /** * Gets the value of the productBuiltInTargeting property. * * @return * possible object is * {@link Targeting } * */ public Targeting getProductBuiltInTargeting() { return productBuiltInTargeting; } /** * Sets the value of the productBuiltInTargeting property. * * @param value * allowed object is * {@link Targeting } * */ public void setProductBuiltInTargeting(Targeting value) { this.productBuiltInTargeting = value; } /** * Gets the value of the customizableAttributes property. * * @return * possible object is * {@link CustomizableAttributes } * */ public CustomizableAttributes getCustomizableAttributes() { return customizableAttributes; } /** * Sets the value of the customizableAttributes property. * * @param value * allowed object is * {@link CustomizableAttributes } * */ public void setCustomizableAttributes(CustomizableAttributes value) { this.customizableAttributes = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy