com.antgroup.antchain.openapi.rms.models.AlarmLevelStatsVO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;
import com.aliyun.tea.*;
public class AlarmLevelStatsVO extends TeaModel {
// l0
@NameInMap("l0")
@Validation(required = true)
public Long l0;
// l1
@NameInMap("l1")
@Validation(required = true)
public Long l1;
// l2
@NameInMap("l2")
@Validation(required = true)
public Long l2;
public static AlarmLevelStatsVO build(java.util.Map map) throws Exception {
AlarmLevelStatsVO self = new AlarmLevelStatsVO();
return TeaModel.build(map, self);
}
public AlarmLevelStatsVO setL0(Long l0) {
this.l0 = l0;
return this;
}
public Long getL0() {
return this.l0;
}
public AlarmLevelStatsVO setL1(Long l1) {
this.l1 = l1;
return this;
}
public Long getL1() {
return this.l1;
}
public AlarmLevelStatsVO setL2(Long l2) {
this.l2 = l2;
return this;
}
public Long getL2() {
return this.l2;
}
}