net.authorize.api.contract.v1.KeyBlock Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2018.06.13 at 02:31:45 PM IST
//
package net.authorize.api.contract.v1;
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 KeyBlock complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="KeyBlock">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Value" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}KeyValue"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "KeyBlock", propOrder = {
"value"
})
public class KeyBlock {
@XmlElement(name = "Value", required = true)
protected KeyValue value;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link KeyValue }
*
*/
public KeyValue getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link KeyValue }
*
*/
public void setValue(KeyValue value) {
this.value = value;
}
}