com.aliyun.dingtalkyida_1_0.models.SaveFormRemarkRequest 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 SaveFormRemarkRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* APP_PBKT0MFBEBTDO8T7SLVP
*/
@NameInMap("appType")
public String appType;
/**
* example:
* 多个工号,用英文逗号分隔
*/
@NameInMap("atUserId")
public String atUserId;
/**
* This parameter is required.
*
* example:
* 未知
*/
@NameInMap("content")
public String content;
/**
* This parameter is required.
*
* example:
* 33f6d221-17f8-42b7-836a-682b95a046c2
*/
@NameInMap("formInstanceId")
public String formInstanceId;
/**
* example:
* zh_CN
*/
@NameInMap("language")
public String language;
/**
* example:
* 12
*/
@NameInMap("replyId")
public Long replyId;
/**
* This parameter is required.
*
* example:
* hexxxx
*/
@NameInMap("systemToken")
public String systemToken;
/**
* This parameter is required.
*
* example:
* 未知
*/
@NameInMap("userId")
public String userId;
public static SaveFormRemarkRequest build(java.util.Map map) throws Exception {
SaveFormRemarkRequest self = new SaveFormRemarkRequest();
return TeaModel.build(map, self);
}
public SaveFormRemarkRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public SaveFormRemarkRequest setAtUserId(String atUserId) {
this.atUserId = atUserId;
return this;
}
public String getAtUserId() {
return this.atUserId;
}
public SaveFormRemarkRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public SaveFormRemarkRequest setFormInstanceId(String formInstanceId) {
this.formInstanceId = formInstanceId;
return this;
}
public String getFormInstanceId() {
return this.formInstanceId;
}
public SaveFormRemarkRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public SaveFormRemarkRequest setReplyId(Long replyId) {
this.replyId = replyId;
return this;
}
public Long getReplyId() {
return this.replyId;
}
public SaveFormRemarkRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public SaveFormRemarkRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}