AuthorizeNet/sdk-java

View on GitHub
src/main/java/net/authorize/api/contract/v1/CreateFingerPrintResponse.java

Summary

Maintainability
A
1 hr
Test Coverage
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2014.09.02 at 04:19:10 PM PDT 
//


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.XmlRootElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for anonymous complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType>
 *   &lt;complexContent>
 *     &lt;extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}ANetApiResponse">
 *       &lt;sequence>
 *         &lt;element name="fingerPrint" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}fingerPrintType"/>
 *         &lt;element name="supportInformation" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}fingerPrintSupportInformationType"/>
 *       &lt;/sequence>
 *     &lt;/extension>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
    "fingerPrint",
    "supportInformation"
})
@XmlRootElement(name = "createFingerPrintResponse")
public class CreateFingerPrintResponse
    extends ANetApiResponse
{

    @XmlElement(required = true)
    protected FingerPrintType fingerPrint;
    @XmlElement(required = true)
    protected FingerPrintSupportInformationType supportInformation;

    /**
     * Gets the value of the fingerPrint property.
     * 
     * @return
     *     possible object is
     *     {@link FingerPrintType }
     *     
     */
    public FingerPrintType getFingerPrint() {
        return fingerPrint;
    }

    /**
     * Sets the value of the fingerPrint property.
     * 
     * @param value
     *     allowed object is
     *     {@link FingerPrintType }
     *     
     */
    public void setFingerPrint(FingerPrintType value) {
        this.fingerPrint = value;
    }

    /**
     * Gets the value of the supportInformation property.
     * 
     * @return
     *     possible object is
     *     {@link FingerPrintSupportInformationType }
     *     
     */
    public FingerPrintSupportInformationType getSupportInformation() {
        return supportInformation;
    }

    /**
     * Sets the value of the supportInformation property.
     * 
     * @param value
     *     allowed object is
     *     {@link FingerPrintSupportInformationType }
     *     
     */
    public void setSupportInformation(FingerPrintSupportInformationType value) {
        this.supportInformation = value;
    }

}