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

com.aliyun.ens20171110.models.AttachDiskResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;

import com.aliyun.tea.*;

public class AttachDiskResponseBody extends TeaModel {
    /**
     * 

The returned service code. 0 indicates that the request was successful.

* * example: *

0

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

The request ID.

* * example: *

916777D9-42D3-5928-92CE-373B1874B674

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy