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

com.aliyun.datahub.model.GetMeteringInfoResult Maven / Gradle / Ivy

There is a newer version: 2.25.6
Show newest version
package com.aliyun.datahub.model;

import com.aliyun.datahub.client.model.GetMeterInfoResult;

/**
 * 
 * Represents the output for GetMeteringInfo.
 * 
 */
public class GetMeteringInfoResult extends Result {
    com.aliyun.datahub.client.model.GetMeterInfoResult proxyResult;

    public GetMeteringInfoResult(GetMeterInfoResult proxyResult) {
        this.proxyResult = proxyResult;
        setRequestId(proxyResult.getRequestId());
    }

    public GetMeteringInfoResult() {
        proxyResult = new com.aliyun.datahub.client.model.GetMeterInfoResult();
    }

    private long activeTime;
    private long storage;

    public long getStorage() {
        return proxyResult.getStorage();
    }

    public void setStorage(long storage) {
        proxyResult.setStorage(storage);
    }

    public long getActiveTime() {
        return proxyResult.getActiveTime();
    }

    public void setActiveTime(long activeTime) {
        proxyResult.setActiveTime(activeTime);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy