com.aliyun.dingtalkdoc_1_0.models.SetColumnWidthResponseBody 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 SetColumnWidthResponseBody extends TeaModel {
@NameInMap("sheetId")
public String sheetId;
@NameInMap("sheetName")
public String sheetName;
public static SetColumnWidthResponseBody build(java.util.Map map) throws Exception {
SetColumnWidthResponseBody self = new SetColumnWidthResponseBody();
return TeaModel.build(map, self);
}
public SetColumnWidthResponseBody setSheetId(String sheetId) {
this.sheetId = sheetId;
return this;
}
public String getSheetId() {
return this.sheetId;
}
public SetColumnWidthResponseBody setSheetName(String sheetName) {
this.sheetName = sheetName;
return this;
}
public String getSheetName() {
return this.sheetName;
}
}