import { ResiliationReasonEnum } from './ResiliationReasonEnum';
/** Information about the reason for the resiliation */
export interface ResiliationSurvey {
    /** Comment about this resiliation */
    comment?: string;
    /** Subsidiary response about this resiliation */
    subsidiary?: string;
    /** Type of reason for the resiliation */
    type: ResiliationReasonEnum;
}
//# sourceMappingURL=ResiliationSurvey.d.ts.map