Class ChatSessionChatKitConfiguration.Builder
-
- All Implemented Interfaces:
public final class ChatSessionChatKitConfiguration.Builder
A builder for ChatSessionChatKitConfiguration.
-
-
Method Summary
-
-
Method Detail
-
automaticThreadTitling
final ChatSessionChatKitConfiguration.Builder automaticThreadTitling(ChatSessionAutomaticThreadTitling automaticThreadTitling)
Automatic thread titling preferences.
-
automaticThreadTitling
final ChatSessionChatKitConfiguration.Builder automaticThreadTitling(JsonField<ChatSessionAutomaticThreadTitling> automaticThreadTitling)
Sets Builder.automaticThreadTitling to an arbitrary JSON value.
You should usually call Builder.automaticThreadTitling with a well-typed ChatSessionAutomaticThreadTitling value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
fileUpload
final ChatSessionChatKitConfiguration.Builder fileUpload(ChatSessionFileUpload fileUpload)
Upload settings for the session.
-
fileUpload
final ChatSessionChatKitConfiguration.Builder fileUpload(JsonField<ChatSessionFileUpload> fileUpload)
Sets Builder.fileUpload to an arbitrary JSON value.
You should usually call Builder.fileUpload with a well-typed ChatSessionFileUpload value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
history
final ChatSessionChatKitConfiguration.Builder history(ChatSessionHistory history)
History retention configuration.
-
history
final ChatSessionChatKitConfiguration.Builder history(JsonField<ChatSessionHistory> history)
Sets Builder.history to an arbitrary JSON value.
You should usually call Builder.history with a well-typed ChatSessionHistory value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ChatSessionChatKitConfiguration.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ChatSessionChatKitConfiguration.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ChatSessionChatKitConfiguration.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ChatSessionChatKitConfiguration.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ChatSessionChatKitConfiguration.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ChatSessionChatKitConfiguration build()
Returns an immutable instance of ChatSessionChatKitConfiguration.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.automaticThreadTitling() .fileUpload() .history()
-
-
-
-