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

com.aliyun.dataphin_public20230630.models.CreateBatchTaskResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CreateBatchTaskResponseBody extends TeaModel {
    /**
     * example:
     * 

OK

*/ @NameInMap("Code") public String code; @NameInMap("CreateResult") public CreateBatchTaskResponseBodyCreateResult createResult; /** * example: *

200

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; /** * example: *

successful

*/ @NameInMap("Message") public String message; /** * example: *

75DD06F8-1661-5A6E-B0A6-7E23133BDC60

*/ @NameInMap("RequestId") public String requestId; @NameInMap("Success") public Boolean success; public static CreateBatchTaskResponseBody build(java.util.Map map) throws Exception { CreateBatchTaskResponseBody self = new CreateBatchTaskResponseBody(); return TeaModel.build(map, self); } public CreateBatchTaskResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public CreateBatchTaskResponseBody setCreateResult(CreateBatchTaskResponseBodyCreateResult createResult) { this.createResult = createResult; return this; } public CreateBatchTaskResponseBodyCreateResult getCreateResult() { return this.createResult; } public CreateBatchTaskResponseBody setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public CreateBatchTaskResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public CreateBatchTaskResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public CreateBatchTaskResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } public static class CreateBatchTaskResponseBodyCreateResult extends TeaModel { /** * example: *

12113111

*/ @NameInMap("FileId") public Long fileId; public static CreateBatchTaskResponseBodyCreateResult build(java.util.Map map) throws Exception { CreateBatchTaskResponseBodyCreateResult self = new CreateBatchTaskResponseBodyCreateResult(); return TeaModel.build(map, self); } public CreateBatchTaskResponseBodyCreateResult setFileId(Long fileId) { this.fileId = fileId; return this; } public Long getFileId() { return this.fileId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy