All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkexclusive_1_0.models.DataSyncResponseBody Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy