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

com.aliyun.sdk.service.bpstudio20210931.models.AppFailBackResponseBody Maven / Gradle / Ivy

There is a newer version: 5.0.6
Show newest version
// 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 AppFailBackResponseBody} extends {@link TeaModel}
 *
 * 

AppFailBackResponseBody

*/ public class AppFailBackResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("Data") private Integer data; @com.aliyun.core.annotation.NameInMap("Message") private String message; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private AppFailBackResponseBody(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 AppFailBackResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Integer 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 String code; private Integer data; private String message; private String requestId; /** * The response code. */ public Builder code(String code) { this.code = code; return this; } /** * The disaster recovery switchback task ID. */ public Builder data(Integer data) { this.data = data; return this; } /** * The returned message. If the request was successful, a success message is returned. If the request failed, an error message is returned. */ public Builder message(String message) { this.message = message; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public AppFailBackResponseBody build() { return new AppFailBackResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy