import { Payment } from './Payment'; import { PaymentProperties } from './Payment'; export declare class GiftCard extends Payment { /** * Gift card number. */ cardNumber: string; /** * The name of gift card holder. */ cardHolderName: string; /** * The PIN of gift card. */ pin: string; readonly method = "GIFT_CARD"; constructor(giftCard: GiftCardProperties); } export interface GiftCardProperties extends PaymentProperties { cardNumber: string; cardHolderName: string; pin: string; }