| 123456789101112131415161718192021222324252627 |
- export interface UserAccount {
- id: string;
- name: string;
- department: string;
- medical_allowance: number;
- }
- export interface ExtractionResponse {
- provider_name: string;
- visit_date: string;
- total_amount: number;
- currency: string;
- items: string[];
- confidence_score: number;
- needs_manual_review: boolean;
- ai_reasoning: string;
- }
- export interface ClaimRecord {
- id: string;
- timestamp: string;
- submitted_by: string;
- department: string;
- amount_spent: number;
- amount_claimed: number;
- extraction_data: ExtractionResponse;
- }
|