com.aliyun.dingtalkyida_1_0.models.GetPrintDictionaryRequest 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 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;
}
}