// Copyright 2017 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.v201702; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlType; /** * * {@code Stats} contains trafficking statistics for {@link LineItem} and * {@link LineItemCreativeAssociation} objects * * * <p>Java class for Stats complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="Stats"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="impressionsDelivered" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="clicksDelivered" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="videoCompletionsDelivered" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="videoStartsDelivered" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="viewableImpressionsDelivered" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Stats", propOrder = { "impressionsDelivered", "clicksDelivered", "videoCompletionsDelivered", "videoStartsDelivered", "viewableImpressionsDelivered" }) public class Stats { protected Long impressionsDelivered; protected Long clicksDelivered; protected Long videoCompletionsDelivered; protected Long videoStartsDelivered; protected Long viewableImpressionsDelivered; /** * Gets the value of the impressionsDelivered property. * * @return * possible object is * {@link Long } * */ public Long getImpressionsDelivered() { return impressionsDelivered; } /** * Sets the value of the impressionsDelivered property. * * @param value * allowed object is * {@link Long } * */ public void setImpressionsDelivered(Long value) { this.impressionsDelivered = value; } /** * Gets the value of the clicksDelivered property. * * @return * possible object is * {@link Long } * */ public Long getClicksDelivered() { return clicksDelivered; } /** * Sets the value of the clicksDelivered property. * * @param value * allowed object is * {@link Long } * */ public void setClicksDelivered(Long value) { this.clicksDelivered = value; } /** * Gets the value of the videoCompletionsDelivered property. * * @return * possible object is * {@link Long } * */ public Long getVideoCompletionsDelivered() { return videoCompletionsDelivered; } /** * Sets the value of the videoCompletionsDelivered property. * * @param value * allowed object is * {@link Long } * */ public void setVideoCompletionsDelivered(Long value) { this.videoCompletionsDelivered = value; } /** * Gets the value of the videoStartsDelivered property. * * @return * possible object is * {@link Long } * */ public Long getVideoStartsDelivered() { return videoStartsDelivered; } /** * Sets the value of the videoStartsDelivered property. * * @param value * allowed object is * {@link Long } * */ public void setVideoStartsDelivered(Long value) { this.videoStartsDelivered = value; } /** * Gets the value of the viewableImpressionsDelivered property. * * @return * possible object is * {@link Long } * */ public Long getViewableImpressionsDelivered() { return viewableImpressionsDelivered; } /** * Sets the value of the viewableImpressionsDelivered property. * * @param value * allowed object is * {@link Long } * */ public void setViewableImpressionsDelivered(Long value) { this.viewableImpressionsDelivered = value; } }