io.leoplatform.sdk.payload.StorageStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leo-api Show documentation
Show all versions of leo-api Show documentation
SDK for LEO Insights platform
The newest version!
package io.leoplatform.sdk.payload;
import com.fasterxml.jackson.annotation.JsonAnyGetter;
import com.fasterxml.jackson.annotation.JsonIgnore;
import java.util.Map;
public class StorageStats {
@JsonIgnore
private final Map botUnits;
public StorageStats(Map botUnits) {
this.botUnits = botUnits;
}
@JsonAnyGetter
public Map any() {
return botUnits;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy