jira-api-v2 1.0.1

Jira Cloud platform REST API
Documentation
/*
 * 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
 * Generated by: https://openapi-generator.tech
 */

use crate::models;
use serde::{Deserialize, Serialize};

/// JqlQueryOrderByClause : Details of the order-by JQL clause.
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct JqlQueryOrderByClause {
    /// The list of order-by clause fields and their ordering directives.
    #[serde(rename = "fields")]
    pub fields: Vec<models::JqlQueryOrderByClauseElement>,
}

impl JqlQueryOrderByClause {
    /// Details of the order-by JQL clause.
    pub fn new(fields: Vec<models::JqlQueryOrderByClauseElement>) -> JqlQueryOrderByClause {
        JqlQueryOrderByClause {
            fields,
        }
    }
}