com.aliyun.ice20201109.models.DescribeMeterImsSummaryRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class DescribeMeterImsSummaryRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1656995036
*/
@NameInMap("EndTs")
public Long endTs;
/**
* example:
* cn-shanghai
*/
@NameInMap("Region")
public String region;
/**
* 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;
}
}