com.aliyun.sdk.service.paiautoml20220828.models.DeleteHpoExperimentResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-paiautoml20220828 Show documentation
Show all versions of alibabacloud-paiautoml20220828 Show documentation
Alibaba Cloud paiAutoML (20220828) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.paiautoml20220828.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DeleteHpoExperimentResponseBody} extends {@link TeaModel}
*
* DeleteHpoExperimentResponseBody
*/
public class DeleteHpoExperimentResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Code")
private String code;
@com.aliyun.core.annotation.NameInMap("Detail")
private java.util.Map < String, ? > detail;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private DeleteHpoExperimentResponseBody(Builder builder) {
this.code = builder.code;
this.detail = builder.detail;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeleteHpoExperimentResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return detail
*/
public java.util.Map < String, ? > getDetail() {
return this.detail;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private java.util.Map < String, ? > detail;
private String message;
private String requestId;
/**
* The error code when the API call is not successful.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Extra info on the execution failure.
*/
public Builder detail(java.util.Map < String, ? > detail) {
this.detail = detail;
return this;
}
/**
* The error message returned.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* The request ID.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeleteHpoExperimentResponseBody build() {
return new DeleteHpoExperimentResponseBody(this);
}
}
}