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.67
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 {
    /**
     * 

This parameter is required.

* * example: *

APP_XABJJSJ

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

This parameter is required.

* * example: *

FORM-XABJJSJ

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

This parameter is required.

* * example: *

abfefw

*/ @NameInMap("userId") public String userId; /** * example: *

0

*/ @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