com.aliyun.sdk.service.bpstudio20210931.models.GetExecuteOperationResultResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-bpstudio20210931 Show documentation
Show all versions of alibabacloud-bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.bpstudio20210931.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link GetExecuteOperationResultResponseBody} extends {@link TeaModel}
*
* GetExecuteOperationResultResponseBody
*/
public class GetExecuteOperationResultResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Code")
private Integer code;
@com.aliyun.core.annotation.NameInMap("Data")
private Data data;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private GetExecuteOperationResultResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static GetExecuteOperationResultResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public Integer getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Integer code;
private Data data;
private String message;
private String requestId;
/**
* The HTTP status code. A value of 200 indicates that the request is successful.
*/
public Builder code(Integer code) {
this.code = code;
return this;
}
/**
* The detailed result of the queried operation.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* The error message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* The ID of the request.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public GetExecuteOperationResultResponseBody build() {
return new GetExecuteOperationResultResponseBody(this);
}
}
public static class Data extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Arguments")
private String arguments;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("OperationId")
private String operationId;
@com.aliyun.core.annotation.NameInMap("Status")
private String status;
private Data(Builder builder) {
this.arguments = builder.arguments;
this.message = builder.message;
this.operationId = builder.operationId;
this.status = builder.status;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return arguments
*/
public String getArguments() {
return this.arguments;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return operationId
*/
public String getOperationId() {
return this.operationId;
}
/**
* @return status
*/
public String getStatus() {
return this.status;
}
public static final class Builder {
private String arguments;
private String message;
private String operationId;
private String status;
/**
* The output of the operation.
*/
public Builder arguments(String arguments) {
this.arguments = arguments;
return this;
}
/**
* The returned message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* The ID of the operation.
*/
public Builder operationId(String operationId) {
this.operationId = operationId;
return this;
}
/**
* The status of the operation.
*/
public Builder status(String status) {
this.status = status;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}