com.aliyun.sdk.service.polardb20170801.models.DeleteMaskingRulesResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-polardb20170801 Show documentation
Show all versions of alibabacloud-polardb20170801 Show documentation
Alibaba Cloud polardb (20170801) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.polardb20170801.models;
import com.aliyun.sdk.gateway.pop.*;
import darabonba.core.*;
import darabonba.core.async.*;
import darabonba.core.sync.*;
import darabonba.core.client.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DeleteMaskingRulesResponseBody} extends {@link TeaModel}
*
* DeleteMaskingRulesResponseBody
*/
public class DeleteMaskingRulesResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("Message")
private String message;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("Success")
private Boolean success;
private DeleteMaskingRulesResponseBody(Builder builder) {
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static DeleteMaskingRulesResponseBody create() {
return builder().build();
}
/**
* @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 message;
private String requestId;
private Boolean success;
/**
* The message that is returned for the request.
*
* If the request is successful, Successful
is returned. If the request fails, an error message such as an error code is returned.
*
*
* example:
* Successful
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* The ID of the request.
*
* example:
* 2BCEE25B-797C-426B-BA7B-D28CCF******
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Indicates whether the request is successful. Valid value:
*
* - true
* - false
*
*
* example:
* true
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public DeleteMaskingRulesResponseBody build() {
return new DeleteMaskingRulesResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy