@apideck/node
Version:
Apideck Node.js SDK
43 lines (42 loc) • 1.09 kB
TypeScript
/**
* 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 BillsSort
*/
export interface BillsSort {
/**
* The field on which to sort the Bills
* @type {string}
* @memberof BillsSort
*/
by?: BillsSortBy;
/**
*
* @type {SortDirection}
* @memberof BillsSort
*/
direction?: SortDirection;
}
/**
* @export
* @enum {string}
*/
export declare enum BillsSortBy {
updated_at = "updated_at",
created_at = "created_at"
}
export declare function BillsSortFromJSON(json: any): BillsSort;
export declare function BillsSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): BillsSort;
export declare function BillsSortToJSON(value?: BillsSort | null): any;