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

com.aliyun.bpstudio20210931.models.GetFoTaskStatusResponseBody 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 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy