20 lines
712 B
TypeScript

export declare const PAYMENT_METHOD_TYPE: {
readonly CREDIT_CARD: "CreditCard";
readonly BANK_ACCOUNT: "BankAccount";
readonly REMOTE_CREDIT_CARD: "RemoteCreditCard";
readonly REMOTE_BANK_ACCOUNT: "RemoteBankAccount";
readonly MANUAL: "Manual";
};
export declare const PAYMENT_GATEWAY_TYPE: {
readonly MERCHANT: "merchant";
readonly THIRDPARTY: "thirdparty";
readonly TOKENIZATION: "tokenization";
readonly MANUAL: "manual";
};
export interface InvoicePaymentLink {
url: string;
expiresAt: string;
gatewayName?: string;
}
export type { PaymentMethodType, PaymentMethod, PaymentMethodList, PaymentGatewayType, PaymentGateway, PaymentGatewayList, } from './schema';