UNPKG

@apideck/node

Version:
47 lines (46 loc) 1.23 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 ContactsSort */ export interface ContactsSort { /** * The field on which to sort the Contacts * @type {string} * @memberof ContactsSort */ by?: ContactsSortBy; /** * * @type {SortDirection} * @memberof ContactsSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum ContactsSortBy { created_at = "created_at", updated_at = "updated_at", name = "name", first_name = "first_name", last_name = "last_name", email = "email" } export declare function ContactsSortFromJSON(json: any): ContactsSort; export declare function ContactsSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): ContactsSort; export declare function ContactsSortToJSON(value?: ContactsSort | null): any;