/** * DuckyAPI * A customer facing api for WildDuck * * The version of the OpenAPI document: 1.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ export interface FilterListItem { /** * The name of the filter */ name?: string; /** * If true, then this filter is ignored */ disabled?: boolean; /** * Unique id of the filter */ id: string; /** * A list of query descriptions */ query: Array; /** * A list of action descriptions */ action: Array; /** * Datestring of the time the filter was created */ created: string; }