Class MessageServiceImpl.WithRawResponseImpl
-
- All Implemented Interfaces:
-
com.openai.services.blocking.beta.threads.MessageService.WithRawResponse
public final class MessageServiceImpl.WithRawResponseImpl implements MessageService.WithRawResponse
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<Message>
create(BetaThreadMessageCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /threads/{thread_id}/messages
, but is otherwise the same as MessageService.create.HttpResponseFor<Message>
retrieve(BetaThreadMessageRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /threads/{thread_id}/messages/{message_id}
, but is otherwise the same as MessageService.retrieve.HttpResponseFor<Message>
update(BetaThreadMessageUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for post /threads/{thread_id}/messages/{message_id}
, but is otherwise the same as MessageService.update.HttpResponseFor<BetaThreadMessageListPage>
list(BetaThreadMessageListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for get /threads/{thread_id}/messages
, but is otherwise the same as MessageService.list.HttpResponseFor<MessageDeleted>
delete(BetaThreadMessageDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for delete /threads/{thread_id}/messages/{message_id}
, but is otherwise the same as MessageService.delete.-
-
Method Detail
-
create
HttpResponseFor<Message> create(BetaThreadMessageCreateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /threads/{thread_id}/messages
, but is otherwise the same as MessageService.create.
-
retrieve
HttpResponseFor<Message> retrieve(BetaThreadMessageRetrieveParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /threads/{thread_id}/messages/{message_id}
, but is otherwise the same as MessageService.retrieve.
-
update
HttpResponseFor<Message> update(BetaThreadMessageUpdateParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
post /threads/{thread_id}/messages/{message_id}
, but is otherwise the same as MessageService.update.
-
list
HttpResponseFor<BetaThreadMessageListPage> list(BetaThreadMessageListParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
get /threads/{thread_id}/messages
, but is otherwise the same as MessageService.list.
-
delete
HttpResponseFor<MessageDeleted> delete(BetaThreadMessageDeleteParams params, RequestOptions requestOptions)
Returns a raw HTTP response for
delete /threads/{thread_id}/messages/{message_id}
, but is otherwise the same as MessageService.delete.
-
-
-
-