com.aliyun.bpstudio20210931.models.GetFoTaskStatusResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bpstudio20210931 Show documentation
Show all versions of bpstudio20210931 Show documentation
Alibaba Cloud BPStudio (20210931) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.bpstudio20210931.models;
import com.aliyun.tea.*;
public class GetFoTaskStatusResponseBody extends TeaModel {
/**
* The response code.
*
* example:
* 200
*/
@NameInMap("Code")
public String code;
/**
* The status of the switchover task.
*
* example:
* Running
*/
@NameInMap("Data")
public String data;
/**
* The returned message. If the request was successful, a success message is returned. If the request failed, an error message is returned.
*
* example:
* OKITHEVRQCN6ULQG
*/
@NameInMap("Message")
public String message;
/**
* The request ID.
*
* example:
* 923692F0-A15B-58B4-BAF4-2AFA4AF46240
*/
@NameInMap("RequestId")
public String requestId;
public static GetFoTaskStatusResponseBody build(java.util.Map map) throws Exception {
GetFoTaskStatusResponseBody self = new GetFoTaskStatusResponseBody();
return TeaModel.build(map, self);
}
public GetFoTaskStatusResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public GetFoTaskStatusResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public GetFoTaskStatusResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetFoTaskStatusResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}