/*
* Streams API
*
* Manage Tapis Streams API.
*
* The version of the OpenAPI document: 1
* Contact: cicsupport@tacc.utexas.edu
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ResultMetadata {
/// count of result set
#[serde(rename = "total_count", skip_serializing_if = "Option::is_none")]
pub total_count: Option<i32>,
}
impl ResultMetadata {
pub fn new() -> ResultMetadata {
ResultMetadata { total_count: None }
}
}