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

ar.com.system.afip.wsfe.service.api.Moneda 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 Moneda complex type.
 *
 *
 * El siguiente fragmento de esquema especifica el contenido que se espera que
 * haya en esta clase.
 *
 * 
 * <complexType name="Moneda">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Id" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="Desc" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="FchDesde" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="FchHasta" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Moneda", propOrder = {"id", "desc", "fchDesde", "fchHasta"}) public class Moneda { @XmlElement(name = "Id") @Element(name = "Id") protected String id; @XmlElement(name = "Desc") @Element(name = "Desc") protected String desc; @XmlElement(name = "FchDesde") @Element(name = "FchDesde") protected String fchDesde; @XmlElement(name = "FchHasta") @Element(name = "FchHasta") protected String fchHasta; /** * Obtiene el valor de la propiedad id. * * @return possible object is {@link String } */ public String getId() { return id; } /** * Define el valor de la propiedad id. * * @param value allowed object is {@link String } */ public void setId(String value) { this.id = value; } /** * Obtiene el valor de la propiedad desc. * * @return possible object is {@link String } */ public String getDesc() { return desc; } /** * Define el valor de la propiedad desc. * * @param value allowed object is {@link String } */ public void setDesc(String value) { this.desc = value; } /** * Obtiene el valor de la propiedad fchDesde. * * @return possible object is {@link String } */ public String getFchDesde() { return fchDesde; } /** * Define el valor de la propiedad fchDesde. * * @param value allowed object is {@link String } */ public void setFchDesde(String value) { this.fchDesde = value; } /** * Obtiene el valor de la propiedad fchHasta. * * @return possible object is {@link String } */ public String getFchHasta() { return fchHasta; } /** * Define el valor de la propiedad fchHasta. * * @param value allowed object is {@link String } */ public void setFchHasta(String value) { this.fchHasta = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy