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

com.aliyun.bpstudio20210931.models.GetExecuteOperationResultResponseBody 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 GetExecuteOperationResultResponseBody extends TeaModel {
    /**
     * 

The HTTP status code. A value of 200 indicates that the request is successful.

* * example: *

200

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

The detailed result of the queried operation.

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

The error message.

* * example: *

" "

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

The ID of the request.

* * example: *

xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx

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

The output of the operation.

* * example: *

" "

*/ @NameInMap("Arguments") public String arguments; /** *

The returned message.

* * example: *

“ ”

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

The ID of the operation.

* * example: *

op_xxxxxxxx

*/ @NameInMap("OperationId") public String operationId; /** *

The status of the operation.

* * example: *

success

*/ @NameInMap("Status") public String status; public static GetExecuteOperationResultResponseBodyData build(java.util.Map map) throws Exception { GetExecuteOperationResultResponseBodyData self = new GetExecuteOperationResultResponseBodyData(); return TeaModel.build(map, self); } public GetExecuteOperationResultResponseBodyData setArguments(String arguments) { this.arguments = arguments; return this; } public String getArguments() { return this.arguments; } public GetExecuteOperationResultResponseBodyData setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public GetExecuteOperationResultResponseBodyData setOperationId(String operationId) { this.operationId = operationId; return this; } public String getOperationId() { return this.operationId; } public GetExecuteOperationResultResponseBodyData setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy