28 lines
609 B
Rust
28 lines
609 B
Rust
/*
|
|
* rfs
|
|
*
|
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
*
|
|
* The version of the OpenAPI document: 0.2.0
|
|
*
|
|
* Generated by: https://openapi-generator.tech
|
|
*/
|
|
|
|
use crate::models;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
|
|
pub struct TemplateErrNotFound {
|
|
#[serde(rename = "NotFound")]
|
|
pub not_found: String,
|
|
}
|
|
|
|
impl TemplateErrNotFound {
|
|
pub fn new(not_found: String) -> TemplateErrNotFound {
|
|
TemplateErrNotFound {
|
|
not_found,
|
|
}
|
|
}
|
|
}
|
|
|