Interface SvDebitLogRecord
public interface SvDebitLogRecord
Record of a Stored Value debit log.
- Since:
- 1.0.0
-
Method Summary
Modifier and TypeMethodDescriptionint
Gets the debit amount valueint
Gets the SV balance valuebyte[]
Gets the debit date as an array of bytesbyte[]
Gets the debit time as an array of bytesbyte
getKvc()
Gets the KVC of the debit key (as given in the last SV Debit)byte[]
Gets the raw data of the SV debit log record.byte[]
getSamId()
Gets the SAM ID as an array of bytesint
Gets the SAM transaction number value as an intint
Gets the SV transaction number value as an int
-
Method Details
-
getRawData
byte[] getRawData()Gets the raw data of the SV debit log record.- Returns:
- A byte array.
- Since:
- 1.0.0
-
getDebitDate
byte[] getDebitDate()Gets the debit date as an array of bytes- Returns:
- A 2-byte byte array
- Since:
- 1.0.0
-
getDebitTime
byte[] getDebitTime()Gets the debit time as an array of bytes- Returns:
- A 2-byte byte array
- Since:
- 1.0.0
-
getAmount
int getAmount()Gets the debit amount value- Returns:
- An int
- Since:
- 1.0.0
-
getBalance
int getBalance()Gets the SV balance value- Returns:
- An int
- Since:
- 1.0.0
-
getKvc
byte getKvc()Gets the KVC of the debit key (as given in the last SV Debit)- Returns:
- A byte
- Since:
- 1.0.0
-
getSamId
byte[] getSamId()Gets the SAM ID as an array of bytes- Returns:
- A 4-byte byte array
- Since:
- 1.0.0
-
getSamTNum
int getSamTNum()Gets the SAM transaction number value as an int- Returns:
- An int
- Since:
- 1.0.0
-
getSvTNum
int getSvTNum()Gets the SV transaction number value as an int- Returns:
- An int
- Since:
- 1.0.0
-