UNPKG

@crediblex.io/fineract-api-client

Version:
32 lines 733 B
/** * Represents the status of a holiday. */ export interface HolidayStatus { id: number; code: string; value: string; } /** * Represents a holiday in the Fineract system. */ export interface Holiday { id: number; name: string; description: string; fromDate: [number, number, number]; toDate: [number, number, number]; repaymentsRescheduledTo: [number, number, number]; status: HolidayStatus; reschedulingType: number; } /** * Represents the response when fetching holidays. */ export type GetHolidaysResponse = Holiday[]; /** * Represents the parameters for fetching holidays. */ export interface GetHolidaysParams { officeId?: number; } //# sourceMappingURL=holidays.d.ts.map