Gift Card Interface

LS Pay includes an interface structure to manage various gift card functions. The interface is built on the supported functions from Verifone Point (US).

IGiftCard

If inherited by the PED, the interface gives access to the gift card service.

IGiftCardService

Includes various management functions:

  • Activate activates a card with an initial amount

  • AddValue deposits a given amount to a card

  • BalanceInquiry returns the balance of a card

  • CloseCard and Deactivate close a card.

Copy
  public interface IGiftCardService
  {
    GiftCardResponse Activate(Decimal Amount);
    GiftCardResponse AddValue(Decimal Amount);
    GiftCardResponse BalanceInquiry();
    GiftCardResponse CloseCard();                
    GiftCardResponse Deactivate();
  }