/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * JSON schema for a Facet Constraint for a particular facet in the search results. * @export * @interface FacetConstraint */ export interface FacetConstraint { /** * The value of the facet constraint * @type {string} * @memberof FacetConstraint */ value?: string; /** * The number of search results that are in this particular facet constraint * @type {number} * @memberof FacetConstraint */ count?: number; } /** * Check if a given object implements the FacetConstraint interface. */ export declare function instanceOfFacetConstraint(value: object): value is FacetConstraint; export declare function FacetConstraintFromJSON(json: any): FacetConstraint; export declare function FacetConstraintFromJSONTyped(json: any, ignoreDiscriminator: boolean): FacetConstraint; export declare function FacetConstraintToJSON(json: any): FacetConstraint; export declare function FacetConstraintToJSONTyped(value?: FacetConstraint | null, ignoreDiscriminator?: boolean): any;