/** * 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. */ /** * A pair containing the value of a column and the number of times that value appears * @export * @interface FacetColumnResultValueCount */ export interface FacetColumnResultValueCount { /** * the value that is in a column * @type {string} * @memberof FacetColumnResultValueCount */ value?: string; /** * the number of times the value appears in the column * @type {number} * @memberof FacetColumnResultValueCount */ count?: number; /** * whether this facet was selected by the user * @type {boolean} * @memberof FacetColumnResultValueCount */ isSelected?: boolean; } /** * Check if a given object implements the FacetColumnResultValueCount interface. */ export declare function instanceOfFacetColumnResultValueCount(value: object): value is FacetColumnResultValueCount; export declare function FacetColumnResultValueCountFromJSON(json: any): FacetColumnResultValueCount; export declare function FacetColumnResultValueCountFromJSONTyped(json: any, ignoreDiscriminator: boolean): FacetColumnResultValueCount; export declare function FacetColumnResultValueCountToJSON(json: any): FacetColumnResultValueCount; export declare function FacetColumnResultValueCountToJSONTyped(value?: FacetColumnResultValueCount | null, ignoreDiscriminator?: boolean): any;