/*
* Geo Engine API
*
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 0.9.0
* Contact: dev@geoengine.de
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct OperatorQuota {
#[serde(rename = "count")]
pub count: i64,
#[serde(rename = "operatorName")]
pub operator_name: String,
#[serde(rename = "operatorPath")]
pub operator_path: String,
}
impl OperatorQuota {
pub fn new(count: i64, operator_name: String, operator_path: String) -> OperatorQuota {
OperatorQuota {
count,
operator_name,
operator_path,
}
}
}