com.aliyun.dingtalkdoc_1_0.models.InsertRowsBeforeRequest 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 InsertRowsBeforeRequest 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 InsertRowsBeforeRequest build(java.util.Map map) throws Exception {
InsertRowsBeforeRequest self = new InsertRowsBeforeRequest();
return TeaModel.build(map, self);
}
public InsertRowsBeforeRequest setRow(Long row) {
this.row = row;
return this;
}
public Long getRow() {
return this.row;
}
public InsertRowsBeforeRequest setRowCount(Long rowCount) {
this.rowCount = rowCount;
return this;
}
public Long getRowCount() {
return this.rowCount;
}
public InsertRowsBeforeRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
}