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

com.aliyun.sdk.service.emr20210320.models.GetDoctorReportComponentSummaryResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.emr20210320.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link GetDoctorReportComponentSummaryResponseBody} extends {@link TeaModel}
 *
 * 

GetDoctorReportComponentSummaryResponseBody

*/ public class GetDoctorReportComponentSummaryResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Data") private Data data; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private GetDoctorReportComponentSummaryResponseBody(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static GetDoctorReportComponentSummaryResponseBody create() { return builder().build(); } /** * @return data */ public Data getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Data data; private String requestId; /** * The content of the report. */ public Builder data(Data data) { this.data = data; return this; } /** * 请求ID。 */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public GetDoctorReportComponentSummaryResponseBody build() { return new GetDoctorReportComponentSummaryResponseBody(this); } } public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("Score") private Integer score; @com.aliyun.core.annotation.NameInMap("Suggestion") private String suggestion; @com.aliyun.core.annotation.NameInMap("Summary") private String summary; private Data(Builder builder) { this.score = builder.score; this.suggestion = builder.suggestion; this.summary = builder.summary; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return score */ public Integer getScore() { return this.score; } /** * @return suggestion */ public String getSuggestion() { return this.suggestion; } /** * @return summary */ public String getSummary() { return this.summary; } public static final class Builder { private Integer score; private String suggestion; private String summary; /** * Score. */ public Builder score(Integer score) { this.score = score; return this; } /** * Suggestion. */ public Builder suggestion(String suggestion) { this.suggestion = suggestion; return this; } /** * The summary of the report. */ public Builder summary(String summary) { this.summary = summary; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy