import { EnumValue } from '../components/ca-pickup-delivery-block/models/enum-value'; import { FileResponse } from './file-response'; import { StateResponse } from './state-response'; import { CdlEndorsementResponse, CdlRestrictionResponse, } from './cdl-restriction-response'; export interface CdlResponse { id?: number; state?: StateResponse; cdlNumber?: string | null; issueDate?: string; expDate?: string; status?: number; dateDeactivated?: string | null; classType?: EnumValue; cdlRestrictions?: Array | null; cdlEndorsements?: Array | null; note?: string | null; createdAt?: string; updatedAt?: string; files?: Array | null; expirationDays?: number | null; percentage?: number | null; }