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

com.google.api.ads.dfp.jaxws.v201505.PremiumRateValue Maven / Gradle / Ivy

There is a newer version: 5.8.0
Show newest version

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

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 premium of a {@link RateCard} which could be applied to the line item
 *             and charges extra.
 *           
 * 
 * 

Java class for PremiumRateValue complex type. * *

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

 * <complexType name="PremiumRateValue">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="premiumRateId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="premiumFeature" type="{https://www.google.com/apis/ads/publisher/v201505}PremiumFeature" minOccurs="0"/>
 *         <element name="rateType" type="{https://www.google.com/apis/ads/publisher/v201505}RateType" minOccurs="0"/>
 *         <element name="adjustmentType" type="{https://www.google.com/apis/ads/publisher/v201505}PremiumAdjustmentType" minOccurs="0"/>
 *         <element name="adjustmentSize" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PremiumRateValue", propOrder = { "premiumRateId", "premiumFeature", "rateType", "adjustmentType", "adjustmentSize" }) public class PremiumRateValue { protected Long premiumRateId; protected PremiumFeature premiumFeature; @XmlSchemaType(name = "string") protected RateType rateType; @XmlSchemaType(name = "string") protected PremiumAdjustmentType adjustmentType; protected Long adjustmentSize; /** * Gets the value of the premiumRateId property. * * @return * possible object is * {@link Long } * */ public Long getPremiumRateId() { return premiumRateId; } /** * Sets the value of the premiumRateId property. * * @param value * allowed object is * {@link Long } * */ public void setPremiumRateId(Long value) { this.premiumRateId = value; } /** * Gets the value of the premiumFeature property. * * @return * possible object is * {@link PremiumFeature } * */ public PremiumFeature getPremiumFeature() { return premiumFeature; } /** * Sets the value of the premiumFeature property. * * @param value * allowed object is * {@link PremiumFeature } * */ public void setPremiumFeature(PremiumFeature value) { this.premiumFeature = value; } /** * Gets the value of the rateType property. * * @return * possible object is * {@link RateType } * */ public RateType getRateType() { return rateType; } /** * Sets the value of the rateType property. * * @param value * allowed object is * {@link RateType } * */ public void setRateType(RateType value) { this.rateType = value; } /** * Gets the value of the adjustmentType property. * * @return * possible object is * {@link PremiumAdjustmentType } * */ public PremiumAdjustmentType getAdjustmentType() { return adjustmentType; } /** * Sets the value of the adjustmentType property. * * @param value * allowed object is * {@link PremiumAdjustmentType } * */ public void setAdjustmentType(PremiumAdjustmentType value) { this.adjustmentType = value; } /** * Gets the value of the adjustmentSize property. * * @return * possible object is * {@link Long } * */ public Long getAdjustmentSize() { return adjustmentSize; } /** * Sets the value of the adjustmentSize property. * * @param value * allowed object is * {@link Long } * */ public void setAdjustmentSize(Long value) { this.adjustmentSize = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy