com.aliyun.dingtalkexclusive_1_0.models.SendPhoneDingRequest 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 SendPhoneDingRequest 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 SendPhoneDingRequest build(java.util.Map map) throws Exception {
SendPhoneDingRequest self = new SendPhoneDingRequest();
return TeaModel.build(map, self);
}
public SendPhoneDingRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public SendPhoneDingRequest setUserids(java.util.List userids) {
this.userids = userids;
return this;
}
public java.util.List getUserids() {
return this.userids;
}
}