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

com.aliyun.pai_dsw20220101.models.DeleteInstanceResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class DeleteInstanceResponseBody extends TeaModel {
    /**
     * example:
     * 

null

*/ @NameInMap("Code") public String code; /** * example: *

null

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; /** * example: *

dsw-730xxxxxxxxxx

*/ @NameInMap("InstanceId") public String instanceId; /** * example: *

"XXX"

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

E7D55162-4489-1619-AAF5-3F97D5FCA948

*/ @NameInMap("RequestId") public String requestId; /** * example: *

true

*/ @NameInMap("Success") public Boolean success; public static DeleteInstanceResponseBody build(java.util.Map map) throws Exception { DeleteInstanceResponseBody self = new DeleteInstanceResponseBody(); return TeaModel.build(map, self); } public DeleteInstanceResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public DeleteInstanceResponseBody setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public DeleteInstanceResponseBody setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DeleteInstanceResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public DeleteInstanceResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DeleteInstanceResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy