UNPKG

@apideck/node

Version:
43 lines (42 loc) 1.08 kB
/** * 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. */ import { SortDirection } from './SortDirection'; /** * * @export * @interface FilesSort */ export interface FilesSort { /** * The field on which to sort the Files * @type {string} * @memberof FilesSort */ by?: FilesSortBy; /** * * @type {SortDirection} * @memberof FilesSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum FilesSortBy { updated_at = "updated_at", name = "name" } export declare function FilesSortFromJSON(json: any): FilesSort; export declare function FilesSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): FilesSort; export declare function FilesSortToJSON(value?: FilesSort | null): any;