UNPKG

@apideck/node

Version:
44 lines (43 loc) 1.19 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 CollectionsSort */ export interface CollectionsSort { /** * The field on which to sort the Collections * @type {string} * @memberof CollectionsSort */ by?: CollectionsSortBy; /** * * @type {SortDirection} * @memberof CollectionsSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum CollectionsSortBy { name = "name", created_at = "created_at", updated_at = "updated_at" } export declare function CollectionsSortFromJSON(json: any): CollectionsSort; export declare function CollectionsSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): CollectionsSort; export declare function CollectionsSortToJSON(value?: CollectionsSort | null): any;