UNPKG

@buckaroo/buckaroo_sdk

Version:
10 lines (9 loc) 534 B
import { PayablePaymentMethod } from '../../Services'; import IPay from './Models/Pay'; import { IRefund } from './Models/Refund'; import { ServiceCode } from '../../Utils'; export default class GiftCard extends PayablePaymentMethod { defaultServiceCode(): ServiceCode; pay(payload: IPay): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>; refund(payload: IRefund): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>; }