UNPKG

pluggy-sdk

Version:
9 lines (8 loc) 342 B
export declare const SCHEDULED_PAYMENT_STATUSES: readonly ["SCHEDULED", "COMPLETED", "ERROR", "CANCELED"]; export declare type ScheduledPaymentStatus = typeof SCHEDULED_PAYMENT_STATUSES[number]; export declare type SchedulePayment = { id: string; status: ScheduledPaymentStatus; scheduledDate: string; description: string; };