
com.aliyun.dingtalkats_1_0.models.AddApplicationRegFormTemplateResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkats_1_0.models;
import com.aliyun.tea.*;
public class AddApplicationRegFormTemplateResponseBody extends TeaModel {
/**
* This parameter is required.
*
* example:
* xxxxxx
*/
@NameInMap("templateId")
public String templateId;
/**
* This parameter is required.
*
* example:
* 0
*/
@NameInMap("version")
public Integer version;
public static AddApplicationRegFormTemplateResponseBody build(java.util.Map map) throws Exception {
AddApplicationRegFormTemplateResponseBody self = new AddApplicationRegFormTemplateResponseBody();
return TeaModel.build(map, self);
}
public AddApplicationRegFormTemplateResponseBody setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public AddApplicationRegFormTemplateResponseBody setVersion(Integer version) {
this.version = version;
return this;
}
public Integer getVersion() {
return this.version;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy