com.aliyun.dingtalkexclusive_1_0.models.DataSyncResponseBody 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class DataSyncResponseBody extends TeaModel {
@NameInMap("dataList")
public java.util.List> dataList;
/**
* example:
* 1
*/
@NameInMap("rowsAffected")
public Integer rowsAffected;
public static DataSyncResponseBody build(java.util.Map map) throws Exception {
DataSyncResponseBody self = new DataSyncResponseBody();
return TeaModel.build(map, self);
}
public DataSyncResponseBody setDataList(java.util.List> dataList) {
this.dataList = dataList;
return this;
}
public java.util.List> getDataList() {
return this.dataList;
}
public DataSyncResponseBody setRowsAffected(Integer rowsAffected) {
this.rowsAffected = rowsAffected;
return this;
}
public Integer getRowsAffected() {
return this.rowsAffected;
}
}