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

com.aliyun.sdk.service.bpstudio20210931.models.ListFoCreatedAppsResponseBody 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 ListFoCreatedAppsResponseBody} extends {@link TeaModel}
 *
 * 

ListFoCreatedAppsResponseBody

*/ public class ListFoCreatedAppsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("Data") private java.util.List < Data> data; @com.aliyun.core.annotation.NameInMap("Message") private String message; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private ListFoCreatedAppsResponseBody(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 ListFoCreatedAppsResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public java.util.List < Data> 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 java.util.List < Data> data; private String message; private String requestId; /** * The response code. */ public Builder code(String code) { this.code = code; return this; } /** * The information about disaster recovery plans. */ public Builder data(java.util.List < Data> 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 ListFoCreatedAppsResponseBody build() { return new ListFoCreatedAppsResponseBody(this); } } public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("ApplicationId") private String applicationId; @com.aliyun.core.annotation.NameInMap("ReportUrl") private String reportUrl; @com.aliyun.core.annotation.NameInMap("Status") private String status; @com.aliyun.core.annotation.NameInMap("Title") private String title; private Data(Builder builder) { this.applicationId = builder.applicationId; this.reportUrl = builder.reportUrl; this.status = builder.status; this.title = builder.title; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return applicationId */ public String getApplicationId() { return this.applicationId; } /** * @return reportUrl */ public String getReportUrl() { return this.reportUrl; } /** * @return status */ public String getStatus() { return this.status; } /** * @return title */ public String getTitle() { return this.title; } public static final class Builder { private String applicationId; private String reportUrl; private String status; private String title; /** * 应用ID */ public Builder applicationId(String applicationId) { this.applicationId = applicationId; return this; } /** * The URL of an error report. */ public Builder reportUrl(String reportUrl) { this.reportUrl = reportUrl; return this; } /** * The status of the disaster recovery plan. */ public Builder status(String status) { this.status = status; return this; } /** * The title. */ public Builder title(String title) { this.title = title; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy