utapi_rs/models/delete_file.rs
1use serde::Deserialize;
2
3/// Represents the response received from an attempt to delete a file.
4///
5/// This struct is used to deserialize the JSON response returned by the server
6/// when a file deletion operation is performed. The `success` field indicates
7/// whether the deletion was successful.
8#[derive(Debug, Deserialize)]
9pub struct DeleteFileResponse {
10 /// A boolean indicating whether the file was successfully deleted.
11 pub success: bool,
12}