@apideck/node
Version:
Apideck Node.js SDK
43 lines (42 loc) • 1.14 kB
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.
*/
import { SortDirection } from './SortDirection';
/**
*
* @export
* @interface SuppliersSort
*/
export interface SuppliersSort {
/**
* The field on which to sort the Suppliers
* @type {string}
* @memberof SuppliersSort
*/
by?: SuppliersSortBy;
/**
*
* @type {SortDirection}
* @memberof SuppliersSort
*/
direction?: SortDirection;
}
/**
* @export
* @enum {string}
*/
export declare enum SuppliersSortBy {
created_at = "created_at",
updated_at = "updated_at"
}
export declare function SuppliersSortFromJSON(json: any): SuppliersSort;
export declare function SuppliersSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuppliersSort;
export declare function SuppliersSortToJSON(value?: SuppliersSort | null): any;