import type { AddressLevel } from './AddressLevel'; export type SuggestionApiInputDTO = { readonly createdTime?: string; readonly updatedTime?: string; readonly createdBy?: string; readonly changedBy?: string; readonly id?: string; addressLevels: Array; brokerType?: string; addressType?: SuggestionApiInputDTO.addressType; type?: string; }; export declare namespace SuggestionApiInputDTO { enum addressType { TOPIC = "topic" } }