All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkworkbench_1_0.models.UndoDeletionRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy