AuthorizeNet/sdk-java

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

Summary

Maintainability
A
2 hrs
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: 2021.01.27 at 04:18:12 PM GMT+05:30 
//


package net.authorize.api.contract.v1;

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


/**
 * <p>Java class for creditCardType complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="creditCardType">
 *   &lt;complexContent>
 *     &lt;extension base="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}creditCardSimpleType">
 *       &lt;sequence>
 *         &lt;element name="cardCode" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}cardCode" minOccurs="0"/>
 *         &lt;element name="isPaymentToken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         &lt;element name="cryptogram" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="tokenRequestorName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="tokenRequestorId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         &lt;element name="tokenRequestorEci" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *     &lt;/extension>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "creditCardType", propOrder = {
    "cardCode",
    "isPaymentToken",
    "cryptogram",
    "tokenRequestorName",
    "tokenRequestorId",
    "tokenRequestorEci"
})
public class CreditCardType
    extends CreditCardSimpleType
{

    protected String cardCode;
    protected Boolean isPaymentToken;
    protected String cryptogram;
    protected String tokenRequestorName;
    protected String tokenRequestorId;
    protected String tokenRequestorEci;

    /**
     * Gets the value of the cardCode property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getCardCode() {
        return cardCode;
    }

    /**
     * Sets the value of the cardCode property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setCardCode(String value) {
        this.cardCode = value;
    }

    /**
     * Gets the value of the isPaymentToken property.
     * 
     * @return
     *     possible object is
     *     {@link Boolean }
     *     
     */
    public Boolean isIsPaymentToken() {
        return isPaymentToken;
    }

    /**
     * Sets the value of the isPaymentToken property.
     * 
     * @param value
     *     allowed object is
     *     {@link Boolean }
     *     
     */
    public void setIsPaymentToken(Boolean value) {
        this.isPaymentToken = value;
    }

    /**
     * Gets the value of the cryptogram property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getCryptogram() {
        return cryptogram;
    }

    /**
     * Sets the value of the cryptogram property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setCryptogram(String value) {
        this.cryptogram = value;
    }

    /**
     * Gets the value of the tokenRequestorName property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getTokenRequestorName() {
        return tokenRequestorName;
    }

    /**
     * Sets the value of the tokenRequestorName property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setTokenRequestorName(String value) {
        this.tokenRequestorName = value;
    }

    /**
     * Gets the value of the tokenRequestorId property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getTokenRequestorId() {
        return tokenRequestorId;
    }

    /**
     * Sets the value of the tokenRequestorId property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setTokenRequestorId(String value) {
        this.tokenRequestorId = value;
    }

    /**
     * Gets the value of the tokenRequestorEci property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getTokenRequestorEci() {
        return tokenRequestorEci;
    }

    /**
     * Sets the value of the tokenRequestorEci property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setTokenRequestorEci(String value) {
        this.tokenRequestorEci = value;
    }

}