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

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

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

import com.aliyun.tea.*;

public class CreateEnsServiceResponseBody extends TeaModel {
    /**
     * 

The service code. 0 is returned for a successful request. An error code is returned for a failed request.

* * example: *

0

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

The request ID.

* * example: *

9AF02B43-2D08-49D3-8AAF-65B9C792ED14

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy