Class ChatSessionChatKitConfigurationParam.History.Builder
-
- All Implemented Interfaces:
public final class ChatSessionChatKitConfigurationParam.History.Builder
A builder for History.
-
-
Method Summary
-
-
Method Detail
-
enabled
final ChatSessionChatKitConfigurationParam.History.Builder enabled(Boolean enabled)
Enables chat users to access previous ChatKit threads. Defaults to true.
-
enabled
final ChatSessionChatKitConfigurationParam.History.Builder enabled(JsonField<Boolean> enabled)
Sets Builder.enabled to an arbitrary JSON value.
You should usually call Builder.enabled with a well-typed Boolean value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
recentThreads
final ChatSessionChatKitConfigurationParam.History.Builder recentThreads(Long recentThreads)
Number of recent ChatKit threads users have access to. Defaults to unlimited when unset.
-
recentThreads
final ChatSessionChatKitConfigurationParam.History.Builder recentThreads(JsonField<Long> recentThreads)
Sets Builder.recentThreads to an arbitrary JSON value.
You should usually call Builder.recentThreads with a well-typed Long value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final ChatSessionChatKitConfigurationParam.History.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ChatSessionChatKitConfigurationParam.History.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ChatSessionChatKitConfigurationParam.History.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ChatSessionChatKitConfigurationParam.History.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ChatSessionChatKitConfigurationParam.History.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ChatSessionChatKitConfigurationParam.History build()
Returns an immutable instance of History.
Further updates to this Builder will not mutate the returned instance.
-
-
-
-