Skip to main content

Mountain/Air/AirServiceTypesStub/
IndexFilesResponse.rs

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