summaryrefslogtreecommitdiffstats
path: root/ipfs-api/src/response/files.rs
diff options
context:
space:
mode:
Diffstat (limited to 'ipfs-api/src/response/files.rs')
-rw-r--r--ipfs-api/src/response/files.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/ipfs-api/src/response/files.rs b/ipfs-api/src/response/files.rs
index 069ba32..f27be1f 100644
--- a/ipfs-api/src/response/files.rs
+++ b/ipfs-api/src/response/files.rs
@@ -50,10 +50,17 @@ pub struct FilesStatResponse {
#[serde(rename = "Type")]
pub typ: String,
+
+ #[serde(default)]
+ pub size_local: Option<u64>,
+ #[serde(default)]
+ pub local: Option<bool>,
}
pub type FilesWriteResponse = ();
+pub type FilesChcidResponse = ();
+
#[cfg(test)]
mod tests {
deserialize_test!(v0_files_ls_0, FilesLsResponse);