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

com.aliyun.sdk.service.chatbot20220408.models.DeletePerspectiveRequest 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 DeletePerspectiveRequest} extends {@link RequestModel}
 *
 * 

DeletePerspectiveRequest

*/ public class DeletePerspectiveRequest extends Request { @com.aliyun.core.annotation.Host @com.aliyun.core.annotation.NameInMap("RegionId") private String regionId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AgentKey") private String agentKey; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PerspectiveId") private String perspectiveId; private DeletePerspectiveRequest(Builder builder) { super(builder); this.regionId = builder.regionId; this.agentKey = builder.agentKey; this.perspectiveId = builder.perspectiveId; } public static Builder builder() { return new Builder(); } public static DeletePerspectiveRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return regionId */ public String getRegionId() { return this.regionId; } /** * @return agentKey */ public String getAgentKey() { return this.agentKey; } /** * @return perspectiveId */ public String getPerspectiveId() { return this.perspectiveId; } public static final class Builder extends Request.Builder { private String regionId; private String agentKey; private String perspectiveId; private Builder() { super(); } private Builder(DeletePerspectiveRequest request) { super(request); this.regionId = request.regionId; this.agentKey = request.agentKey; this.perspectiveId = request.perspectiveId; } /** * RegionId. */ public Builder regionId(String regionId) { this.putHostParameter("RegionId", regionId); this.regionId = regionId; return this; } /** * AgentKey. */ public Builder agentKey(String agentKey) { this.putQueryParameter("AgentKey", agentKey); this.agentKey = agentKey; return this; } /** * PerspectiveId. */ public Builder perspectiveId(String perspectiveId) { this.putQueryParameter("PerspectiveId", perspectiveId); this.perspectiveId = perspectiveId; return this; } @Override public DeletePerspectiveRequest build() { return new DeletePerspectiveRequest(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy