com.aliyun.datalake20200710.models.ErrorDetail 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 ErrorDetail extends TeaModel {
// Code
@NameInMap("Code")
public String code;
// Message
@NameInMap("Message")
public String message;
public static ErrorDetail build(java.util.Map map) throws Exception {
ErrorDetail self = new ErrorDetail();
return TeaModel.build(map, self);
}
public ErrorDetail setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public ErrorDetail setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
}