
com.aliyun.ice20201109.models.DescribeMeterImsSummaryRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DescribeMeterImsSummaryRequest extends TeaModel {
/**
* The end of the time range to query. The value is a 10-digit timestamp.
* This parameter is required.
*
* example:
* 1656995036
*/
@NameInMap("EndTs")
public Long endTs;
/**
* This parameter does not take effect. By default, the usage data of all regions is returned.
*
* example:
* cn-shanghai
*/
@NameInMap("Region")
public String region;
/**
* The beginning of the time range to query. The value is a 10-digit timestamp.
* This parameter is required.
*
* example:
* 1654403036
*/
@NameInMap("StartTs")
public Long startTs;
public static DescribeMeterImsSummaryRequest build(java.util.Map map) throws Exception {
DescribeMeterImsSummaryRequest self = new DescribeMeterImsSummaryRequest();
return TeaModel.build(map, self);
}
public DescribeMeterImsSummaryRequest setEndTs(Long endTs) {
this.endTs = endTs;
return this;
}
public Long getEndTs() {
return this.endTs;
}
public DescribeMeterImsSummaryRequest setRegion(String region) {
this.region = region;
return this;
}
public String getRegion() {
return this.region;
}
public DescribeMeterImsSummaryRequest setStartTs(Long startTs) {
this.startTs = startTs;
return this;
}
public Long getStartTs() {
return this.startTs;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy