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

com.google.api.ads.dfp.jaxws.v201605.ProposalLineItemPremium 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;


/**
 * 
 *             Represents the status of a triggered {@link PremiumRateValue} (formerly
 *             referred to as a {@code RateCardCustomization}).
 *           
 * 
 * 

Java class for ProposalLineItemPremium complex type. * *

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

 * <complexType name="ProposalLineItemPremium">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="premiumRateValue" type="{https://www.google.com/apis/ads/publisher/v201605}PremiumRateValue" minOccurs="0"/>
 *         <element name="status" type="{https://www.google.com/apis/ads/publisher/v201605}ProposalLineItemPremiumStatus" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ProposalLineItemPremium", propOrder = { "premiumRateValue", "status" }) public class ProposalLineItemPremium { protected PremiumRateValue premiumRateValue; @XmlSchemaType(name = "string") protected ProposalLineItemPremiumStatus status; /** * Gets the value of the premiumRateValue property. * * @return * possible object is * {@link PremiumRateValue } * */ public PremiumRateValue getPremiumRateValue() { return premiumRateValue; } /** * Sets the value of the premiumRateValue property. * * @param value * allowed object is * {@link PremiumRateValue } * */ public void setPremiumRateValue(PremiumRateValue value) { this.premiumRateValue = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link ProposalLineItemPremiumStatus } * */ public ProposalLineItemPremiumStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link ProposalLineItemPremiumStatus } * */ public void setStatus(ProposalLineItemPremiumStatus value) { this.status = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy