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

com.aliyun.dingtalkyida_2_0.models.GetFormDataByIDRequest 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_2_0.models;

import com.aliyun.tea.*;

public class GetFormDataByIDRequest extends TeaModel {
    /**
     * example:
     * 

APP_PBKT0MFBEBTDO8T7SLVP

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

FORM-AA28579F69644FC19A47FE267457E664ZVR1

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

zh_CN

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

hexxx

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

false

*/ @NameInMap("useAlias") public Boolean useAlias; @NameInMap("userId") public String userId; public static GetFormDataByIDRequest build(java.util.Map map) throws Exception { GetFormDataByIDRequest self = new GetFormDataByIDRequest(); return TeaModel.build(map, self); } public GetFormDataByIDRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetFormDataByIDRequest setFormUuid(String formUuid) { this.formUuid = formUuid; return this; } public String getFormUuid() { return this.formUuid; } public GetFormDataByIDRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public GetFormDataByIDRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } public GetFormDataByIDRequest setUseAlias(Boolean useAlias) { this.useAlias = useAlias; return this; } public Boolean getUseAlias() { return this.useAlias; } public GetFormDataByIDRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy