com.vmware.vim25.CustomFieldValue Maven / Gradle / Ivy
package com.vmware.vim25;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for CustomFieldValue complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="CustomFieldValue">
* <complexContent>
* <extension base="{urn:vim25}DynamicData">
* <sequence>
* <element name="key" type="{http://www.w3.org/2001/XMLSchema}int"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CustomFieldValue", propOrder = {
"key"
})
@XmlSeeAlso({
CustomFieldStringValue.class
})
public class CustomFieldValue
extends DynamicData
{
protected int key;
/**
* Gets the value of the key property.
*
*/
public int getKey() {
return key;
}
/**
* Sets the value of the key property.
*
*/
public void setKey(int value) {
this.key = value;
}
}