Implement rfs-client
This commit is contained in:
27
rfs-client/openapi/src/models/template_err_not_found.rs
Normal file
27
rfs-client/openapi/src/models/template_err_not_found.rs
Normal file
@@ -0,0 +1,27 @@
|
||||
/*
|
||||
* 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,
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user