com.aliyun.arms20190808.models.UpdateEnvironmentResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class UpdateEnvironmentResponseBody extends TeaModel {
/**
* The HTTP status code. The status code 200 indicates that the request was successful.
*
* example:
* 200
*/
@NameInMap("Code")
public Integer code;
/**
* The result of the operation.
*
* example:
* success
*/
@NameInMap("Data")
public String data;
/**
* The returned message.
*
* example:
* message
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 70675725-8F11-4817-8106-CFE0AD71****
*/
@NameInMap("RequestId")
public String requestId;
public static UpdateEnvironmentResponseBody build(java.util.Map map) throws Exception {
UpdateEnvironmentResponseBody self = new UpdateEnvironmentResponseBody();
return TeaModel.build(map, self);
}
public UpdateEnvironmentResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public UpdateEnvironmentResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public UpdateEnvironmentResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UpdateEnvironmentResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy