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

com.scene7.ipsapi.TaskItemProgress 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: 2024.06.06 at 01:39:50 PM UTC 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for TaskItemProgress complex type. * *

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

 * <complexType name="TaskItemProgress">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="itemName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="progress" type="{http://www.w3.org/2001/XMLSchema}double"/>
 *         <element name="progressMessage" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="lastProgressUpdate" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "TaskItemProgress", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = { "itemName", "progress", "progressMessage", "lastProgressUpdate" }) public class TaskItemProgress { @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String itemName; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta") protected double progress; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) protected String progressMessage; @XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true) @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar lastProgressUpdate; /** * Gets the value of the itemName property. * * @return * possible object is * {@link String } * */ public String getItemName() { return itemName; } /** * Sets the value of the itemName property. * * @param value * allowed object is * {@link String } * */ public void setItemName(String value) { this.itemName = value; } /** * Gets the value of the progress property. * */ public double getProgress() { return progress; } /** * Sets the value of the progress property. * */ public void setProgress(double value) { this.progress = value; } /** * Gets the value of the progressMessage property. * * @return * possible object is * {@link String } * */ public String getProgressMessage() { return progressMessage; } /** * Sets the value of the progressMessage property. * * @param value * allowed object is * {@link String } * */ public void setProgressMessage(String value) { this.progressMessage = value; } /** * Gets the value of the lastProgressUpdate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getLastProgressUpdate() { return lastProgressUpdate; } /** * Sets the value of the lastProgressUpdate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setLastProgressUpdate(XMLGregorianCalendar value) { this.lastProgressUpdate = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy