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 JournalEntriesSort */ export interface JournalEntriesSort { /** * The field on which to sort the Journal Entries. * @type {string} * @memberof JournalEntriesSort */ by?: JournalEntriesSortBy; /** * * @type {SortDirection} * @memberof JournalEntriesSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum JournalEntriesSortBy { created_at = "created_at", updated_at = "updated_at" } export declare function JournalEntriesSortFromJSON(json: any): JournalEntriesSort; export declare function JournalEntriesSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): JournalEntriesSort; export declare function JournalEntriesSortToJSON(value?: JournalEntriesSort | null): any;