UNPKG

@apideck/node

Version:
44 lines (43 loc) 1.16 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 CompaniesSort */ export interface CompaniesSort { /** * The field on which to sort the Companies * @type {string} * @memberof CompaniesSort */ by?: CompaniesSortBy; /** * * @type {SortDirection} * @memberof CompaniesSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum CompaniesSortBy { created_at = "created_at", updated_at = "updated_at", name = "name" } export declare function CompaniesSortFromJSON(json: any): CompaniesSort; export declare function CompaniesSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): CompaniesSort; export declare function CompaniesSortToJSON(value?: CompaniesSort | null): any;