com.aliyun.dingtalkresident_1_0.models.CreateResidentBlackBoardResponseBody 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.dingtalkresident_1_0.models;
import com.aliyun.tea.*;
public class CreateResidentBlackBoardResponseBody extends TeaModel {
@NameInMap("blackBoardId")
public String blackBoardId;
public static CreateResidentBlackBoardResponseBody build(java.util.Map map) throws Exception {
CreateResidentBlackBoardResponseBody self = new CreateResidentBlackBoardResponseBody();
return TeaModel.build(map, self);
}
public CreateResidentBlackBoardResponseBody setBlackBoardId(String blackBoardId) {
this.blackBoardId = blackBoardId;
return this;
}
public String getBlackBoardId() {
return this.blackBoardId;
}
}