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