com.aliyun.sdk.service.ecs20140526.models.EipFillParamsResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-ecs20140526 Show documentation
Show all versions of alibabacloud-ecs20140526 Show documentation
Alibaba Cloud Ecs (20140526) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.ecs20140526.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link EipFillParamsResponseBody} extends {@link TeaModel}
*
* EipFillParamsResponseBody
*/
public class EipFillParamsResponseBody extends TeaModel {
@NameInMap("code")
private String code;
@NameInMap("data")
private String data;
@NameInMap("message")
private String message;
@NameInMap("requestId")
private String requestId;
@NameInMap("success")
private Boolean success;
private EipFillParamsResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static EipFillParamsResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String data;
private String message;
private String requestId;
private Boolean success;
/**
* code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* requestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public EipFillParamsResponseBody build() {
return new EipFillParamsResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy