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

com.antgroup.antchain.openapi.rms.models.CreateAlarmDingdingrobotRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;

import com.aliyun.tea.*;

public class CreateAlarmDingdingrobotRequest extends TeaModel {
    // OAuth模式下的授权token
    @NameInMap("auth_token")
    public String authToken;

    // 工作区名
    @NameInMap("workspace_name")
    @Validation(required = true)
    public String workspaceName;

    // 钉钉机器人列表
    @NameInMap("robots")
    @Validation(required = true)
    public java.util.List robots;

    public static CreateAlarmDingdingrobotRequest build(java.util.Map map) throws Exception {
        CreateAlarmDingdingrobotRequest self = new CreateAlarmDingdingrobotRequest();
        return TeaModel.build(map, self);
    }

    public CreateAlarmDingdingrobotRequest setAuthToken(String authToken) {
        this.authToken = authToken;
        return this;
    }
    public String getAuthToken() {
        return this.authToken;
    }

    public CreateAlarmDingdingrobotRequest setWorkspaceName(String workspaceName) {
        this.workspaceName = workspaceName;
        return this;
    }
    public String getWorkspaceName() {
        return this.workspaceName;
    }

    public CreateAlarmDingdingrobotRequest setRobots(java.util.List robots) {
        this.robots = robots;
        return this;
    }
    public java.util.List getRobots() {
        return this.robots;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy