/** * School Reporting Systems API * School Reporting Systems. * * The version of the OpenAPI document: 1.0 * Contact: tony.henderson@elevenfiftynine.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { BxFilterCriteria } from './bx-filter-criteria'; /** * * @export * @interface BxFilter */ export interface BxFilter { /** * * @type {string} * @memberof BxFilter */ filterName?: string | null; /** * * @type {BxFilterCriteria} * @memberof BxFilter */ filterCriteria?: BxFilterCriteria; }