com.aliyun.sdk.service.ecs20140526.models.CreateHaVipResponseBody 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 CreateHaVipResponseBody} extends {@link TeaModel}
*
* CreateHaVipResponseBody
*/
public class CreateHaVipResponseBody extends TeaModel {
@NameInMap("HaVipId")
private String haVipId;
@NameInMap("RequestId")
private String requestId;
private CreateHaVipResponseBody(Builder builder) {
this.haVipId = builder.haVipId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreateHaVipResponseBody create() {
return builder().build();
}
/**
* @return haVipId
*/
public String getHaVipId() {
return this.haVipId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String haVipId;
private String requestId;
/**
* HaVipId.
*/
public Builder haVipId(String haVipId) {
this.haVipId = haVipId;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreateHaVipResponseBody build() {
return new CreateHaVipResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy