com.aliyun.dingtalkconference_1_0.models.CohostsRequest 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.dingtalkconference_1_0.models;
import com.aliyun.tea.*;
public class CohostsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* add
*/
@NameInMap("action")
public String action;
/**
* This parameter is required.
*/
@NameInMap("userList")
public java.util.List userList;
public static CohostsRequest build(java.util.Map map) throws Exception {
CohostsRequest self = new CohostsRequest();
return TeaModel.build(map, self);
}
public CohostsRequest setAction(String action) {
this.action = action;
return this;
}
public String getAction() {
return this.action;
}
public CohostsRequest setUserList(java.util.List userList) {
this.userList = userList;
return this;
}
public java.util.List getUserList() {
return this.userList;
}
public static class CohostsRequestUserList extends TeaModel {
/**
* This parameter is required.
*
* example:
* qzR1iSMDvzR9iP7Pxxxxxxxxxxxxxxx
*/
@NameInMap("unionId")
public String unionId;
public static CohostsRequestUserList build(java.util.Map map) throws Exception {
CohostsRequestUserList self = new CohostsRequestUserList();
return TeaModel.build(map, self);
}
public CohostsRequestUserList setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
}