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

com.aliyun.dingtalkyida_1_0.models.SavePrintTplDetailInfoRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // 应用代码
    @NameInMap("appType")
    public String appType;

    // 模板描述
    @NameInMap("description")
    public String description;

    // 文件名配置
    @NameInMap("fileNameConfig")
    public String fileNameConfig;

    // 表单id
    @NameInMap("formUuid")
    public String formUuid;

    // 表单版本
    @NameInMap("formVersion")
    public Integer formVersion;

    // 模板的其他配置信息
    @NameInMap("setting")
    public String setting;

    // 打印模板id
    @NameInMap("templateId")
    public Long templateId;

    // 模板标题
    @NameInMap("title")
    public String title;

    // 用户id
    @NameInMap("userId")
    public String userId;

    // 模板的VM
    @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 - 2024 Weber Informatics LLC | Privacy Policy