/** * Hook Filter model */ export type HookFilterDTO = { /** * Filter type */ type?: string; /** * Filter Value */ value?: string; };