Package com.courier.services.blocking
Interface InboundService.WithRawResponse
-
- All Implemented Interfaces:
public interface InboundService.WithRawResponseA view of InboundService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description abstract InboundService.WithRawResponsewithOptions(Consumer<ClientOptions.Builder> modifier)Returns a view of this service with the given option modifications applied. HttpResponseFor<InboundTrackEventResponse>trackEvent(InboundTrackEventParams params)Returns a raw HTTP response for post /inbound/courier, but is otherwise the same as InboundService.trackEvent.abstract HttpResponseFor<InboundTrackEventResponse>trackEvent(InboundTrackEventParams params, RequestOptions requestOptions)-
-
Method Detail
-
withOptions
abstract InboundService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
trackEvent
@MustBeClosed() HttpResponseFor<InboundTrackEventResponse> trackEvent(InboundTrackEventParams params)
Returns a raw HTTP response for
post /inbound/courier, but is otherwise the same as InboundService.trackEvent.
-
trackEvent
@MustBeClosed() abstract HttpResponseFor<InboundTrackEventResponse> trackEvent(InboundTrackEventParams params, RequestOptions requestOptions)
-
-
-
-