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

network.oxalis.peppol.ubl2.jaxb.cac.PickupType 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.ActualPickupDateType;
import network.oxalis.peppol.ubl2.jaxb.cbc.ActualPickupTimeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.EarliestPickupDateType;
import network.oxalis.peppol.ubl2.jaxb.cbc.EarliestPickupTimeType;
import network.oxalis.peppol.ubl2.jaxb.cbc.IDType;
import network.oxalis.peppol.ubl2.jaxb.cbc.LatestPickupDateType;
import network.oxalis.peppol.ubl2.jaxb.cbc.LatestPickupTimeType;


/**
 * 

Java class for PickupType complex type. * *

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

 * <complexType name="PickupType">
 *   <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}ActualPickupDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}ActualPickupTime" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}EarliestPickupDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}EarliestPickupTime" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}LatestPickupDate" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2}LatestPickupTime" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}PickupLocation" minOccurs="0"/>
 *         <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2}PickupParty" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PickupType", propOrder = { "id", "actualPickupDate", "actualPickupTime", "earliestPickupDate", "earliestPickupTime", "latestPickupDate", "latestPickupTime", "pickupLocation", "pickupParty" }) @Builder @NoArgsConstructor @AllArgsConstructor public class PickupType { @XmlElement(name = "ID", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected IDType id; @XmlElement(name = "ActualPickupDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ActualPickupDateType actualPickupDate; @XmlElement(name = "ActualPickupTime", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected ActualPickupTimeType actualPickupTime; @XmlElement(name = "EarliestPickupDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected EarliestPickupDateType earliestPickupDate; @XmlElement(name = "EarliestPickupTime", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected EarliestPickupTimeType earliestPickupTime; @XmlElement(name = "LatestPickupDate", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected LatestPickupDateType latestPickupDate; @XmlElement(name = "LatestPickupTime", namespace = "urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2") protected LatestPickupTimeType latestPickupTime; @XmlElement(name = "PickupLocation") protected LocationType pickupLocation; @XmlElement(name = "PickupParty") protected PartyType pickupParty; /** * 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 actualPickupDate property. * * @return * possible object is * {@link ActualPickupDateType } * */ public ActualPickupDateType getActualPickupDate() { return actualPickupDate; } /** * Sets the value of the actualPickupDate property. * * @param value * allowed object is * {@link ActualPickupDateType } * */ public void setActualPickupDate(ActualPickupDateType value) { this.actualPickupDate = value; } /** * Gets the value of the actualPickupTime property. * * @return * possible object is * {@link ActualPickupTimeType } * */ public ActualPickupTimeType getActualPickupTime() { return actualPickupTime; } /** * Sets the value of the actualPickupTime property. * * @param value * allowed object is * {@link ActualPickupTimeType } * */ public void setActualPickupTime(ActualPickupTimeType value) { this.actualPickupTime = value; } /** * Gets the value of the earliestPickupDate property. * * @return * possible object is * {@link EarliestPickupDateType } * */ public EarliestPickupDateType getEarliestPickupDate() { return earliestPickupDate; } /** * Sets the value of the earliestPickupDate property. * * @param value * allowed object is * {@link EarliestPickupDateType } * */ public void setEarliestPickupDate(EarliestPickupDateType value) { this.earliestPickupDate = value; } /** * Gets the value of the earliestPickupTime property. * * @return * possible object is * {@link EarliestPickupTimeType } * */ public EarliestPickupTimeType getEarliestPickupTime() { return earliestPickupTime; } /** * Sets the value of the earliestPickupTime property. * * @param value * allowed object is * {@link EarliestPickupTimeType } * */ public void setEarliestPickupTime(EarliestPickupTimeType value) { this.earliestPickupTime = value; } /** * Gets the value of the latestPickupDate property. * * @return * possible object is * {@link LatestPickupDateType } * */ public LatestPickupDateType getLatestPickupDate() { return latestPickupDate; } /** * Sets the value of the latestPickupDate property. * * @param value * allowed object is * {@link LatestPickupDateType } * */ public void setLatestPickupDate(LatestPickupDateType value) { this.latestPickupDate = value; } /** * Gets the value of the latestPickupTime property. * * @return * possible object is * {@link LatestPickupTimeType } * */ public LatestPickupTimeType getLatestPickupTime() { return latestPickupTime; } /** * Sets the value of the latestPickupTime property. * * @param value * allowed object is * {@link LatestPickupTimeType } * */ public void setLatestPickupTime(LatestPickupTimeType value) { this.latestPickupTime = value; } /** * Gets the value of the pickupLocation property. * * @return * possible object is * {@link LocationType } * */ public LocationType getPickupLocation() { return pickupLocation; } /** * Sets the value of the pickupLocation property. * * @param value * allowed object is * {@link LocationType } * */ public void setPickupLocation(LocationType value) { this.pickupLocation = value; } /** * Gets the value of the pickupParty property. * * @return * possible object is * {@link PartyType } * */ public PartyType getPickupParty() { return pickupParty; } /** * Sets the value of the pickupParty property. * * @param value * allowed object is * {@link PartyType } * */ public void setPickupParty(PartyType value) { this.pickupParty = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy