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

com.aliyun.bpstudio20210931.models.CreateApplicationResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CreateApplicationResponseBody extends TeaModel {
    /**
     * 

The HTTP status code.

* * example: *

200

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

The ID of the application.

* * example: *

002XWH7MXB8MJRU0

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

The error message.

* * example: *

Success

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

The ID of the request.

* * example: *

A07FFDF2-78FA-1B48-9E38-88E833A93187

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy