Interface SlackService.WithRawResponse
-
- All Implemented Interfaces:
public interface SlackService.WithRawResponseA view of SlackService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
checkAuth
@MustBeClosed() HttpResponseFor<SlackCheckAuthResponse> checkAuth(String channelId, SlackCheckAuthParams params)
Returns a raw HTTP response for
get /v1/providers/slack/{channel_id}/auth_check, but is otherwise the same as SlackService.checkAuth.
-
checkAuth
@MustBeClosed() HttpResponseFor<SlackCheckAuthResponse> checkAuth(String channelId, SlackCheckAuthParams params, RequestOptions requestOptions)
-
checkAuth
@MustBeClosed() HttpResponseFor<SlackCheckAuthResponse> checkAuth(SlackCheckAuthParams params)
-
checkAuth
@MustBeClosed() abstract HttpResponseFor<SlackCheckAuthResponse> checkAuth(SlackCheckAuthParams params, RequestOptions requestOptions)
-
listChannels
@MustBeClosed() HttpResponseFor<SlackListChannelsPage> listChannels(String channelId, SlackListChannelsParams params)
Returns a raw HTTP response for
get /v1/providers/slack/{channel_id}/channels, but is otherwise the same as SlackService.listChannels.
-
listChannels
@MustBeClosed() HttpResponseFor<SlackListChannelsPage> listChannels(String channelId, SlackListChannelsParams params, RequestOptions requestOptions)
-
listChannels
@MustBeClosed() HttpResponseFor<SlackListChannelsPage> listChannels(SlackListChannelsParams params)
-
listChannels
@MustBeClosed() abstract HttpResponseFor<SlackListChannelsPage> listChannels(SlackListChannelsParams params, RequestOptions requestOptions)
-
revokeAccess
@MustBeClosed() HttpResponseFor<SlackRevokeAccessResponse> revokeAccess(String channelId, SlackRevokeAccessParams params)
Returns a raw HTTP response for
put /v1/providers/slack/{channel_id}/revoke_access, but is otherwise the same as SlackService.revokeAccess.
-
revokeAccess
@MustBeClosed() HttpResponseFor<SlackRevokeAccessResponse> revokeAccess(String channelId, SlackRevokeAccessParams params, RequestOptions requestOptions)
-
revokeAccess
@MustBeClosed() HttpResponseFor<SlackRevokeAccessResponse> revokeAccess(SlackRevokeAccessParams params)
-
revokeAccess
@MustBeClosed() abstract HttpResponseFor<SlackRevokeAccessResponse> revokeAccess(SlackRevokeAccessParams params, RequestOptions requestOptions)
-
-
-
-