com.aliyun.dingtalkpackage_1_0.models.ReleaseGrayOrgSetRequest 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 ReleaseGrayOrgSetRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 5000000000000000
*/
@NameInMap("miniAppId")
public String miniAppId;
/**
* This parameter is required.
*/
@NameInMap("value")
public java.util.List value;
/**
* This parameter is required.
*
* example:
* 0.0.1
*/
@NameInMap("version")
public String version;
public static ReleaseGrayOrgSetRequest build(java.util.Map map) throws Exception {
ReleaseGrayOrgSetRequest self = new ReleaseGrayOrgSetRequest();
return TeaModel.build(map, self);
}
public ReleaseGrayOrgSetRequest setMiniAppId(String miniAppId) {
this.miniAppId = miniAppId;
return this;
}
public String getMiniAppId() {
return this.miniAppId;
}
public ReleaseGrayOrgSetRequest setValue(java.util.List value) {
this.value = value;
return this;
}
public java.util.List getValue() {
return this.value;
}
public ReleaseGrayOrgSetRequest setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
}