com.aliyun.dingtalkcontent_1_0.models.ListItemUserDataRequest 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.dingtalkcontent_1_0.models;
import com.aliyun.tea.*;
public class ListItemUserDataRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("body")
public java.util.List body;
public static ListItemUserDataRequest build(java.util.Map map) throws Exception {
ListItemUserDataRequest self = new ListItemUserDataRequest();
return TeaModel.build(map, self);
}
public ListItemUserDataRequest setBody(java.util.List body) {
this.body = body;
return this;
}
public java.util.List getBody() {
return this.body;
}
}