com.aliyun.sdk.service.paiautoml20220828.models.CreateAutofeExperimentResponseBody 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 CreateAutofeExperimentResponseBody} extends {@link TeaModel}
*
* CreateAutofeExperimentResponseBody
*/
public class CreateAutofeExperimentResponseBody 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("ExperimentId")
private String experimentId;
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private CreateAutofeExperimentResponseBody(Builder builder) {
this.code = builder.code;
this.detail = builder.detail;
this.experimentId = builder.experimentId;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateAutofeExperimentResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return detail
*/
public java.util.Map < String, ? > getDetail() {
return this.detail;
}
/**
* @return experimentId
*/
public String getExperimentId() {
return this.experimentId;
}
/**
* @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 experimentId;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Detail.
*/
public Builder detail(java.util.Map < String, ? > detail) {
this.detail = detail;
return this;
}
/**
* ExperimentId.
*/
public Builder experimentId(String experimentId) {
this.experimentId = experimentId;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateAutofeExperimentResponseBody build() {
return new CreateAutofeExperimentResponseBody(this);
}
}
}