com.aliyun.dataphin_public20230630.models.GetSupplementDagrunResponseBody 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 GetSupplementDagrunResponseBody extends TeaModel {
/**
* example:
* OK
*/
@NameInMap("Code")
public String code;
@NameInMap("DagrunList")
public java.util.List dagrunList;
/**
* 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;
/**
* example:
* true
*/
@NameInMap("Success")
public Boolean success;
public static GetSupplementDagrunResponseBody build(java.util.Map map) throws Exception {
GetSupplementDagrunResponseBody self = new GetSupplementDagrunResponseBody();
return TeaModel.build(map, self);
}
public GetSupplementDagrunResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public GetSupplementDagrunResponseBody setDagrunList(java.util.List dagrunList) {
this.dagrunList = dagrunList;
return this;
}
public java.util.List getDagrunList() {
return this.dagrunList;
}
public GetSupplementDagrunResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public GetSupplementDagrunResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetSupplementDagrunResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetSupplementDagrunResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class GetSupplementDagrunResponseBodyDagrunList extends TeaModel {
/**
* example:
* 2024-04-01
*/
@NameInMap("BizDate")
public String bizDate;
/**
* example:
* 60s
*/
@NameInMap("Duration")
public String duration;
/**
* example:
* 1717081789000
*/
@NameInMap("EndExecuteTime")
public Long endExecuteTime;
/**
* Dagrun ID
*
* example:
* dr_2242792_14542
*/
@NameInMap("Id")
public String id;
/**
* example:
* 1717081729000
*/
@NameInMap("StartExecuteTime")
public Long startExecuteTime;
/**
* example:
* RUNNING
*/
@NameInMap("Status")
public String status;
/**
* example:
* f_8241792_20201202_2099680
*/
@NameInMap("SupplementId")
public String supplementId;
public static GetSupplementDagrunResponseBodyDagrunList build(java.util.Map map) throws Exception {
GetSupplementDagrunResponseBodyDagrunList self = new GetSupplementDagrunResponseBodyDagrunList();
return TeaModel.build(map, self);
}
public GetSupplementDagrunResponseBodyDagrunList setBizDate(String bizDate) {
this.bizDate = bizDate;
return this;
}
public String getBizDate() {
return this.bizDate;
}
public GetSupplementDagrunResponseBodyDagrunList setDuration(String duration) {
this.duration = duration;
return this;
}
public String getDuration() {
return this.duration;
}
public GetSupplementDagrunResponseBodyDagrunList setEndExecuteTime(Long endExecuteTime) {
this.endExecuteTime = endExecuteTime;
return this;
}
public Long getEndExecuteTime() {
return this.endExecuteTime;
}
public GetSupplementDagrunResponseBodyDagrunList setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetSupplementDagrunResponseBodyDagrunList setStartExecuteTime(Long startExecuteTime) {
this.startExecuteTime = startExecuteTime;
return this;
}
public Long getStartExecuteTime() {
return this.startExecuteTime;
}
public GetSupplementDagrunResponseBodyDagrunList setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetSupplementDagrunResponseBodyDagrunList setSupplementId(String supplementId) {
this.supplementId = supplementId;
return this;
}
public String getSupplementId() {
return this.supplementId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy