import type { Address } from '@wisemen/vue-core-components'; import type { CbeEnterpriseStatus } from '@/client'; import type { CbeEnterpriseNumber } from '@/models/cbe/cbeEnterpriseNumber.model.ts'; export interface CbeEnterpriseSearch { uuid: CbeEnterpriseNumber; startDate: string | null; name: string | null; abbreviation: string | null; address: Address | null; email: string | null; fax: string | null; phone: string | null; status: CbeEnterpriseStatus; website: string | null; }