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

com.omgm.speedy.eps.soap.model.ResultCalculationMS Maven / Gradle / Ivy


package com.omgm.speedy.eps.soap.model;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for resultCalculationMS complex type. * *

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

 * <complexType name="resultCalculationMS">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="errorDescription" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="resultInfo" type="{http://ver01.eps.speedy.sirma.com/}resultCalculation" minOccurs="0"/>
 *         <element name="serviceTypeId" type="{http://www.w3.org/2001/XMLSchema}long"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "resultCalculationMS", propOrder = { "errorDescription", "resultInfo", "serviceTypeId" }) public class ResultCalculationMS { protected String errorDescription; protected ResultCalculation resultInfo; protected long serviceTypeId; /** * Gets the value of the errorDescription property. * * @return * possible object is * {@link String } * */ public String getErrorDescription() { return errorDescription; } /** * Sets the value of the errorDescription property. * * @param value * allowed object is * {@link String } * */ public void setErrorDescription(String value) { this.errorDescription = value; } /** * Gets the value of the resultInfo property. * * @return * possible object is * {@link ResultCalculation } * */ public ResultCalculation getResultInfo() { return resultInfo; } /** * Sets the value of the resultInfo property. * * @param value * allowed object is * {@link ResultCalculation } * */ public void setResultInfo(ResultCalculation value) { this.resultInfo = value; } /** * Gets the value of the serviceTypeId property. * */ public long getServiceTypeId() { return serviceTypeId; } /** * Sets the value of the serviceTypeId property. * */ public void setServiceTypeId(long value) { this.serviceTypeId = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy