export interface IJSONSuccessResponseProps { status?: number; message?: string; data: Record | Record[]; meta?: { total: number; page: number; perPage: number; }; } export interface IJSONErrorResponseProps { status?: number; message?: string; error: string; } export interface IJSONValidationErrorResponseProps { errors: Record[]; }