/* * Copyright (c) 2014 EMC Corporation * All Rights Reserved */ package com.emc.storageos.datadomain.restapi.model; import com.google.gson.Gson; /** * Created by zeldib on 2/10/14. */ public class DDCapacity { private long total; private long used; private long available; public long getTotal() { return total; } public void setTotal(long total) { this.total = total; } public long getUsed() { return used; } public void setUsed(long used) { this.used = used; } public long getAvailable() { return available; } public void setAvailable(long available) { this.available = available; } public String toString() { return new Gson().toJson(this).toString(); } }