Skip to main content

tapis_apps/models/
resp_apps_metadata.rs

1/*
2 * Tapis Applications API
3 *
4 * The Tapis Applications API provides for management of Tapis applications including permissions.
5 *
6 * The version of the OpenAPI document: 25Q4.0
7 * Contact: cicsupport@tacc.utexas.edu
8 * Generated by: https://openapi-generator.tech
9 */
10
11use crate::models;
12use serde::{Deserialize, Serialize};
13
14#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
15pub struct RespAppsMetadata {
16    #[serde(rename = "recordCount", skip_serializing_if = "Option::is_none")]
17    pub record_count: Option<i32>,
18    #[serde(rename = "recordLimit", skip_serializing_if = "Option::is_none")]
19    pub record_limit: Option<i32>,
20    #[serde(rename = "recordsSkipped", skip_serializing_if = "Option::is_none")]
21    pub records_skipped: Option<i32>,
22    #[serde(rename = "orderBy", skip_serializing_if = "Option::is_none")]
23    pub order_by: Option<String>,
24    #[serde(rename = "startAfter", skip_serializing_if = "Option::is_none")]
25    pub start_after: Option<String>,
26    #[serde(rename = "totalCount", skip_serializing_if = "Option::is_none")]
27    pub total_count: Option<i32>,
28}
29
30impl RespAppsMetadata {
31    pub fn new() -> RespAppsMetadata {
32        RespAppsMetadata {
33            record_count: None,
34            record_limit: None,
35            records_skipped: None,
36            order_by: None,
37            start_after: None,
38            total_count: None,
39        }
40    }
41}