export interface IMIResponse { error?: any; errorMessage?: string; errorCode?: string; program?: string; transaction?: string; item?: any; items?: any[]; errorField?: string; errorType?: string; metadata: any; tag?: any; hasError(): boolean; } export interface IMIRequest { program: string; transaction: string; record: any; m3user: string; }