com.aliyun.dingtalkdoc_1_0.models.DeleteRowsRequest 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 DeleteRowsRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* row
*/
@NameInMap("row")
public Long row;
/**
* This parameter is required.
*
* example:
* row_count
*/
@NameInMap("rowCount")
public Long rowCount;
/**
* This parameter is required.
*
* example:
* union_id
*/
@NameInMap("operatorId")
public String operatorId;
public static DeleteRowsRequest build(java.util.Map map) throws Exception {
DeleteRowsRequest self = new DeleteRowsRequest();
return TeaModel.build(map, self);
}
public DeleteRowsRequest setRow(Long row) {
this.row = row;
return this;
}
public Long getRow() {
return this.row;
}
public DeleteRowsRequest setRowCount(Long rowCount) {
this.rowCount = rowCount;
return this;
}
public Long getRowCount() {
return this.rowCount;
}
public DeleteRowsRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}