| /* | |
| * | |
| * | |
| * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) | |
| * | |
| * The version of the OpenAPI document: | |
| * | |
| * Generated by: https://openapi-generator.tech | |
| */ | |
| use crate::models; | |
| use serde::{Deserialize, Serialize}; | |
| pub struct ExportProjectResponse { | |
| pub count: u32, | |
| pub path: String, | |
| } | |
| impl ExportProjectResponse { | |
| pub fn new(count: u32, path: String) -> ExportProjectResponse { | |
| ExportProjectResponse { | |
| count, | |
| path, | |
| } | |
| } | |
| } | |