PaymentScheduleClient: {
    getPaymentSchedule: ((paymentScheduleId: string) => Promise<PaymentSchedule>);
    getPaymentSchedules: ((options?: {
        page?: PageInput;
        sort?: PaymentScheduleSortInput;
        filter?: PaymentScheduleFilterInput;
    }) => Promise<GetPaymentSchedulesResponse>);
    revokePaymentSchedules: ((options?: {
        billingKey?: string;
        scheduleIds?: string[];
    }) => Promise<RevokePaymentSchedulesResponse>);
    createPaymentSchedule: ((paymentId: string, payment: BillingKeyPaymentInput, timeToPay: string) => Promise<CreatePaymentScheduleResponse>);
}

Type declaration