com.aliyun.dingtalkdoc_1_0.models.UpdateSheetRequest 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 UpdateSheetRequest extends TeaModel {
// 工作表名称
@NameInMap("name")
public String name;
// 工作表可见性
@NameInMap("visibility")
public String visibility;
// 操作人unionId
@NameInMap("operatorId")
public String operatorId;
public static UpdateSheetRequest build(java.util.Map map) throws Exception {
UpdateSheetRequest self = new UpdateSheetRequest();
return TeaModel.build(map, self);
}
public UpdateSheetRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public UpdateSheetRequest setVisibility(String visibility) {
this.visibility = visibility;
return this;
}
public String getVisibility() {
return this.visibility;
}
public UpdateSheetRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}