UNPKG

@apideck/node

Version:
43 lines (42 loc) 1.13 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 PaymentsSort */ export interface PaymentsSort { /** * The field on which to sort the Payments * @type {string} * @memberof PaymentsSort */ by?: PaymentsSortBy; /** * * @type {SortDirection} * @memberof PaymentsSort */ direction?: SortDirection; } /** * @export * @enum {string} */ export declare enum PaymentsSortBy { updated_at = "updated_at", created_at = "created_at" } export declare function PaymentsSortFromJSON(json: any): PaymentsSort; export declare function PaymentsSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentsSort; export declare function PaymentsSortToJSON(value?: PaymentsSort | null): any;