com.aliyun.datalake20200710.models.BatchDeletePartitionsResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of datalake20200710 Show documentation
Show all versions of datalake20200710 Show documentation
Alibaba Cloud DataLake (20200710) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.datalake20200710.models;
import com.aliyun.tea.*;
public class BatchDeletePartitionsResponseBody extends TeaModel {
// Code
@NameInMap("Code")
public String code;
// Message
@NameInMap("Message")
public String message;
// PartitionErrors
@NameInMap("PartitionErrors")
public java.util.List partitionErrors;
// RequestId
@NameInMap("RequestId")
public String requestId;
// Success
@NameInMap("Success")
public Boolean success;
public static BatchDeletePartitionsResponseBody build(java.util.Map map) throws Exception {
BatchDeletePartitionsResponseBody self = new BatchDeletePartitionsResponseBody();
return TeaModel.build(map, self);
}
public BatchDeletePartitionsResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public BatchDeletePartitionsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public BatchDeletePartitionsResponseBody setPartitionErrors(java.util.List partitionErrors) {
this.partitionErrors = partitionErrors;
return this;
}
public java.util.List getPartitionErrors() {
return this.partitionErrors;
}
public BatchDeletePartitionsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public BatchDeletePartitionsResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}