export interface IFilterModel { filterType: 'systemAttribute' | 'objectTypeAttribute'; typeId: string; key: string; operator: string; value: string; dateValueType: string; } export interface IObjectSearchCriteriaModel { indexType: 'FNDY_ACCOUNT' | 'FNDY_OBJ_TYPE' | 'FNDY_INDEX'; typeId?: string; indexName?: string; indexValues: { [key: string]: any; }; filters: IFilterModel[]; }