pluggy-sdk
Version:
Official Node.js/TypeScript SDK for the Pluggy API.
9 lines (8 loc) • 326 B
TypeScript
export declare const SCHEDULED_PAYMENT_STATUSES: readonly ["SCHEDULED", "COMPLETED", "ERROR", "CANCELED"];
export type ScheduledPaymentStatus = typeof SCHEDULED_PAYMENT_STATUSES[number];
export type SchedulePayment = {
id: string;
status: ScheduledPaymentStatus;
scheduledDate: string;
description: string;
};