// 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. // // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // package com.google.api.ads.adwords.lib.jaxb.v201607; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="id" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/> * <element name="selector" type="{https://adwords.google.com/api/adwords/cm/v201607}Selector"/> * <element name="reportName" type="{http://www.w3.org/2001/XMLSchema}string"/> * <element name="reportType" type="{https://adwords.google.com/api/adwords/cm/v201607}ReportDefinition.ReportType"/> * <element name="dateRangeType" type="{https://adwords.google.com/api/adwords/cm/v201607}ReportDefinition.DateRangeType"/> * <element name="downloadFormat" type="{https://adwords.google.com/api/adwords/cm/v201607}DownloadFormat"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "id", "selector", "reportName", "reportType", "dateRangeType", "downloadFormat" }) @XmlRootElement(name = "reportDefinition") public class ReportDefinition { protected Long id; @XmlElement(required = true) protected Selector selector; @XmlElement(required = true) protected String reportName; @XmlElement(required = true) @XmlSchemaType(name = "string") protected ReportDefinitionReportType reportType; @XmlElement(required = true) @XmlSchemaType(name = "string") protected ReportDefinitionDateRangeType dateRangeType; @XmlElement(required = true) @XmlSchemaType(name = "string") protected DownloadFormat downloadFormat; /** * Gets the value of the id property. * * @return * possible object is * {@link Long } * */ public Long getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link Long } * */ public void setId(Long value) { this.id = value; } /** * Gets the value of the selector property. * * @return * possible object is * {@link Selector } * */ public Selector getSelector() { return selector; } /** * Sets the value of the selector property. * * @param value * allowed object is * {@link Selector } * */ public void setSelector(Selector value) { this.selector = value; } /** * Gets the value of the reportName property. * * @return * possible object is * {@link String } * */ public String getReportName() { return reportName; } /** * Sets the value of the reportName property. * * @param value * allowed object is * {@link String } * */ public void setReportName(String value) { this.reportName = value; } /** * Gets the value of the reportType property. * * @return * possible object is * {@link ReportDefinitionReportType } * */ public ReportDefinitionReportType getReportType() { return reportType; } /** * Sets the value of the reportType property. * * @param value * allowed object is * {@link ReportDefinitionReportType } * */ public void setReportType(ReportDefinitionReportType value) { this.reportType = value; } /** * Gets the value of the dateRangeType property. * * @return * possible object is * {@link ReportDefinitionDateRangeType } * */ public ReportDefinitionDateRangeType getDateRangeType() { return dateRangeType; } /** * Sets the value of the dateRangeType property. * * @param value * allowed object is * {@link ReportDefinitionDateRangeType } * */ public void setDateRangeType(ReportDefinitionDateRangeType value) { this.dateRangeType = value; } /** * Gets the value of the downloadFormat property. * * @return * possible object is * {@link DownloadFormat } * */ public DownloadFormat getDownloadFormat() { return downloadFormat; } /** * Sets the value of the downloadFormat property. * * @param value * allowed object is * {@link DownloadFormat } * */ public void setDownloadFormat(DownloadFormat value) { this.downloadFormat = value; } }