com.aliyun.dingtalkdoc_1_0.models.CreateSheetResponseBody 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.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class CreateSheetResponseBody extends TeaModel {
/**
* example:
* sheet_id
*/
@NameInMap("id")
public String id;
/**
* example:
* sheet_name
*/
@NameInMap("name")
public String name;
/**
* example:
* visible
*/
@NameInMap("visibility")
public String visibility;
public static CreateSheetResponseBody build(java.util.Map map) throws Exception {
CreateSheetResponseBody self = new CreateSheetResponseBody();
return TeaModel.build(map, self);
}
public CreateSheetResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public CreateSheetResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateSheetResponseBody setVisibility(String visibility) {
this.visibility = visibility;
return this;
}
public String getVisibility() {
return this.visibility;
}
}