com.aliyun.sdk.service.ecs20140526.models.DeletePrefixListResponseBody 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 darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DeletePrefixListResponseBody} extends {@link TeaModel}
*
* DeletePrefixListResponseBody
*/
public class DeletePrefixListResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private DeletePrefixListResponseBody(Builder builder) {
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DeletePrefixListResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String requestId;
/**
* The request ID.
*
* example:
* 38793DB8-A4B2-4AEC-BFD3-111234E9188D
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DeletePrefixListResponseBody build() {
return new DeletePrefixListResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy