com.ibm.watson.assistant.v2.model.CreateSessionOptions Maven / Gradle / Ivy
/*
* (C) Copyright IBM Corp. 2018, 2020.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
* specific language governing permissions and limitations under the License.
*/
package com.ibm.watson.assistant.v2.model;
import com.ibm.cloud.sdk.core.service.model.GenericModel;
/** The createSession options. */
public class CreateSessionOptions extends GenericModel {
protected String assistantId;
/** Builder. */
public static class Builder {
private String assistantId;
private Builder(CreateSessionOptions createSessionOptions) {
this.assistantId = createSessionOptions.assistantId;
}
/** Instantiates a new builder. */
public Builder() {}
/**
* Instantiates a new builder with required properties.
*
* @param assistantId the assistantId
*/
public Builder(String assistantId) {
this.assistantId = assistantId;
}
/**
* Builds a CreateSessionOptions.
*
* @return the new CreateSessionOptions instance
*/
public CreateSessionOptions build() {
return new CreateSessionOptions(this);
}
/**
* Set the assistantId.
*
* @param assistantId the assistantId
* @return the CreateSessionOptions builder
*/
public Builder assistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
}
protected CreateSessionOptions(Builder builder) {
com.ibm.cloud.sdk.core.util.Validator.notEmpty(
builder.assistantId, "assistantId cannot be empty");
assistantId = builder.assistantId;
}
/**
* New builder.
*
* @return a CreateSessionOptions builder
*/
public Builder newBuilder() {
return new Builder(this);
}
/**
* Gets the assistantId.
*
* Unique identifier of the assistant. To find the assistant ID in the Watson Assistant user
* interface, open the assistant settings and click **API Details**. For information about
* creating assistants, see the
* [documentation](https://cloud.ibm.com/docs/assistant?topic=assistant-assistant-add#assistant-add-task).
*
*
**Note:** Currently, the v2 API does not support creating assistants.
*
* @return the assistantId
*/
public String assistantId() {
return assistantId;
}
}