com.antgroup.antchain.openapi.rms.models.CreateAlarmDingdingrobotRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-rms Show documentation
Show all versions of openapi-rms Show documentation
Ant Chain RMS SDK for Java
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;
}
}