com.aliyun.dingtalkpedia_1_0.models.PediaWordsApproveRequest 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.dingtalkpedia_1_0.models;
import com.aliyun.tea.*;
public class PediaWordsApproveRequest extends TeaModel {
/**
* example:
* 拒绝
*/
@NameInMap("approveReason")
public String approveReason;
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("approveStatus")
public String approveStatus;
/**
* This parameter is required.
*/
@NameInMap("imHighLight")
public Boolean imHighLight;
/**
* This parameter is required.
*/
@NameInMap("simHighLight")
public Boolean simHighLight;
/**
* This parameter is required.
*
* example:
* 232432
*/
@NameInMap("userId")
public String userId;
/**
* This parameter is required.
*
* example:
* 1213132
*/
@NameInMap("uuid")
public Long uuid;
public static PediaWordsApproveRequest build(java.util.Map map) throws Exception {
PediaWordsApproveRequest self = new PediaWordsApproveRequest();
return TeaModel.build(map, self);
}
public PediaWordsApproveRequest setApproveReason(String approveReason) {
this.approveReason = approveReason;
return this;
}
public String getApproveReason() {
return this.approveReason;
}
public PediaWordsApproveRequest setApproveStatus(String approveStatus) {
this.approveStatus = approveStatus;
return this;
}
public String getApproveStatus() {
return this.approveStatus;
}
public PediaWordsApproveRequest setImHighLight(Boolean imHighLight) {
this.imHighLight = imHighLight;
return this;
}
public Boolean getImHighLight() {
return this.imHighLight;
}
public PediaWordsApproveRequest setSimHighLight(Boolean simHighLight) {
this.simHighLight = simHighLight;
return this;
}
public Boolean getSimHighLight() {
return this.simHighLight;
}
public PediaWordsApproveRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
public PediaWordsApproveRequest setUuid(Long uuid) {
this.uuid = uuid;
return this;
}
public Long getUuid() {
return this.uuid;
}
}