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

com.aliyun.dingtalkflashmsg_1_0.models.DeletePlguinRuleRequest 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.dingtalkflashmsg_1_0.models;

import com.aliyun.tea.*;

public class DeletePlguinRuleRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("bizIdList") public java.util.List bizIdList; /** *

This parameter is required.

* * example: *

0847493113802787

*/ @NameInMap("userId") public String userId; public static DeletePlguinRuleRequest build(java.util.Map map) throws Exception { DeletePlguinRuleRequest self = new DeletePlguinRuleRequest(); return TeaModel.build(map, self); } public DeletePlguinRuleRequest setBizIdList(java.util.List bizIdList) { this.bizIdList = bizIdList; return this; } public java.util.List getBizIdList() { return this.bizIdList; } public DeletePlguinRuleRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy