com.aliyun.dingtalklive_1_0.models.AddShareCidListRequest 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.dingtalklive_1_0.models;
import com.aliyun.tea.*;
public class AddShareCidListRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 2
*/
@NameInMap("groupIdType")
public Long groupIdType;
/**
* This parameter is required.
*/
@NameInMap("groupIds")
public java.util.List groupIds;
/**
* This parameter is required.
*
* example:
* 214675
*/
@NameInMap("userId")
public String userId;
public static AddShareCidListRequest build(java.util.Map map) throws Exception {
AddShareCidListRequest self = new AddShareCidListRequest();
return TeaModel.build(map, self);
}
public AddShareCidListRequest setGroupIdType(Long groupIdType) {
this.groupIdType = groupIdType;
return this;
}
public Long getGroupIdType() {
return this.groupIdType;
}
public AddShareCidListRequest setGroupIds(java.util.List groupIds) {
this.groupIds = groupIds;
return this;
}
public java.util.List getGroupIds() {
return this.groupIds;
}
public AddShareCidListRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}