Package com.six.timapi
Class MobileTopupValue
- java.lang.Object
-
- com.six.timapi.MobileTopupValue
-
public class MobileTopupValue extends Object
Contains the name of a mobile topup issuer and an associated voucher value.
-
-
Constructor Summary
Constructors Constructor Description MobileTopupValue()
Create instance.MobileTopupValue(MobileTopupValue value)
Create copy of value.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Amount>
getAmount()
In a request defines the original amount for the transaction (given by ECR), in response the final authorized amount (given by host) in minor units.TimeDate
getAppExpirationDate()
Application expiration date.String
getCardRef()
Reference number provided and created for the card.String
getIssuerName()
Contains the name of an issuer off (mobile topup) vouchers.void
setAppExpirationDate(TimeDate appExpirationDate)
void
setCardRef(String cardRef)
void
setIssuerName(String issuerName)
-
-
-
Constructor Detail
-
MobileTopupValue
public MobileTopupValue()
Create instance.
-
MobileTopupValue
public MobileTopupValue(MobileTopupValue value)
Create copy of value.
-
-
Method Detail
-
getIssuerName
public String getIssuerName()
Contains the name of an issuer off (mobile topup) vouchers. Optional: For brand name based Mobile Topup transactions.
-
setIssuerName
public void setIssuerName(String issuerName)
-
getCardRef
public String getCardRef()
Reference number provided and created for the card. Optional: For PAN based Mobile Topup transactions. Send type 06 Non-PCI-PAN.
-
setCardRef
public void setCardRef(String cardRef)
-
getAppExpirationDate
public TimeDate getAppExpirationDate()
Application expiration date. Each application on a card has a corresponding expiration date and can be read from the card. Optional: For PAN based Mobile Topup transactions. Needs to be present if CardRef is present.
-
setAppExpirationDate
public void setAppExpirationDate(TimeDate appExpirationDate)
-
-