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

com.aliyun.dingtalkapaas_1_0.models.BatchUpdateTemplateResponseBody 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.dingtalkapaas_1_0.models;

import com.aliyun.tea.*;

public class BatchUpdateTemplateResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("updateResultList") public java.util.List updateResultList; public static BatchUpdateTemplateResponseBody build(java.util.Map map) throws Exception { BatchUpdateTemplateResponseBody self = new BatchUpdateTemplateResponseBody(); return TeaModel.build(map, self); } public BatchUpdateTemplateResponseBody setUpdateResultList(java.util.List updateResultList) { this.updateResultList = updateResultList; return this; } public java.util.List getUpdateResultList() { return this.updateResultList; } public static class BatchUpdateTemplateResponseBodyUpdateResultList extends TeaModel { /** *

This parameter is required.

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

This parameter is required.

*/ @NameInMap("value") public String value; public static BatchUpdateTemplateResponseBodyUpdateResultList build(java.util.Map map) throws Exception { BatchUpdateTemplateResponseBodyUpdateResultList self = new BatchUpdateTemplateResponseBodyUpdateResultList(); return TeaModel.build(map, self); } public BatchUpdateTemplateResponseBodyUpdateResultList setTemplateKey(String templateKey) { this.templateKey = templateKey; return this; } public String getTemplateKey() { return this.templateKey; } public BatchUpdateTemplateResponseBodyUpdateResultList setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy