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

network.oxalis.peppol.ubl2.jaxb.cac.PaymentType Maven / Gradle / Ivy

The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2023.08.26 at 01:27:09 PM UTC 
//


package network.oxalis.peppol.ubl2.jaxb.cac;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
import lombok.AllArgsConstructor;
import lombok.Builder;
import lombok.NoArgsConstructor;
import network.oxalis.peppol.ubl2.jaxb.cbc.IDType;
import network.oxalis.peppol.ubl2.jaxb.cbc.InstructionIDType;
import network.oxalis.peppol.ubl2.jaxb.cbc.PaidAmountType;
import network.oxalis.peppol.ubl2.jaxb.cbc.PaidDateType;
import network.oxalis.peppol.ubl2.jaxb.cbc.PaidTimeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ReceivedDateType;


/**
 * 

Java class for PaymentType complex type. * *

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

 * <complexType name="PaymentType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ID" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}PaidAmount" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ReceivedDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}PaidDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}PaidTime" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}InstructionID" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PaymentType", propOrder = { "id", "paidAmount", "receivedDate", "paidDate", "paidTime", "instructionID" }) @Builder @NoArgsConstructor @AllArgsConstructor public class PaymentType { @XmlElement(name = "ID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected IDType id; @XmlElement(name = "PaidAmount", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected PaidAmountType paidAmount; @XmlElement(name = "ReceivedDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ReceivedDateType receivedDate; @XmlElement(name = "PaidDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected PaidDateType paidDate; @XmlElement(name = "PaidTime", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected PaidTimeType paidTime; @XmlElement(name = "InstructionID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected InstructionIDType instructionID; /** * Gets the value of the id property. * * @return * possible object is * {@link IDType } * */ public IDType getID() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link IDType } * */ public void setID(IDType value) { this.id = value; } /** * Gets the value of the paidAmount property. * * @return * possible object is * {@link PaidAmountType } * */ public PaidAmountType getPaidAmount() { return paidAmount; } /** * Sets the value of the paidAmount property. * * @param value * allowed object is * {@link PaidAmountType } * */ public void setPaidAmount(PaidAmountType value) { this.paidAmount = value; } /** * Gets the value of the receivedDate property. * * @return * possible object is * {@link ReceivedDateType } * */ public ReceivedDateType getReceivedDate() { return receivedDate; } /** * Sets the value of the receivedDate property. * * @param value * allowed object is * {@link ReceivedDateType } * */ public void setReceivedDate(ReceivedDateType value) { this.receivedDate = value; } /** * Gets the value of the paidDate property. * * @return * possible object is * {@link PaidDateType } * */ public PaidDateType getPaidDate() { return paidDate; } /** * Sets the value of the paidDate property. * * @param value * allowed object is * {@link PaidDateType } * */ public void setPaidDate(PaidDateType value) { this.paidDate = value; } /** * Gets the value of the paidTime property. * * @return * possible object is * {@link PaidTimeType } * */ public PaidTimeType getPaidTime() { return paidTime; } /** * Sets the value of the paidTime property. * * @param value * allowed object is * {@link PaidTimeType } * */ public void setPaidTime(PaidTimeType value) { this.paidTime = value; } /** * Gets the value of the instructionID property. * * @return * possible object is * {@link InstructionIDType } * */ public InstructionIDType getInstructionID() { return instructionID; } /** * Sets the value of the instructionID property. * * @param value * allowed object is * {@link InstructionIDType } * */ public void setInstructionID(InstructionIDType value) { this.instructionID = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy