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

com.vmware.vim.VirtualMachineQuestionInfo Maven / Gradle / Ivy

The newest version!

package com.vmware.vim;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for VirtualMachineQuestionInfo complex type. * *

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

 * <complexType name="VirtualMachineQuestionInfo">
 *   <complexContent>
 *     <extension base="{urn:vim2}DynamicData">
 *       <sequence>
 *         <element name="id" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="text" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="choice" type="{urn:vim2}ChoiceOption"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "VirtualMachineQuestionInfo", propOrder = { "id", "text", "choice" }) public class VirtualMachineQuestionInfo extends DynamicData { @XmlElement(required = true) protected String id; @XmlElement(required = true) protected String text; @XmlElement(required = true) protected ChoiceOption choice; /** * Gets the value of the id property. * * @return * possible object is * {@link String } * */ public String getId() { return id; } /** * Sets the value of the id property. * * @param value * allowed object is * {@link String } * */ public void setId(String value) { this.id = value; } /** * Gets the value of the text property. * * @return * possible object is * {@link String } * */ public String getText() { return text; } /** * Sets the value of the text property. * * @param value * allowed object is * {@link String } * */ public void setText(String value) { this.text = value; } /** * Gets the value of the choice property. * * @return * possible object is * {@link ChoiceOption } * */ public ChoiceOption getChoice() { return choice; } /** * Sets the value of the choice property. * * @param value * allowed object is * {@link ChoiceOption } * */ public void setChoice(ChoiceOption value) { this.choice = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy