mirror of https://github.com/micromata/borgbackup-butler.git

Kai Reinhard
09.32.2018 4ece88750272b3e2fc0bbccec7202d2faa1115b8
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
package de.micromata.borgbutler.json.borg;
 
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.Getter;
 
public class Stats {
    @Getter
    @JsonProperty("total_chunks")
    private long totalChunks;
    @Getter
    @JsonProperty("total_csize")
    private long totalCSize;
    @Getter
    @JsonProperty("total_size")
    private long totalSize;
    @Getter
    @JsonProperty("total_unique_chunks")
    private long totalUniqueChunks;
    @Getter
    @JsonProperty("unique_csize")
    private long uniqueCSize;
    @Getter
    @JsonProperty("unique_size")
    private long uniqueSize;
}