com.aliyun.sdk.service.chatbot20220408.models.DeletePerspectiveResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-chatbot20220408 Show documentation
Show all versions of alibabacloud-chatbot20220408 Show documentation
Alibaba Cloud Chatbot (20220408) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.chatbot20220408.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link DeletePerspectiveResponseBody} extends {@link TeaModel}
*
* DeletePerspectiveResponseBody
*/
public class DeletePerspectiveResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("Result")
private Boolean result;
private DeletePerspectiveResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.result = builder.result;
}
public static Builder builder() {
return new Builder();
}
public static DeletePerspectiveResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return result
*/
public Boolean getResult() {
return this.result;
}
public static final class Builder {
private String requestId;
private Boolean result;
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Result.
*/
public Builder result(Boolean result) {
this.result = result;
return this;
}
public DeletePerspectiveResponseBody build() {
return new DeletePerspectiveResponseBody(this);
}
}
}