All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.sdk.service.chatbot20220408.models.DeletePerspectiveResponseBody Maven / Gradle / Ivy

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); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy