Interface CardMetaData
-
public interface CardMetaDataContains the metadata of the digital card.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.StringgetCardReferenceId()The unique identifier of the card as returned by the TSP: VTS: Corresponds to vPanEnrollmentID.java.lang.StringgetIssuerEmail()Issuer's customer service email address.java.lang.StringgetIssuerName()The name of the issuer.java.lang.StringgetIssuerPhoneNumber()Issuer's customer service phone number.java.lang.StringgetIssuerWebsite()Issuer's customer service website URL.java.util.HashMap<java.lang.String,java.lang.String>getKeyValues()Hashmap of key/values used for specific issuer/wallet provider needs.java.lang.StringgetLongDescription()A long description for the card product.java.lang.StringgetPanExpiryDate()Plastic card expiry date in MMYY format.java.lang.StringgetPanLastDigits()Last (4 or 5) PAN digits to display.java.lang.StringgetPaymentAccountReference()A Payment Account Reference (PAR) that is assigned to PAN.java.lang.StringgetPrivacyPolicyUrl()URL of issuer's privacy policy.java.lang.StringgetProductId()Product unique identifier.java.lang.StringgetProductName()Short description of the card product.java.lang.StringgetShortDescription()A short description for the card product.java.lang.StringgetTermsAndConditionsUrl()URL of issuer's Terms and Conditions for card.java.lang.StringgetTokenExpiryDate()Token expiry date in MMYY format.java.lang.StringgetTokenID()Token unique identifier as defined by the TSP: VTS: Corresponds to tokenReferenceID.java.lang.StringgetTokenLastDigits()Last (4 or 5) token PAN digits to display.java.lang.StringgetTspId()The ID of the TSP, which can be: - AVTSfor the Visa scheme.
-
-
-
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 (4 or 5) PAN digits to display.
-
getPanExpiryDate
java.lang.String getPanExpiryDate()
Plastic card expiry date in MMYY format.
-
getTokenLastDigits
java.lang.String getTokenLastDigits()
Last (4 or 5) token PAN digits to display.
-
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()
The name of the issuer.
-
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 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: Corresponds to tokenReferenceID. MDES: 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.
-
getCardReferenceId
java.lang.String getCardReferenceId()
The unique identifier of the card as returned by the TSP: VTS: Corresponds to vPanEnrollmentID. MDES: Corresponds to panUniqueReference. GTOTSP: Corresponds to card id as assigned by issuer.
-
getTspId
java.lang.String getTspId()
The ID of the TSP, which can be: - AVTSfor the Visa scheme. - AMDESfor the Mastercard scheme. - A unique identifier for other domestic schemes.
-
getPaymentAccountReference
java.lang.String getPaymentAccountReference()
A Payment Account Reference (PAR) that is assigned to PAN.
-
-