java.lang.Object | |
↳ | com.samsung.android.knox.mpos.MPOSPayInfo |
This class provides payment information used for the showConfirmView API.
[Expand]
Inherited Constants | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From interface
android.os.Parcelable
|
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Provide payment information.
|
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
API to get the encryption algorithm.
| |||||||||||
API to get the payment amount.
| |||||||||||
API to get the card number.
| |||||||||||
API to get the currency code.
| |||||||||||
API to get the expiry date.
| |||||||||||
API to get nonce.
| |||||||||||
API to get timestamp.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Object
| |||||||||||
From interface
android.os.Parcelable
|
Provide payment information.
cardNumber | card number for payment. can be null when algorithm is MPOS_AES128 or MPOS_RSA . |
---|---|
expDate | card expire data. can be null when algorithm is MPOS_AES128 , MPOS_RSA , or MPOS_ISO4 . |
nonce | nonce is required for MPOS_SHA_384 . Format is 32 Bytes length Alphanumeric String. |
timeStamp | timestamp for payment. can be null when algorithm is MPOS_AES128 , MPOS_RSA , or MPOS_ISO4 . |
amount | the amount of payment. value <= 0 is not allowed except MPOS_AES128 , MPOS_RSA , or MPOS_ISO4 . |
currencyCode | the current code payment. value <= 0 is not allowed except MPOS_AES128 , MPOS_RSA , or MPOS_ISO4 . |
algorithm | encrypt algorithm for TUI. available value is one ofMPOS_SHA_384 ,MPOS_AES128 , MPOS_RSA ,MPOS_ISO4 and MPOSConstants#MPOS_EP2.
|
API to get the payment amount.
API to get the currency code.