@apideck/node
Version:
Apideck Node.js SDK
24 lines (23 loc) • 750 B
TypeScript
/**
* Apideck
* The Apideck OpenAPI Spec: SDK Optimized
*
* The version of the OpenAPI document: 10.13.0
* Contact: support@apideck.com
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
/**
* The direction in which to sort the results
* @export
* @enum {string}
*/
export declare enum SortDirection {
asc = "asc",
desc = "desc"
}
export declare function SortDirectionFromJSON(json: any): SortDirection;
export declare function SortDirectionFromJSONTyped(json: any, ignoreDiscriminator: boolean): SortDirection;
export declare function SortDirectionToJSON(value?: SortDirection | null): any;