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

com.aliyun.edas20170801.models.UnbindSlbResponseBody Maven / Gradle / Ivy

Go to download

Alibaba Cloud Enterprise Distributed Application Service (20170801) SDK for Java

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

import com.aliyun.tea.*;

public class UnbindSlbResponseBody extends TeaModel {
    /**
     * 

The HTTP status code that is returned.

*/ @NameInMap("Code") public Integer code; /** *

This parameter is left empty. It has no meaning.

*/ @NameInMap("Data") public String data; /** *

The message that is returned.

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

The ID of the request.

*/ @NameInMap("RequestId") public String requestId; public static UnbindSlbResponseBody build(java.util.Map map) throws Exception { UnbindSlbResponseBody self = new UnbindSlbResponseBody(); return TeaModel.build(map, self); } public UnbindSlbResponseBody setCode(Integer code) { this.code = code; return this; } public Integer getCode() { return this.code; } public UnbindSlbResponseBody setData(String data) { this.data = data; return this; } public String getData() { return this.data; } public UnbindSlbResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public UnbindSlbResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy