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

com.aliyun.sdk.service.qualitycheck20190115.models.UpdateSyncQualityCheckDataResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.qualitycheck20190115.models;

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

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

UpdateSyncQualityCheckDataResponseBody

*/ public class UpdateSyncQualityCheckDataResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("Message") private String message; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private UpdateSyncQualityCheckDataResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.message = builder.message; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static UpdateSyncQualityCheckDataResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return message */ public String getMessage() { return this.message; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public Boolean getSuccess() { return this.success; } public static final class Builder { private String code; private Data data; private String message; private String requestId; private Boolean success; /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Data. */ public Builder data(Data data) { this.data = data; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Success. */ public Builder success(Boolean success) { this.success = success; return this; } public UpdateSyncQualityCheckDataResponseBody build() { return new UpdateSyncQualityCheckDataResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("TaskId") private String taskId; @NameInMap("Tid") private String tid; private Data(Builder builder) { this.taskId = builder.taskId; this.tid = builder.tid; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return taskId */ public String getTaskId() { return this.taskId; } /** * @return tid */ public String getTid() { return this.tid; } public static final class Builder { private String taskId; private String tid; /** * TaskId. */ public Builder taskId(String taskId) { this.taskId = taskId; return this; } /** * Tid. */ public Builder tid(String tid) { this.tid = tid; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy