@apideck/node
Version:
Apideck Node.js SDK
43 lines (42 loc) • 1.13 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 CommentsSort
*/
export interface CommentsSort {
/**
* The field on which to sort the Comments
* @type {string}
* @memberof CommentsSort
*/
by?: CommentsSortBy;
/**
*
* @type {SortDirection}
* @memberof CommentsSort
*/
direction?: SortDirection;
}
/**
* @export
* @enum {string}
*/
export declare enum CommentsSortBy {
created_at = "created_at",
updated_at = "updated_at"
}
export declare function CommentsSortFromJSON(json: any): CommentsSort;
export declare function CommentsSortFromJSONTyped(json: any, ignoreDiscriminator: boolean): CommentsSort;
export declare function CommentsSortToJSON(value?: CommentsSort | null): any;