com.aliyun.dingtalkexclusive_1_0.models.SendAppDingRequest 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 SendAppDingRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 开会
*/
@NameInMap("content")
public String content;
/**
* This parameter is required.
*/
@NameInMap("userids")
public java.util.List userids;
public static SendAppDingRequest build(java.util.Map map) throws Exception {
SendAppDingRequest self = new SendAppDingRequest();
return TeaModel.build(map, self);
}
public SendAppDingRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public SendAppDingRequest setUserids(java.util.List userids) {
this.userids = userids;
return this;
}
public java.util.List getUserids() {
return this.userids;
}
}