com.aliyun.dingtalkworkbench_1_0.models.ModifyWorkbenchBadgeRequest 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 ModifyWorkbenchBadgeRequest extends TeaModel {
/**
* if can be null:
* false
*/
@NameInMap("bizIdList")
public java.util.List bizIdList;
@NameInMap("isAdded")
public Boolean isAdded;
/**
* This parameter is required.
*
* example:
* full
*/
@NameInMap("modifyMode")
public String modifyMode;
/**
* This parameter is required.
*
* example:
* 5000000004278081/test
*/
@NameInMap("redDotRelationId")
public String redDotRelationId;
/**
* This parameter is required.
*
* example:
* workbench_component
*/
@NameInMap("redDotType")
public String redDotType;
/**
* This parameter is required.
*
* example:
* 0123465
*/
@NameInMap("userId")
public String userId;
public static ModifyWorkbenchBadgeRequest build(java.util.Map map) throws Exception {
ModifyWorkbenchBadgeRequest self = new ModifyWorkbenchBadgeRequest();
return TeaModel.build(map, self);
}
public ModifyWorkbenchBadgeRequest setBizIdList(java.util.List bizIdList) {
this.bizIdList = bizIdList;
return this;
}
public java.util.List getBizIdList() {
return this.bizIdList;
}
public ModifyWorkbenchBadgeRequest setIsAdded(Boolean isAdded) {
this.isAdded = isAdded;
return this;
}
public Boolean getIsAdded() {
return this.isAdded;
}
public ModifyWorkbenchBadgeRequest setModifyMode(String modifyMode) {
this.modifyMode = modifyMode;
return this;
}
public String getModifyMode() {
return this.modifyMode;
}
public ModifyWorkbenchBadgeRequest setRedDotRelationId(String redDotRelationId) {
this.redDotRelationId = redDotRelationId;
return this;
}
public String getRedDotRelationId() {
return this.redDotRelationId;
}
public ModifyWorkbenchBadgeRequest setRedDotType(String redDotType) {
this.redDotType = redDotType;
return this;
}
public String getRedDotType() {
return this.redDotType;
}
public ModifyWorkbenchBadgeRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}