/** * The Jira Cloud platform REST API * Jira Cloud platform REST API documentation * * The version of the OpenAPI document: 1001.0.0-SNAPSHOT * Contact: ecosystem@atlassian.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 { JqlQueryField } from './'; /** * An element of the order-by JQL clause. * @export * @interface JqlQueryOrderByClauseElement */ export interface JqlQueryOrderByClauseElement { /** * The direction in which to order the results. * @type {string} * @memberof JqlQueryOrderByClauseElement */ direction: JqlQueryOrderByClauseElementDirectionEnum; /** * * @type {JqlQueryField} * @memberof JqlQueryOrderByClauseElement */ field?: JqlQueryField; } export declare function JqlQueryOrderByClauseElementFromJSON(json: any): JqlQueryOrderByClauseElement; export declare function JqlQueryOrderByClauseElementFromJSONTyped(json: any, ignoreDiscriminator: boolean): JqlQueryOrderByClauseElement; export declare function JqlQueryOrderByClauseElementToJSON(value?: JqlQueryOrderByClauseElement): any; /** * @export * @enum {string} */ export declare enum JqlQueryOrderByClauseElementDirectionEnum { Asc = "asc", Desc = "desc" }