![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkyida_1_0.models.SavePrintTplDetailInfoRequest 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.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class SavePrintTplDetailInfoRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("appType")
public String appType;
@NameInMap("description")
public String description;
@NameInMap("fileNameConfig")
public String fileNameConfig;
/**
* This parameter is required.
*
* example:
* abc
*/
@NameInMap("formUuid")
public String formUuid;
/**
* example:
* 123456
*/
@NameInMap("formVersion")
public Integer formVersion;
/**
* example:
* 123456
*/
@NameInMap("setting")
public String setting;
/**
* example:
* 123456
*/
@NameInMap("templateId")
public Long templateId;
@NameInMap("title")
public String title;
/**
* This parameter is required.
*
* example:
* 123456
*/
@NameInMap("userId")
public String userId;
/**
* example:
* 123456
*/
@NameInMap("vm")
public String vm;
public static SavePrintTplDetailInfoRequest build(java.util.Map map) throws Exception {
SavePrintTplDetailInfoRequest self = new SavePrintTplDetailInfoRequest();
return TeaModel.build(map, self);
}
public SavePrintTplDetailInfoRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public SavePrintTplDetailInfoRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public SavePrintTplDetailInfoRequest setFileNameConfig(String fileNameConfig) {
this.fileNameConfig = fileNameConfig;
return this;
}
public String getFileNameConfig() {
return this.fileNameConfig;
}
public SavePrintTplDetailInfoRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public SavePrintTplDetailInfoRequest setFormVersion(Integer formVersion) {
this.formVersion = formVersion;
return this;
}
public Integer getFormVersion() {
return this.formVersion;
}
public SavePrintTplDetailInfoRequest setSetting(String setting) {
this.setting = setting;
return this;
}
public String getSetting() {
return this.setting;
}
public SavePrintTplDetailInfoRequest setTemplateId(Long templateId) {
this.templateId = templateId;
return this;
}
public Long getTemplateId() {
return this.templateId;
}
public SavePrintTplDetailInfoRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public SavePrintTplDetailInfoRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public SavePrintTplDetailInfoRequest setVm(String vm) {
this.vm = vm;
return this;
}
public String getVm() {
return this.vm;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy