import type * as Merge from "../../../index"; export interface Issue { id?: string; /** * Status of the issue. Options: ('ONGOING', 'RESOLVED') * * * `ONGOING` - ONGOING * * `RESOLVED` - RESOLVED */ status?: Merge.crm.IssueStatus; errorDescription: string; endUser?: Record; firstIncidentTime?: Date; lastIncidentTime?: Date; isMuted?: boolean; errorDetails?: string[]; }