// Copyright 2016 Google Inc. All Rights Reserved. // // 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. 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; /** * * The forecasted delivery of a {@link ProspectiveLineItem}. * * * <p>Java class for LineItemDeliveryForecast complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="LineItemDeliveryForecast"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="lineItemId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="orderId" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="unitType" type="{https://www.google.com/apis/ads/publisher/v201605}UnitType" minOccurs="0"/> * <element name="predictedDeliveryUnits" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="deliveredUnits" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="matchedUnits" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "LineItemDeliveryForecast", propOrder = { "lineItemId", "orderId", "unitType", "predictedDeliveryUnits", "deliveredUnits", "matchedUnits" }) public class LineItemDeliveryForecast { protected Long lineItemId; protected Long orderId; @XmlSchemaType(name = "string") protected UnitType unitType; protected Long predictedDeliveryUnits; protected Long deliveredUnits; protected Long matchedUnits; /** * Gets the value of the lineItemId property. * * @return * possible object is * {@link Long } * */ public Long getLineItemId() { return lineItemId; } /** * Sets the value of the lineItemId property. * * @param value * allowed object is * {@link Long } * */ public void setLineItemId(Long value) { this.lineItemId = value; } /** * Gets the value of the orderId property. * * @return * possible object is * {@link Long } * */ public Long getOrderId() { return orderId; } /** * Sets the value of the orderId property. * * @param value * allowed object is * {@link Long } * */ public void setOrderId(Long value) { this.orderId = value; } /** * Gets the value of the unitType property. * * @return * possible object is * {@link UnitType } * */ public UnitType getUnitType() { return unitType; } /** * Sets the value of the unitType property. * * @param value * allowed object is * {@link UnitType } * */ public void setUnitType(UnitType value) { this.unitType = value; } /** * Gets the value of the predictedDeliveryUnits property. * * @return * possible object is * {@link Long } * */ public Long getPredictedDeliveryUnits() { return predictedDeliveryUnits; } /** * Sets the value of the predictedDeliveryUnits property. * * @param value * allowed object is * {@link Long } * */ public void setPredictedDeliveryUnits(Long value) { this.predictedDeliveryUnits = value; } /** * Gets the value of the deliveredUnits property. * * @return * possible object is * {@link Long } * */ public Long getDeliveredUnits() { return deliveredUnits; } /** * Sets the value of the deliveredUnits property. * * @param value * allowed object is * {@link Long } * */ public void setDeliveredUnits(Long value) { this.deliveredUnits = value; } /** * Gets the value of the matchedUnits property. * * @return * possible object is * {@link Long } * */ public Long getMatchedUnits() { return matchedUnits; } /** * Sets the value of the matchedUnits property. * * @param value * allowed object is * {@link Long } * */ public void setMatchedUnits(Long value) { this.matchedUnits = value; } }