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

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

The response code.

* * example: *

200

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

The disaster recovery switchback task ID.

* * example: *

3309

*/ @NameInMap("Data") public Integer 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: *

7036DDBE-0ABA-52D7-A39D-75E511970F07

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy