com.aliyun.dingtalkyida_1_0.models.GetFieldDefByUuidRequest 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 GetFieldDefByUuidRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_PBKT0MFBEBTDO8T7SLVP
*/
@NameInMap("appType")
public String appType;
/**
* This parameter is required.
*
* example:
* FORM-J7966ZA1XN940B88DYNMNABXUXNU3F3FMLJ8L5
*/
@NameInMap("formUuid")
public String formUuid;
/**
* This parameter is required.
*
* example:
* FO866D71GM94CE3KBMAFL4Q6WDG93MG6MLJ8L64
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* 5014533041684350
*/
@NameInMap("userId")
public String userId;
public static GetFieldDefByUuidRequest build(java.util.Map map) throws Exception {
GetFieldDefByUuidRequest self = new GetFieldDefByUuidRequest();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetFieldDefByUuidRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetFieldDefByUuidRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public GetFieldDefByUuidRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}