Package net.authorize.api.contract.v1
Class CreditCardMaskedType
- java.lang.Object
-
- net.authorize.api.contract.v1.CreditCardMaskedType
-
public class CreditCardMaskedType extends Object
Java class for creditCardMaskedType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="creditCardMaskedType"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="cardNumber"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <length value="8"/> </restriction> </simpleType> </element> <element name="expirationDate"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <minLength value="4"/> <maxLength value="7"/> </restriction> </simpleType> </element> <element name="cardType" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="cardArt" type="{AnetApi/xml/v1/schema/AnetApiSchema.xsd}cardArt" minOccurs="0"/> <element name="issuerNumber" minOccurs="0"> <simpleType> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <length value="6"/> </restriction> </simpleType> </element> <element name="isPaymentToken" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected CardArtcardArtprotected StringcardNumberprotected StringcardTypeprotected StringexpirationDateprotected BooleanisPaymentTokenprotected StringissuerNumber
-
Constructor Summary
Constructors Constructor Description CreditCardMaskedType()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CardArtgetCardArt()Gets the value of the cardArt property.StringgetCardNumber()Gets the value of the cardNumber property.StringgetCardType()Gets the value of the cardType property.StringgetExpirationDate()Gets the value of the expirationDate property.StringgetIssuerNumber()Gets the value of the issuerNumber property.BooleanisIsPaymentToken()Gets the value of the isPaymentToken property.voidsetCardArt(CardArt value)Sets the value of the cardArt property.voidsetCardNumber(String value)Sets the value of the cardNumber property.voidsetCardType(String value)Sets the value of the cardType property.voidsetExpirationDate(String value)Sets the value of the expirationDate property.voidsetIsPaymentToken(Boolean value)Sets the value of the isPaymentToken property.voidsetIssuerNumber(String value)Sets the value of the issuerNumber property.
-
-
-
Method Detail
-
getCardNumber
public String getCardNumber()
Gets the value of the cardNumber property.- Returns:
- possible object is
String
-
setCardNumber
public void setCardNumber(String value)
Sets the value of the cardNumber property.- Parameters:
value- allowed object isString
-
getExpirationDate
public String getExpirationDate()
Gets the value of the expirationDate property.- Returns:
- possible object is
String
-
setExpirationDate
public void setExpirationDate(String value)
Sets the value of the expirationDate property.- Parameters:
value- allowed object isString
-
getCardType
public String getCardType()
Gets the value of the cardType property.- Returns:
- possible object is
String
-
setCardType
public void setCardType(String value)
Sets the value of the cardType property.- Parameters:
value- allowed object isString
-
getCardArt
public CardArt getCardArt()
Gets the value of the cardArt property.- Returns:
- possible object is
CardArt
-
setCardArt
public void setCardArt(CardArt value)
Sets the value of the cardArt property.- Parameters:
value- allowed object isCardArt
-
getIssuerNumber
public String getIssuerNumber()
Gets the value of the issuerNumber property.- Returns:
- possible object is
String
-
setIssuerNumber
public void setIssuerNumber(String value)
Sets the value of the issuerNumber property.- Parameters:
value- allowed object isString
-
isIsPaymentToken
public Boolean isIsPaymentToken()
Gets the value of the isPaymentToken property.- Returns:
- possible object is
Boolean
-
-