com.aliyun.dingtalkpackage_1_0.models.ReleaseGrayPercentGetResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkpackage_1_0.models;
import com.aliyun.tea.*;
public class ReleaseGrayPercentGetResponseBody extends TeaModel {
@NameInMap("value")
public Float value;
public static ReleaseGrayPercentGetResponseBody build(java.util.Map map) throws Exception {
ReleaseGrayPercentGetResponseBody self = new ReleaseGrayPercentGetResponseBody();
return TeaModel.build(map, self);
}
public ReleaseGrayPercentGetResponseBody setValue(Float value) {
this.value = value;
return this;
}
public Float getValue() {
return this.value;
}
}