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

ar.com.system.afip.wsfe.service.api.Err Maven / Gradle / Ivy

package ar.com.system.afip.wsfe.service.api;

import org.simpleframework.xml.Element;

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

/**
 *
 * Clase Java para Err complex type.
 *
 *
 * El siguiente fragmento de esquema especifica el contenido que se espera que
 * haya en esta clase.
 *
 * 
 * <complexType name="Err">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Code" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         <element name="Msg" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Err", propOrder = {"code", "msg"}) public class Err implements WsfeError { @XmlElement(name = "Code") @Element(name = "Code") protected int code; @XmlElement(name = "Msg") @Element(name = "Msg") protected String msg; /** * Obtiene el valor de la propiedad code. */ @Override public int getCode() { return code; } /** * Define el valor de la propiedad code. */ public void setCode(int value) { this.code = value; } /** * Obtiene el valor de la propiedad msg. * * @return possible object is {@link String } */ @Override public String getMsg() { return msg; } /** * Define el valor de la propiedad msg. * * @param value allowed object is {@link String } */ public void setMsg(String value) { this.msg = value; } @Override public String toString() { return "Err [code=" + code + ", msg=" + msg + "]"; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy