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

com.aliyun.dingtalkyida_1_0.models.GetPrintDictionaryRequest 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 GetPrintDictionaryRequest extends TeaModel {
    // 应用代码
    @NameInMap("appType")
    public String appType;

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

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

    // 版本
    @NameInMap("version")
    public Long version;

    public static GetPrintDictionaryRequest build(java.util.Map map) throws Exception {
        GetPrintDictionaryRequest self = new GetPrintDictionaryRequest();
        return TeaModel.build(map, self);
    }

    public GetPrintDictionaryRequest setAppType(String appType) {
        this.appType = appType;
        return this;
    }
    public String getAppType() {
        return this.appType;
    }

    public GetPrintDictionaryRequest setFormUuid(String formUuid) {
        this.formUuid = formUuid;
        return this;
    }
    public String getFormUuid() {
        return this.formUuid;
    }

    public GetPrintDictionaryRequest setUserId(String userId) {
        this.userId = userId;
        return this;
    }
    public String getUserId() {
        return this.userId;
    }

    public GetPrintDictionaryRequest setVersion(Long version) {
        this.version = version;
        return this;
    }
    public Long getVersion() {
        return this.version;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy