com.aliyun.dingtalkexclusive_1_0.models.GenerateDarkWaterMarkRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class GenerateDarkWaterMarkRequest extends TeaModel {
// 工号列表
@NameInMap("userIdList")
public java.util.List userIdList;
public static GenerateDarkWaterMarkRequest build(java.util.Map map) throws Exception {
GenerateDarkWaterMarkRequest self = new GenerateDarkWaterMarkRequest();
return TeaModel.build(map, self);
}
public GenerateDarkWaterMarkRequest setUserIdList(java.util.List userIdList) {
this.userIdList = userIdList;
return this;
}
public java.util.List getUserIdList() {
return this.userIdList;
}
}