/** * 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. */ /** * * @export * @interface SortItem */ export interface SortItem { /** * The column to sort on. * @type {string} * @memberof SortItem */ column?: string; /** * Optional sort direction. Default is the default mysql sort direction for that type. * @type {string} * @memberof SortItem */ direction?: SortItemDirectionEnum; } /** * @export */ export declare const SortItemDirectionEnum: { readonly ASC: "ASC"; readonly DESC: "DESC"; }; export type SortItemDirectionEnum = typeof SortItemDirectionEnum[keyof typeof SortItemDirectionEnum]; /** * Check if a given object implements the SortItem interface. */ export declare function instanceOfSortItem(value: object): value is SortItem; export declare function SortItemFromJSON(json: any): SortItem; export declare function SortItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): SortItem; export declare function SortItemToJSON(json: any): SortItem; export declare function SortItemToJSONTyped(value?: SortItem | null, ignoreDiscriminator?: boolean): any;