/** * This file was auto-generated by Fern from our API Definition. */ export interface Issue { /** Issue code. */ code?: string; /** Any associated details. */ details?: Record; /** Message describing the issue. */ message: string; /** Underlying reason for the issue. */ reason?: string; }