com.vmware.vim25.VsanHostClusterStatusStateCompletionEstimate Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* Java class for VsanHostClusterStatusStateCompletionEstimate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="VsanHostClusterStatusStateCompletionEstimate">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="completeTime" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
* <element name="percentComplete" type="{http://www.w3.org/2001/XMLSchema}int" minOccurs="0"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "VsanHostClusterStatusStateCompletionEstimate", propOrder = {
"completeTime",
"percentComplete"
})
public class VsanHostClusterStatusStateCompletionEstimate
extends DynamicData
{
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar completeTime;
protected Integer percentComplete;
/**
* Gets the value of the completeTime property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getCompleteTime() {
return completeTime;
}
/**
* Sets the value of the completeTime property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setCompleteTime(XMLGregorianCalendar value) {
this.completeTime = value;
}
/**
* Gets the value of the percentComplete property.
*
* @return
* possible object is
* {@link Integer }
*
*/
public Integer getPercentComplete() {
return percentComplete;
}
/**
* Sets the value of the percentComplete property.
*
* @param value
* allowed object is
* {@link Integer }
*
*/
public void setPercentComplete(Integer value) {
this.percentComplete = value;
}
}