/** * 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. */ /** * For a column model whose facet type is enumeration, defines the order in which the facet values are returned. If not specified, the default order is frequency, descending with a secondary sort by value ascending. * @export * @interface FacetColumnSortConfig */ export interface FacetColumnSortConfig { /** * Which property of a facet to use for sorting, can be by value frequency or the facet value itself. * @type {string} * @memberof FacetColumnSortConfig */ property?: FacetColumnSortConfigPropertyEnum; /** * The sorting direction. * @type {string} * @memberof FacetColumnSortConfig */ direction?: FacetColumnSortConfigDirectionEnum; } /** * @export */ export declare const FacetColumnSortConfigPropertyEnum: { readonly FREQUENCY: "FREQUENCY"; readonly VALUE: "VALUE"; }; export type FacetColumnSortConfigPropertyEnum = typeof FacetColumnSortConfigPropertyEnum[keyof typeof FacetColumnSortConfigPropertyEnum]; /** * @export */ export declare const FacetColumnSortConfigDirectionEnum: { readonly DESC: "DESC"; readonly ASC: "ASC"; }; export type FacetColumnSortConfigDirectionEnum = typeof FacetColumnSortConfigDirectionEnum[keyof typeof FacetColumnSortConfigDirectionEnum]; /** * Check if a given object implements the FacetColumnSortConfig interface. */ export declare function instanceOfFacetColumnSortConfig(value: object): value is FacetColumnSortConfig; export declare function FacetColumnSortConfigFromJSON(json: any): FacetColumnSortConfig; export declare function FacetColumnSortConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): FacetColumnSortConfig; export declare function FacetColumnSortConfigToJSON(json: any): FacetColumnSortConfig; export declare function FacetColumnSortConfigToJSONTyped(value?: FacetColumnSortConfig | null, ignoreDiscriminator?: boolean): any;