UNPKG

@apideck/node

Version:
43 lines (42 loc) 1.21 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 PurchaseOrdersSort */ export interface PurchaseOrdersSort { /** * The field on which to sort the Purchase Orders * @type {string} * @memberof PurchaseOrdersSort */ by?: PurchaseOrdersSortBy; /** * * @type {SortDirection} * @memberof PurchaseOrdersSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum PurchaseOrdersSortBy { updated_at = "updated_at", created_at = "created_at" } export declare function PurchaseOrdersSortFromJSON(json: any): PurchaseOrdersSort; export declare function PurchaseOrdersSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): PurchaseOrdersSort; export declare function PurchaseOrdersSortToJSON(value?: PurchaseOrdersSort | null): any;