All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.xuyao5.dkl.eskits.schema.httpfs.ContentSummary Maven / Gradle / Ivy

There is a newer version: 0.14
Show newest version
package io.github.xuyao5.dkl.eskits.schema.httpfs;

import com.google.gson.annotations.SerializedName;
import lombok.Data;

/**
 * @author Thomas.XU(xuyao)
 * @version 7/09/21 23:49
 */
@Data(staticConstructor = "of")
public final class ContentSummary {

    @SerializedName(value = "directoryCount", alternate = {"DirectoryCount"})
    private long directoryCount;

    @SerializedName(value = "fileCount", alternate = {"FileCount"})
    private long fileCount;

    @SerializedName(value = "length", alternate = {"Length"})
    private long length;

    @SerializedName(value = "quota", alternate = {"Quota"})
    private long quota;

    @SerializedName(value = "spaceConsumed", alternate = {"SpaceConsumed"})
    private long spaceConsumed;

    @SerializedName(value = "spaceQuota", alternate = {"SpaceQuota"})
    private long spaceQuota;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy