com.aliyun.dingtalkworkbench_1_0.models.UndoDeletionRequest 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.dingtalkworkbench_1_0.models;
import com.aliyun.tea.*;
public class UndoDeletionRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("bizIdList")
public java.util.List bizIdList;
/**
* This parameter is required.
*/
@NameInMap("redDotRelationId")
public String redDotRelationId;
/**
* This parameter is required.
*
* example:
* workbench_component
*/
@NameInMap("redDotType")
public String redDotType;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static UndoDeletionRequest build(java.util.Map map) throws Exception {
UndoDeletionRequest self = new UndoDeletionRequest();
return TeaModel.build(map, self);
}
public UndoDeletionRequest setBizIdList(java.util.List bizIdList) {
this.bizIdList = bizIdList;
return this;
}
public java.util.List getBizIdList() {
return this.bizIdList;
}
public UndoDeletionRequest setRedDotRelationId(String redDotRelationId) {
this.redDotRelationId = redDotRelationId;
return this;
}
public String getRedDotRelationId() {
return this.redDotRelationId;
}
public UndoDeletionRequest setRedDotType(String redDotType) {
this.redDotType = redDotType;
return this;
}
public String getRedDotType() {
return this.redDotType;
}
public UndoDeletionRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}