/*
* Orthanc API
*
* This is the full documentation of the [REST API](https://orthanc.uclouvain.be/book/users/rest.html) of Orthanc.<p>This reference is automatically generated from the source code of Orthanc. A [shorter cheat sheet](https://orthanc.uclouvain.be/book/users/rest-cheatsheet.html) is part of the Orthanc Book.<p>An earlier, manually crafted version from August 2019, is [still available](2019-08-orthanc-openapi.html), but is not up-to-date anymore ([source](https://groups.google.com/g/orthanc-users/c/NUiJTEICSl8/m/xKeqMrbqAAAJ)).
*
* The version of the OpenAPI document: 1.12.8
*
* Generated by: https://openapi-generator.tech
*/
use crate::models;
use serde::{Deserialize, Serialize};
/// ToolsReconstructPostRequest :
#[derive(Clone, Default, Debug, PartialEq, Serialize, Deserialize)]
pub struct ToolsReconstructPostRequest {
/// Also reconstruct the files of the resources (e.g: apply IngestTranscoding, StorageCompression). 'false' by default. (New in Orthanc 1.11.0)
#[serde(rename = "ReconstructFiles", skip_serializing_if = "Option::is_none")]
pub reconstruct_files: Option<bool>,
}
impl ToolsReconstructPostRequest {
///
pub fn new() -> ToolsReconstructPostRequest {
ToolsReconstructPostRequest {
reconstruct_files: None,
}
}
}