com.aliyun.dataphin_public20230630.models.CreateStreamBatchJobMappingResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dataphin_public20230630 Show documentation
Show all versions of dataphin_public20230630 Show documentation
Alibaba Cloud dataphin-public (20230630) SDK for Java
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 CreateStreamBatchJobMappingResponseBody extends TeaModel {
/**
* example:
* OK
*/
@NameInMap("Code")
public String code;
@NameInMap("Data")
public CreateStreamBatchJobMappingResponseBodyData data;
/**
* 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 CreateStreamBatchJobMappingResponseBody build(java.util.Map map) throws Exception {
CreateStreamBatchJobMappingResponseBody self = new CreateStreamBatchJobMappingResponseBody();
return TeaModel.build(map, self);
}
public CreateStreamBatchJobMappingResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public CreateStreamBatchJobMappingResponseBody setData(CreateStreamBatchJobMappingResponseBodyData data) {
this.data = data;
return this;
}
public CreateStreamBatchJobMappingResponseBodyData getData() {
return this.data;
}
public CreateStreamBatchJobMappingResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public CreateStreamBatchJobMappingResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public CreateStreamBatchJobMappingResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateStreamBatchJobMappingResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class CreateStreamBatchJobMappingResponseBodyData extends TeaModel {
/**
* example:
* 7083701105376640
*/
@NameInMap("FileId")
public String fileId;
/**
* example:
* /dev/streamJob/7083701105376640?env=DEV&projectId=7081229106458752&tenantId=300001420
*/
@NameInMap("Url")
public String url;
public static CreateStreamBatchJobMappingResponseBodyData build(java.util.Map map) throws Exception {
CreateStreamBatchJobMappingResponseBodyData self = new CreateStreamBatchJobMappingResponseBodyData();
return TeaModel.build(map, self);
}
public CreateStreamBatchJobMappingResponseBodyData setFileId(String fileId) {
this.fileId = fileId;
return this;
}
public String getFileId() {
return this.fileId;
}
public CreateStreamBatchJobMappingResponseBodyData setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy