22// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.8-b130911.1802
33// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
44// Any modifications to this file will be lost upon recompilation of the source schema.
5- // Generated on: 2018.06.13 at 02:31:45 PM IST
5+ // Generated on: 2018.09.24 at 04:52:54 PM IST
66//
77
88
2626 * <element name="cardCode" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}cardCode" minOccurs="0"/>
2727 * <element name="isPaymentToken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
2828 * <element name="cryptogram" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
29+ * <element name="tokenRequestorName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
30+ * <element name="tokenRequestorId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
31+ * <element name="tokenRequestorEci" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
2932 * </sequence>
3033 * </extension>
3134 * </complexContent>
3841@ XmlType (name = "creditCardType" , propOrder = {
3942 "cardCode" ,
4043 "isPaymentToken" ,
41- "cryptogram"
44+ "cryptogram" ,
45+ "tokenRequestorName" ,
46+ "tokenRequestorId" ,
47+ "tokenRequestorEci"
4248})
4349public class CreditCardType
4450 extends CreditCardSimpleType
@@ -47,6 +53,9 @@ public class CreditCardType
4753 protected String cardCode ;
4854 protected Boolean isPaymentToken ;
4955 protected String cryptogram ;
56+ protected String tokenRequestorName ;
57+ protected String tokenRequestorId ;
58+ protected String tokenRequestorEci ;
5059
5160 /**
5261 * Gets the value of the cardCode property.
@@ -120,4 +129,76 @@ public void setCryptogram(String value) {
120129 this .cryptogram = value ;
121130 }
122131
132+ /**
133+ * Gets the value of the tokenRequestorName property.
134+ *
135+ * @return
136+ * possible object is
137+ * {@link String }
138+ *
139+ */
140+ public String getTokenRequestorName () {
141+ return tokenRequestorName ;
142+ }
143+
144+ /**
145+ * Sets the value of the tokenRequestorName property.
146+ *
147+ * @param value
148+ * allowed object is
149+ * {@link String }
150+ *
151+ */
152+ public void setTokenRequestorName (String value ) {
153+ this .tokenRequestorName = value ;
154+ }
155+
156+ /**
157+ * Gets the value of the tokenRequestorId property.
158+ *
159+ * @return
160+ * possible object is
161+ * {@link String }
162+ *
163+ */
164+ public String getTokenRequestorId () {
165+ return tokenRequestorId ;
166+ }
167+
168+ /**
169+ * Sets the value of the tokenRequestorId property.
170+ *
171+ * @param value
172+ * allowed object is
173+ * {@link String }
174+ *
175+ */
176+ public void setTokenRequestorId (String value ) {
177+ this .tokenRequestorId = value ;
178+ }
179+
180+ /**
181+ * Gets the value of the tokenRequestorEci property.
182+ *
183+ * @return
184+ * possible object is
185+ * {@link String }
186+ *
187+ */
188+ public String getTokenRequestorEci () {
189+ return tokenRequestorEci ;
190+ }
191+
192+ /**
193+ * Sets the value of the tokenRequestorEci property.
194+ *
195+ * @param value
196+ * allowed object is
197+ * {@link String }
198+ *
199+ */
200+ public void setTokenRequestorEci (String value ) {
201+ this .tokenRequestorEci = value ;
202+ }
203+
123204}
0 commit comments