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