Interface NotificationService.WithRawResponse
-
- All Implemented Interfaces:
public interface NotificationService.WithRawResponseA view of NotificationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract NotificationService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
draft
abstract DraftService.WithRawResponse draft()
-
checks
abstract CheckService.WithRawResponse checks()
-
create
@MustBeClosed() HttpResponseFor<NotificationTemplateMutationResponse> create(NotificationCreateParams params)
Returns a raw HTTP response for
post /notifications, but is otherwise the same as NotificationService.create.
-
create
@MustBeClosed() abstract HttpResponseFor<NotificationTemplateMutationResponse> create(NotificationCreateParams params, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<NotificationTemplateMutationResponse> create(NotificationTemplateCreateRequest notificationTemplateCreateRequest, RequestOptions requestOptions)
-
create
@MustBeClosed() HttpResponseFor<NotificationTemplateMutationResponse> create(NotificationTemplateCreateRequest notificationTemplateCreateRequest)
-
retrieve
@MustBeClosed() HttpResponseFor<NotificationTemplateGetResponse> retrieve(String id)
Returns a raw HTTP response for
get /notifications/{id}, but is otherwise the same as NotificationService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<NotificationTemplateGetResponse> retrieve(String id, NotificationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<NotificationTemplateGetResponse> retrieve(String id, NotificationRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<NotificationTemplateGetResponse> retrieve(NotificationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<NotificationTemplateGetResponse> retrieve(NotificationRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<NotificationTemplateGetResponse> retrieve(String id, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<NotificationListResponse> list()
Returns a raw HTTP response for
get /notifications, but is otherwise the same as NotificationService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<NotificationListResponse> list(NotificationListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<NotificationListResponse> list(NotificationListParams params)
-
list
@MustBeClosed() HttpResponseFor<NotificationListResponse> list(RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponse archive(String id)
Returns a raw HTTP response for
delete /notifications/{id}, but is otherwise the same as NotificationService.archive.
-
archive
@MustBeClosed() HttpResponse archive(String id, NotificationArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponse archive(String id, NotificationArchiveParams params)
-
archive
@MustBeClosed() abstract HttpResponse archive(NotificationArchiveParams params, RequestOptions requestOptions)
-
archive
@MustBeClosed() HttpResponse archive(NotificationArchiveParams params)
-
archive
@MustBeClosed() HttpResponse archive(String id, RequestOptions requestOptions)
-
listVersions
@MustBeClosed() HttpResponseFor<NotificationTemplateVersionListResponse> listVersions(String id)
Returns a raw HTTP response for
get /notifications/{id}/versions, but is otherwise the same as NotificationService.listVersions.
-
listVersions
@MustBeClosed() HttpResponseFor<NotificationTemplateVersionListResponse> listVersions(String id, NotificationListVersionsParams params, RequestOptions requestOptions)
-
listVersions
@MustBeClosed() HttpResponseFor<NotificationTemplateVersionListResponse> listVersions(String id, NotificationListVersionsParams params)
-
listVersions
@MustBeClosed() abstract HttpResponseFor<NotificationTemplateVersionListResponse> listVersions(NotificationListVersionsParams params, RequestOptions requestOptions)
-
listVersions
@MustBeClosed() HttpResponseFor<NotificationTemplateVersionListResponse> listVersions(NotificationListVersionsParams params)
-
listVersions
@MustBeClosed() HttpResponseFor<NotificationTemplateVersionListResponse> listVersions(String id, RequestOptions requestOptions)
-
publish
@MustBeClosed() HttpResponse publish(String id)
Returns a raw HTTP response for
post /notifications/{id}/publish, but is otherwise the same as NotificationService.publish.
-
publish
@MustBeClosed() HttpResponse publish(String id, NotificationPublishParams params, RequestOptions requestOptions)
-
publish
@MustBeClosed() HttpResponse publish(String id, NotificationPublishParams params)
-
publish
@MustBeClosed() abstract HttpResponse publish(NotificationPublishParams params, RequestOptions requestOptions)
-
publish
@MustBeClosed() HttpResponse publish(NotificationPublishParams params)
-
publish
@MustBeClosed() HttpResponse publish(String id, RequestOptions requestOptions)
-
replace
@MustBeClosed() HttpResponseFor<NotificationTemplateMutationResponse> replace(String id, NotificationReplaceParams params)
Returns a raw HTTP response for
put /notifications/{id}, but is otherwise the same as NotificationService.replace.
-
replace
@MustBeClosed() HttpResponseFor<NotificationTemplateMutationResponse> replace(String id, NotificationReplaceParams params, RequestOptions requestOptions)
-
replace
@MustBeClosed() HttpResponseFor<NotificationTemplateMutationResponse> replace(NotificationReplaceParams params)
-
replace
@MustBeClosed() abstract HttpResponseFor<NotificationTemplateMutationResponse> replace(NotificationReplaceParams params, RequestOptions requestOptions)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id)
Returns a raw HTTP response for
get /notifications/{id}/content, but is otherwise the same as NotificationService.retrieveContent.
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id, NotificationRetrieveContentParams params, RequestOptions requestOptions)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id, NotificationRetrieveContentParams params)
-
retrieveContent
@MustBeClosed() abstract HttpResponseFor<NotificationGetContent> retrieveContent(NotificationRetrieveContentParams params, RequestOptions requestOptions)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(NotificationRetrieveContentParams params)
-
retrieveContent
@MustBeClosed() HttpResponseFor<NotificationGetContent> retrieveContent(String id, RequestOptions requestOptions)
-
-
-
-