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

com.adyen.model.nexo.ICCResetData Maven / Gradle / Ivy

There is a newer version: 38.1.0
Show newest version
package com.adyen.model.nexo;

import io.swagger.v3.oas.annotations.media.Schema;

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


/**
 * Definition: Data of a Chip Card related to the reset of the chip. -- Usage: Card reader device request
 *
 * 

Java class for ICCResetData complex type. * *

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

 * <complexType name="ICCResetData">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <attribute name="ATRValue" type="{}ATRValue" />
 *       <attribute name="CardStatusWords" type="{}CardStatusWords" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
*/ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ICCResetData") public class ICCResetData { /** * The Atr value. */ @XmlElement(name = "ATRValue") @Schema(description = "Value of the Answer To Reset of a chip card --Rule: if available", minLength = 1, maxLength = 100) protected byte[] atrValue; /** * The Card status words. */ @XmlElement(name = "CardStatusWords") @Schema(description = "Status of a smartcard response to a command (SW1-SW2) --Rule: if available", minLength = 2, maxLength = 2) protected byte[] cardStatusWords; /** * Gets the value of the atrValue property. * * @return possible object is byte[] */ public byte[] getATRValue() { return atrValue; } /** * Sets the value of the atrValue property. * * @param value allowed object is byte[] */ public void setATRValue(byte[] value) { this.atrValue = value; } /** * Gets the value of the cardStatusWords property. * * @return possible object is byte[] */ public byte[] getCardStatusWords() { return cardStatusWords; } /** * Sets the value of the cardStatusWords property. * * @param value allowed object is byte[] */ public void setCardStatusWords(byte[] value) { this.cardStatusWords = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy