com.aliyun.ess20220222.models.ModifyAlarmResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ess20220222.models;
import com.aliyun.tea.*;
public class ModifyAlarmResponseBody extends TeaModel {
/**
* The ID of the event-triggered task.
*
* example:
* asg-bp1hvbnmkl10vll5****_83948190-acdd-483f-98f7-b77f4778****
*/
@NameInMap("AlarmTaskId")
public String alarmTaskId;
/**
* The ID of the request.
*
* example:
* BACACF83-7070-4953-A8FD-D81F89F1****
*/
@NameInMap("RequestId")
public String requestId;
public static ModifyAlarmResponseBody build(java.util.Map map) throws Exception {
ModifyAlarmResponseBody self = new ModifyAlarmResponseBody();
return TeaModel.build(map, self);
}
public ModifyAlarmResponseBody setAlarmTaskId(String alarmTaskId) {
this.alarmTaskId = alarmTaskId;
return this;
}
public String getAlarmTaskId() {
return this.alarmTaskId;
}
public ModifyAlarmResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}