All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.eas20210701.models.ReleaseServiceResponseBody Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eas20210701.models;

import com.aliyun.tea.*;

public class ReleaseServiceResponseBody extends TeaModel {
    /**
     * 

The returned message.

* * example: *

Releasing service [foo] in region [cn-shanghai] with weight [40], service status: [Running]

*/ @NameInMap("Message") public String message; /** *

The request ID.

* * example: *

40325405-579C-4D82****

*/ @NameInMap("RequestId") public String requestId; public static ReleaseServiceResponseBody build(java.util.Map map) throws Exception { ReleaseServiceResponseBody self = new ReleaseServiceResponseBody(); return TeaModel.build(map, self); } public ReleaseServiceResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public ReleaseServiceResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy