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

com.aliyun.sdk.service.iot20180120.models.QueryTaskResponseBody Maven / Gradle / Ivy

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

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

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

QueryTaskResponseBody

*/ public class QueryTaskResponseBody extends TeaModel { @NameInMap("Code") private String code; @NameInMap("Data") private Data data; @NameInMap("ErrorMessage") private String errorMessage; @NameInMap("RequestId") private String requestId; @NameInMap("Success") private Boolean success; private QueryTaskResponseBody(Builder builder) { this.code = builder.code; this.data = builder.data; this.errorMessage = builder.errorMessage; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static QueryTaskResponseBody create() { return builder().build(); } /** * @return code */ public String getCode() { return this.code; } /** * @return data */ public Data getData() { return this.data; } /** * @return errorMessage */ public String getErrorMessage() { return this.errorMessage; } /** * @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 errorMessage; 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; } /** * ErrorMessage. */ public Builder errorMessage(String errorMessage) { this.errorMessage = errorMessage; 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 QueryTaskResponseBody build() { return new QueryTaskResponseBody(this); } } public static class Data extends TeaModel { @NameInMap("DeviceName") private String deviceName; @NameInMap("IotId") private String iotId; @NameInMap("JobId") private String jobId; @NameInMap("JobName") private String jobName; @NameInMap("Message") private String message; @NameInMap("ProductKey") private String productKey; @NameInMap("Progress") private String progress; @NameInMap("Status") private String status; @NameInMap("StatusDetail") private String statusDetail; @NameInMap("TaskId") private String taskId; @NameInMap("UtcModified") private String utcModified; @NameInMap("UtcQueueTime") private String utcQueueTime; private Data(Builder builder) { this.deviceName = builder.deviceName; this.iotId = builder.iotId; this.jobId = builder.jobId; this.jobName = builder.jobName; this.message = builder.message; this.productKey = builder.productKey; this.progress = builder.progress; this.status = builder.status; this.statusDetail = builder.statusDetail; this.taskId = builder.taskId; this.utcModified = builder.utcModified; this.utcQueueTime = builder.utcQueueTime; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return deviceName */ public String getDeviceName() { return this.deviceName; } /** * @return iotId */ public String getIotId() { return this.iotId; } /** * @return jobId */ public String getJobId() { return this.jobId; } /** * @return jobName */ public String getJobName() { return this.jobName; } /** * @return message */ public String getMessage() { return this.message; } /** * @return productKey */ public String getProductKey() { return this.productKey; } /** * @return progress */ public String getProgress() { return this.progress; } /** * @return status */ public String getStatus() { return this.status; } /** * @return statusDetail */ public String getStatusDetail() { return this.statusDetail; } /** * @return taskId */ public String getTaskId() { return this.taskId; } /** * @return utcModified */ public String getUtcModified() { return this.utcModified; } /** * @return utcQueueTime */ public String getUtcQueueTime() { return this.utcQueueTime; } public static final class Builder { private String deviceName; private String iotId; private String jobId; private String jobName; private String message; private String productKey; private String progress; private String status; private String statusDetail; private String taskId; private String utcModified; private String utcQueueTime; /** * DeviceName. */ public Builder deviceName(String deviceName) { this.deviceName = deviceName; return this; } /** * IotId. */ public Builder iotId(String iotId) { this.iotId = iotId; return this; } /** * JobId. */ public Builder jobId(String jobId) { this.jobId = jobId; return this; } /** * JobName. */ public Builder jobName(String jobName) { this.jobName = jobName; return this; } /** * Message. */ public Builder message(String message) { this.message = message; return this; } /** * ProductKey. */ public Builder productKey(String productKey) { this.productKey = productKey; return this; } /** * Progress. */ public Builder progress(String progress) { this.progress = progress; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } /** * StatusDetail. */ public Builder statusDetail(String statusDetail) { this.statusDetail = statusDetail; return this; } /** * TaskId. */ public Builder taskId(String taskId) { this.taskId = taskId; return this; } /** * UtcModified. */ public Builder utcModified(String utcModified) { this.utcModified = utcModified; return this; } /** * UtcQueueTime. */ public Builder utcQueueTime(String utcQueueTime) { this.utcQueueTime = utcQueueTime; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy