UNPKG

@apideck/node

Version:
44 lines (43 loc) 1.12 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 OrdersSort */ export interface OrdersSort { /** * The field on which to sort the Orders * @type {string} * @memberof OrdersSort */ by?: OrdersSortBy; /** * * @type {SortDirection} * @memberof OrdersSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum OrdersSortBy { created_at = "created_at", updated_at = "updated_at", name = "name" } export declare function OrdersSortFromJSON(json: any): OrdersSort; export declare function OrdersSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): OrdersSort; export declare function OrdersSortToJSON(value?: OrdersSort | null): any;