com.aliyun.ice20201109.models.DescribeMeterImsEditUsageResponseBody 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 DescribeMeterImsEditUsageResponseBody extends TeaModel {
@NameInMap("Data")
public java.util.List data;
/**
* example:
* 7F3AE2C6-5CC6-5712-BAC5-5A735A157687
*/
@NameInMap("RequestId")
public String requestId;
public static DescribeMeterImsEditUsageResponseBody build(java.util.Map map) throws Exception {
DescribeMeterImsEditUsageResponseBody self = new DescribeMeterImsEditUsageResponseBody();
return TeaModel.build(map, self);
}
public DescribeMeterImsEditUsageResponseBody setData(java.util.List data) {
this.data = data;
return this;
}
public java.util.List getData() {
return this.data;
}
public DescribeMeterImsEditUsageResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class DescribeMeterImsEditUsageResponseBodyData extends TeaModel {
/**
* example:
* 1.23
*/
@NameInMap("Duration")
public Long duration;
/**
* example:
* 1080P
*/
@NameInMap("Profile")
public String profile;
/**
* example:
* 1656950400
*/
@NameInMap("Time")
public Long time;
public static DescribeMeterImsEditUsageResponseBodyData build(java.util.Map map) throws Exception {
DescribeMeterImsEditUsageResponseBodyData self = new DescribeMeterImsEditUsageResponseBodyData();
return TeaModel.build(map, self);
}
public DescribeMeterImsEditUsageResponseBodyData setDuration(Long duration) {
this.duration = duration;
return this;
}
public Long getDuration() {
return this.duration;
}
public DescribeMeterImsEditUsageResponseBodyData setProfile(String profile) {
this.profile = profile;
return this;
}
public String getProfile() {
return this.profile;
}
public DescribeMeterImsEditUsageResponseBodyData setTime(Long time) {
this.time = time;
return this;
}
public Long getTime() {
return this.time;
}
}
}