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

com.connectifier.xeroclient.models.Report Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.7 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2015.03.08 at 08:40:56 PM PDT 
//


package com.connectifier.xeroclient.models;

import java.util.Date;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;


/**
 * 

Java class for Report complex type. * *

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

 * <complexType name="Report">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="ReportID" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ReportName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ReportType" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="ReportTitles" type="{}ReportTitles" minOccurs="0"/>
 *         <element name="ReportDate" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="UpdatedDateUTC" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *         <element name="Rows" type="{}ReportRows" minOccurs="0"/>
 *         <element name="Attributes" type="{}ReportAttributes" minOccurs="0"/>
 *         <element name="Fields" type="{}ReportFields" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Report", propOrder = { "reportID", "reportName", "reportType", "reportTitles", "reportDate", "updatedDateUTC", "rows", "attributes", "fields" }) public class Report { @XmlElement(name = "ReportID", required = true) protected String reportID; @XmlElement(name = "ReportName", required = true) protected String reportName; @XmlElement(name = "ReportType", required = true) protected String reportType; @XmlElement(name = "ReportTitles") protected ReportTitles reportTitles; @XmlElement(name = "ReportDate", required = true) protected String reportDate; @XmlElement(name = "UpdatedDateUTC", required = true, type = String.class) @XmlJavaTypeAdapter(Adapter1 .class) @XmlSchemaType(name = "dateTime") protected Date updatedDateUTC; @XmlElement(name = "Rows") protected ReportRows rows; @XmlElement(name = "Attributes") protected ReportAttributes attributes; @XmlElement(name = "Fields") protected ReportFields fields; /** * Gets the value of the reportID property. * * @return * possible object is * {@link String } * */ public String getReportID() { return reportID; } /** * Sets the value of the reportID property. * * @param value * allowed object is * {@link String } * */ public void setReportID(String value) { this.reportID = 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 String } * */ public String getReportType() { return reportType; } /** * Sets the value of the reportType property. * * @param value * allowed object is * {@link String } * */ public void setReportType(String value) { this.reportType = value; } /** * Gets the value of the reportTitles property. * * @return * possible object is * {@link ReportTitles } * */ public ReportTitles getReportTitles() { return reportTitles; } /** * Sets the value of the reportTitles property. * * @param value * allowed object is * {@link ReportTitles } * */ public void setReportTitles(ReportTitles value) { this.reportTitles = value; } /** * Gets the value of the reportDate property. * * @return * possible object is * {@link String } * */ public String getReportDate() { return reportDate; } /** * Sets the value of the reportDate property. * * @param value * allowed object is * {@link String } * */ public void setReportDate(String value) { this.reportDate = value; } /** * Gets the value of the updatedDateUTC property. * * @return * possible object is * {@link String } * */ public Date getUpdatedDateUTC() { return updatedDateUTC; } /** * Sets the value of the updatedDateUTC property. * * @param value * allowed object is * {@link String } * */ public void setUpdatedDateUTC(Date value) { this.updatedDateUTC = value; } /** * Gets the value of the rows property. * * @return * possible object is * {@link ReportRows } * */ public ReportRows getRows() { return rows; } /** * Sets the value of the rows property. * * @param value * allowed object is * {@link ReportRows } * */ public void setRows(ReportRows value) { this.rows = value; } /** * Gets the value of the attributes property. * * @return * possible object is * {@link ReportAttributes } * */ public ReportAttributes getAttributes() { return attributes; } /** * Sets the value of the attributes property. * * @param value * allowed object is * {@link ReportAttributes } * */ public void setAttributes(ReportAttributes value) { this.attributes = value; } /** * Gets the value of the fields property. * * @return * possible object is * {@link ReportFields } * */ public ReportFields getFields() { return fields; } /** * Sets the value of the fields property. * * @param value * allowed object is * {@link ReportFields } * */ public void setFields(ReportFields value) { this.fields = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy