com.aliyun.sdk.service.chatbot20220408.models.CreatePerspectiveResponseBody 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 CreatePerspectiveResponseBody} extends {@link TeaModel}
*
* CreatePerspectiveResponseBody
*/
public class CreatePerspectiveResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("PerspectiveId")
private String perspectiveId;
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
private CreatePerspectiveResponseBody(Builder builder) {
this.perspectiveId = builder.perspectiveId;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static CreatePerspectiveResponseBody create() {
return builder().build();
}
/**
* @return perspectiveId
*/
public String getPerspectiveId() {
return this.perspectiveId;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String perspectiveId;
private String requestId;
/**
* PerspectiveId.
*/
public Builder perspectiveId(String perspectiveId) {
this.perspectiveId = perspectiveId;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public CreatePerspectiveResponseBody build() {
return new CreatePerspectiveResponseBody(this);
}
}
}