Interface ChatKitService
-
- All Implemented Interfaces:
public interface ChatKitService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interface
ChatKitService.WithRawResponse
A view of ChatKitService that provides access to raw HTTP responses for each method.
-
Method Summary
Modifier and Type Method Description abstract ChatKitService.WithRawResponse
withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method. abstract ChatKitService
withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied. abstract SessionService
sessions()
abstract ThreadService
threads()
ChatKitUploadFileResponse
uploadFile(ChatKitUploadFileParams params)
Upload a ChatKit file abstract ChatKitUploadFileResponse
uploadFile(ChatKitUploadFileParams params, RequestOptions requestOptions)
-
-
Method Detail
-
withRawResponse
abstract ChatKitService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
withOptions
abstract ChatKitService withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
sessions
abstract SessionService sessions()
-
threads
abstract ThreadService threads()
-
uploadFile
ChatKitUploadFileResponse uploadFile(ChatKitUploadFileParams params)
Upload a ChatKit file
-
uploadFile
abstract ChatKitUploadFileResponse uploadFile(ChatKitUploadFileParams params, RequestOptions requestOptions)
-
-
-
-