/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * SortDirection is the ordering applied to any sortable list endpoint. * Shared across resources so a caller learns it once. * * - SORT_DIRECTION_UNSPECIFIED: Sort direction not specified (defaults to descending) * - SORT_DIRECTION_ASC: Sort in ascending order * - SORT_DIRECTION_DESC: Sort in descending order * @export */ export declare const SortDirection: { readonly SortDirectionUnspecified: "SORT_DIRECTION_UNSPECIFIED"; readonly SortDirectionAsc: "SORT_DIRECTION_ASC"; readonly SortDirectionDesc: "SORT_DIRECTION_DESC"; }; export type SortDirection = typeof SortDirection[keyof typeof SortDirection]; export declare function instanceOfSortDirection(value: any): boolean; export declare function SortDirectionFromJSON(json: any): SortDirection; export declare function SortDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SortDirection; export declare function SortDirectionToJSON(value?: SortDirection | null): any; export declare function SortDirectionToJSONTyped(value: any, ignoreDiscriminator: boolean): SortDirection;