@buckaroo/buckaroo_sdk
Version:
Buckaroo payment SDK
13 lines (12 loc) • 617 B
TypeScript
import { IPay } from './Models/Pay';
import { PayablePaymentMethod } from '../../Services';
import { ServiceCode } from '../../Utils';
export default class IdealProcessing extends PayablePaymentMethod {
protected _serviceVersion: number;
defaultServiceCode(): ServiceCode;
pay(data: IPay): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>;
payRemainder(payload: IPay): import("../..").Request<typeof import("../..").TransactionResponse, import("../..").TransactionData>;
issuers(): Promise<{
[x: string]: string;
}[] | undefined>;
}