com.aliyun.eas20210701.models.UpdateServiceSafetyLockResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eas20210701 Show documentation
Show all versions of eas20210701 Show documentation
Alibaba Cloud eas (20210701) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;
import com.aliyun.tea.*;
public class UpdateServiceSafetyLockResponseBody extends TeaModel {
/**
* The returned message.
*
* example:
* service safety lock updated to dangerous
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* E089D584-B6F4-50C4-9902-DA2295B7****
*/
@NameInMap("RequestId")
public String requestId;
public static UpdateServiceSafetyLockResponseBody build(java.util.Map map) throws Exception {
UpdateServiceSafetyLockResponseBody self = new UpdateServiceSafetyLockResponseBody();
return TeaModel.build(map, self);
}
public UpdateServiceSafetyLockResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public UpdateServiceSafetyLockResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}