import { AddressModel } from '../components/ca-pickup-delivery-block/models/adress-model'; import { FileResponse } from './file-response'; import { EnumValue } from '../components/ca-pickup-delivery-block/models/enum-value'; import { BankResponse } from './bank-response'; export interface OwnerResponse { id?: number; name?: string | null; ownerType?: EnumValue; trailerCount?: number; truckCount?: number; ssnEin?: string | null; phone?: string | null; email?: string | null; note?: string | null; bank?: BankResponse; accountNumber?: string | null; routingNumber?: string | null; address?: AddressModel; files?: Array | null; fileCount?: number | null; createdAt?: string; updatedAt?: string; }