com.aliyun.dataphin_public20230630.models.GetOperationSubmitStatusRequest 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 GetOperationSubmitStatusRequest extends TeaModel {
/**
* example:
* PROD
*/
@NameInMap("Env")
public String env;
/**
* This parameter is required.
*
* example:
* 1324444131
*/
@NameInMap("JobId")
public String jobId;
/**
* This parameter is required.
*
* example:
* 30001011
*/
@NameInMap("OpTenantId")
public Long opTenantId;
public static GetOperationSubmitStatusRequest build(java.util.Map map) throws Exception {
GetOperationSubmitStatusRequest self = new GetOperationSubmitStatusRequest();
return TeaModel.build(map, self);
}
public GetOperationSubmitStatusRequest setEnv(String env) {
this.env = env;
return this;
}
public String getEnv() {
return this.env;
}
public GetOperationSubmitStatusRequest setJobId(String jobId) {
this.jobId = jobId;
return this;
}
public String getJobId() {
return this.jobId;
}
public GetOperationSubmitStatusRequest setOpTenantId(Long opTenantId) {
this.opTenantId = opTenantId;
return this;
}
public Long getOpTenantId() {
return this.opTenantId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy