/** * Pipedrive API v1 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { FilterConditionsConditionsInner } from './filter-conditions-conditions-inner'; /** * The conditions object of a filter * @export * @interface FilterConditions */ export interface FilterConditions { /** * The top-level glue is always \"and\" * @type {string} */ 'glue'?: FilterConditionsGlueConst; /** * The condition groups * @type {Array} */ 'conditions'?: Array; } export declare const FilterConditionsGlueConst: { readonly and: "and"; }; export type FilterConditionsGlueConst = typeof FilterConditionsGlueConst[keyof typeof FilterConditionsGlueConst];