| /* | |
| * | |
| * | |
| * 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 ExportProjectRequest { | |
| pub format: models::ExportFormat, | |
| /// Optional subset of pages; defaults to every page. | |
| pub pages: Option<Option<Vec<uuid::Uuid>>>, | |
| } | |
| impl ExportProjectRequest { | |
| pub fn new(format: models::ExportFormat) -> ExportProjectRequest { | |
| ExportProjectRequest { | |
| format, | |
| pages: None, | |
| } | |
| } | |
| } | |