Interface SvDebitLogRecord


public interface SvDebitLogRecord
Record of a Stored Value debit log.
Since:
1.0.0
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets the debit amount value
    int
    Gets the SV balance value
    byte[]
    Gets the debit date as an array of bytes
    byte[]
    Gets the debit time as an array of bytes
    byte
    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[]
    Gets the SAM ID as an array of bytes
    int
    Gets the SAM transaction number value as an int
    int
    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