com.aliyun.sdk.service.cloud_siem20220616.models.SubmitJobsResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloud_siem20220616 Show documentation
Show all versions of alibabacloud-cloud_siem20220616 Show documentation
Alibaba Cloud cloud-siem (20220616) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloud_siem20220616.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SubmitJobsResponseBody} extends {@link TeaModel}
*
* SubmitJobsResponseBody
*/
public class SubmitJobsResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Data")
private Integer data;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private SubmitJobsResponseBody(Builder builder) {
this.data = builder.data;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SubmitJobsResponseBody create() {
return builder().build();
}
/**
* @return data
*/
public Integer getData() {
return this.data;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Integer data;
private String requestId;
/**
* The total number of tasks.
*/
public Builder data(Integer data) {
this.data = data;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SubmitJobsResponseBody build() {
return new SubmitJobsResponseBody(this);
}
}
}