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