com.aliyun.arms20190808.models.AddRecordingRuleResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class AddRecordingRuleResponseBody extends TeaModel {
/**
* The status code. The status code 200 indicates that the request was successful.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The status of the response.
*
* example:
* success
*/
@NameInMap("Data")
public String data;
/**
* The returned message.
*
* example:
* success
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 9FEA6D00-317F-45E3-9004-7FB8B0B7****
*/
@NameInMap("RequestId")
public String requestId;
public static AddRecordingRuleResponseBody build(java.util.Map map) throws Exception {
AddRecordingRuleResponseBody self = new AddRecordingRuleResponseBody();
return TeaModel.build(map, self);
}
public AddRecordingRuleResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public AddRecordingRuleResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public AddRecordingRuleResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public AddRecordingRuleResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy