![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalklive_1_0.models.AddShareCidListResponseBody 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 AddShareCidListResponseBody extends TeaModel {
/**
* example:
* true
*/
@NameInMap("hasShareSuccess")
public Boolean hasShareSuccess;
@NameInMap("shareSuccessGroupList")
public java.util.List shareSuccessGroupList;
public static AddShareCidListResponseBody build(java.util.Map map) throws Exception {
AddShareCidListResponseBody self = new AddShareCidListResponseBody();
return TeaModel.build(map, self);
}
public AddShareCidListResponseBody setHasShareSuccess(Boolean hasShareSuccess) {
this.hasShareSuccess = hasShareSuccess;
return this;
}
public Boolean getHasShareSuccess() {
return this.hasShareSuccess;
}
public AddShareCidListResponseBody setShareSuccessGroupList(java.util.List shareSuccessGroupList) {
this.shareSuccessGroupList = shareSuccessGroupList;
return this;
}
public java.util.List getShareSuccessGroupList() {
return this.shareSuccessGroupList;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy