Skip to main content

Mountain/Air/AirServiceTypesStub/
IndexFilesResponse.rs

1#![allow(non_snake_case)]
2
3//! `IndexFiles` response DTO.
4
5#[derive(Debug, Clone)]
6pub struct Struct {
7	pub success:bool,
8
9	pub files_indexed:u32,
10
11	pub total_size:u64,
12
13	pub error:String,
14}