Interface CardMetaData
-
public interface CardMetaData
Contains meta data for digital card.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getIssuerEmail()
Issuer's customer service email address.java.lang.String
getIssuerName()
Name of the issuer of the card productjava.lang.String
getIssuerPhoneNumber()
Issuer's customer service phone number.java.lang.String
getIssuerWebsite()
Issuer's customer service email website url.java.util.HashMap<java.lang.String,java.lang.String>
getKeyValues()
Hashmap of key/values used for specific issuer/wallet provider needsjava.lang.String
getLongDescription()
A long description for the card product.java.lang.String
getPanExpiryDate()
Plastic card expiry date in MMYY formatjava.lang.String
getPanLastDigits()
Last pan digits to display (4 or 5) of the plastic cardjava.lang.String
getPrivacyPolicyUrl()
URL of issuer's privacy policyjava.lang.String
getProductId()
Product unique identifierjava.lang.String
getProductName()
Short description of the card productjava.lang.String
getShortDescription()
A short description for the card productjava.lang.String
getTermsAndConditionsUrl()
URL of issuer's Terms and Conditions for cardjava.lang.String
getTokenExpiryDate()
Token expiry date in MMYY formatjava.lang.String
getTokenID()
Token unique identifier as defined by the TSP.java.lang.String
getTokenLastDigits()
Last digits of the token PAN to display (4 or 5)
-
-
-
Method Detail
-
getProductId
java.lang.String getProductId()
Product unique identifier
-
getProductName
java.lang.String getProductName()
Short description of the card product
-
getPanLastDigits
java.lang.String getPanLastDigits()
Last pan digits to display (4 or 5) of the plastic card
-
getPanExpiryDate
java.lang.String getPanExpiryDate()
Plastic card expiry date in MMYY format
-
getTokenLastDigits
java.lang.String getTokenLastDigits()
Last digits of the token PAN to display (4 or 5)
-
getTokenExpiryDate
java.lang.String getTokenExpiryDate()
Token expiry date in MMYY format
-
getShortDescription
java.lang.String getShortDescription()
A short description for the card product
-
getLongDescription
java.lang.String getLongDescription()
A long description for the card product.
-
getIssuerName
java.lang.String getIssuerName()
Name of the issuer of the card product
-
getIssuerPhoneNumber
java.lang.String getIssuerPhoneNumber()
Issuer's customer service phone number.
-
getIssuerEmail
java.lang.String getIssuerEmail()
Issuer's customer service email address.
-
getIssuerWebsite
java.lang.String getIssuerWebsite()
Issuer's customer service email website url.
-
getTermsAndConditionsUrl
java.lang.String getTermsAndConditionsUrl()
URL of issuer's Terms and Conditions for card
-
getPrivacyPolicyUrl
java.lang.String getPrivacyPolicyUrl()
URL of issuer's privacy policy
-
getTokenID
java.lang.String getTokenID()
Token unique identifier as defined by the TSP. VTS - it corresponds to tokenReferenceID MDES - it corresponds to tokenUniqueReference
-
getKeyValues
java.util.HashMap<java.lang.String,java.lang.String> getKeyValues()
Hashmap of key/values used for specific issuer/wallet provider needs
-
-