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

com.aliyun.dingtalkconnector_1_0.models.SyncDataResponseBody 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.dingtalkconnector_1_0.models;

import com.aliyun.tea.*;

public class SyncDataResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("list") public java.util.List list; public static SyncDataResponseBody build(java.util.Map map) throws Exception { SyncDataResponseBody self = new SyncDataResponseBody(); return TeaModel.build(map, self); } public SyncDataResponseBody setList(java.util.List list) { this.list = list; return this; } public java.util.List getList() { return this.list; } public static class SyncDataResponseBodyList extends TeaModel { /** *

This parameter is required.

*/ @NameInMap("bizPrimaryKey") public String bizPrimaryKey; /** *

This parameter is required.

*/ @NameInMap("subErrCode") public String subErrCode; /** *

This parameter is required.

*/ @NameInMap("subErrMsg") public String subErrMsg; /** *

This parameter is required.

*/ @NameInMap("success") public Boolean success; /** *

This parameter is required.

*/ @NameInMap("triggerId") public String triggerId; public static SyncDataResponseBodyList build(java.util.Map map) throws Exception { SyncDataResponseBodyList self = new SyncDataResponseBodyList(); return TeaModel.build(map, self); } public SyncDataResponseBodyList setBizPrimaryKey(String bizPrimaryKey) { this.bizPrimaryKey = bizPrimaryKey; return this; } public String getBizPrimaryKey() { return this.bizPrimaryKey; } public SyncDataResponseBodyList setSubErrCode(String subErrCode) { this.subErrCode = subErrCode; return this; } public String getSubErrCode() { return this.subErrCode; } public SyncDataResponseBodyList setSubErrMsg(String subErrMsg) { this.subErrMsg = subErrMsg; return this; } public String getSubErrMsg() { return this.subErrMsg; } public SyncDataResponseBodyList setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public SyncDataResponseBodyList setTriggerId(String triggerId) { this.triggerId = triggerId; return this; } public String getTriggerId() { return this.triggerId; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy