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

net.datastream.schemas.mp_results.mp7863_001.ResultData Maven / Gradle / Ivy


package net.datastream.schemas.mp_results.mp7863_001;

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.XmlType;
import net.datastream.schemas.mp_entities.customerrentaladjustment_001.CustomerRentalAdjustment;
import net.datastream.schemas.mp_fields.DEPARTMENTID_Type;
import net.datastream.schemas.mp_fields.EQUIPMENTID_Type;


/**
 * 

Java class for anonymous complex type. * *

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

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.datastream.net/MP_entities/CustomerRentalAdjustment_001}CustomerRentalAdjustment"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}CURRENCYCODE" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}EQUIPMENTID" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}EQUIPMENTTYPE" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}DEPARTMENTID" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "customerRentalAdjustment", "currencycode", "equipmentid", "equipmenttype", "departmentid" }) @XmlRootElement(name = "ResultData") public class ResultData { @XmlElement(name = "CustomerRentalAdjustment", namespace = "http://schemas.datastream.net/MP_entities/CustomerRentalAdjustment_001", required = true) protected CustomerRentalAdjustment customerRentalAdjustment; @XmlElement(name = "CURRENCYCODE", namespace = "http://schemas.datastream.net/MP_fields") protected String currencycode; @XmlElement(name = "EQUIPMENTID", namespace = "http://schemas.datastream.net/MP_fields") protected EQUIPMENTID_Type equipmentid; @XmlElement(name = "EQUIPMENTTYPE", namespace = "http://schemas.datastream.net/MP_fields") protected String equipmenttype; @XmlElement(name = "DEPARTMENTID", namespace = "http://schemas.datastream.net/MP_fields") protected DEPARTMENTID_Type departmentid; /** * Gets the value of the customerRentalAdjustment property. * * @return * possible object is * {@link CustomerRentalAdjustment } * */ public CustomerRentalAdjustment getCustomerRentalAdjustment() { return customerRentalAdjustment; } /** * Sets the value of the customerRentalAdjustment property. * * @param value * allowed object is * {@link CustomerRentalAdjustment } * */ public void setCustomerRentalAdjustment(CustomerRentalAdjustment value) { this.customerRentalAdjustment = value; } /** * Gets the value of the currencycode property. * * @return * possible object is * {@link String } * */ public String getCURRENCYCODE() { return currencycode; } /** * Sets the value of the currencycode property. * * @param value * allowed object is * {@link String } * */ public void setCURRENCYCODE(String value) { this.currencycode = value; } /** * Gets the value of the equipmentid property. * * @return * possible object is * {@link EQUIPMENTID_Type } * */ public EQUIPMENTID_Type getEQUIPMENTID() { return equipmentid; } /** * Sets the value of the equipmentid property. * * @param value * allowed object is * {@link EQUIPMENTID_Type } * */ public void setEQUIPMENTID(EQUIPMENTID_Type value) { this.equipmentid = value; } /** * Gets the value of the equipmenttype property. * * @return * possible object is * {@link String } * */ public String getEQUIPMENTTYPE() { return equipmenttype; } /** * Sets the value of the equipmenttype property. * * @param value * allowed object is * {@link String } * */ public void setEQUIPMENTTYPE(String value) { this.equipmenttype = value; } /** * Gets the value of the departmentid property. * * @return * possible object is * {@link DEPARTMENTID_Type } * */ public DEPARTMENTID_Type getDEPARTMENTID() { return departmentid; } /** * Sets the value of the departmentid property. * * @param value * allowed object is * {@link DEPARTMENTID_Type } * */ public void setDEPARTMENTID(DEPARTMENTID_Type value) { this.departmentid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy