com.aliyun.dingtalkdoc_1_0.models.SetColumnWidthRequest 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 SetColumnWidthRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("column")
public Integer column;
/**
* This parameter is required.
*/
@NameInMap("width")
public Integer width;
/**
* This parameter is required.
*
* example:
* ppgAQuHfOoNVpJiStDwWCEgiEiE
*/
@NameInMap("operatorId")
public String operatorId;
public static SetColumnWidthRequest build(java.util.Map map) throws Exception {
SetColumnWidthRequest self = new SetColumnWidthRequest();
return TeaModel.build(map, self);
}
public SetColumnWidthRequest setColumn(Integer column) {
this.column = column;
return this;
}
public Integer getColumn() {
return this.column;
}
public SetColumnWidthRequest setWidth(Integer width) {
this.width = width;
return this;
}
public Integer getWidth() {
return this.width;
}
public SetColumnWidthRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}