Package com.courier.services.blocking
Interface JourneyService.WithRawResponse
-
- All Implemented Interfaces:
public interface JourneyService.WithRawResponseA view of JourneyService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract JourneyService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
list
@MustBeClosed() HttpResponseFor<JourneysListResponse> list()
Returns a raw HTTP response for
get /journeys, but is otherwise the same as JourneyService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<JourneysListResponse> list(JourneyListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<JourneysListResponse> list(JourneyListParams params)
-
list
@MustBeClosed() HttpResponseFor<JourneysListResponse> list(RequestOptions requestOptions)
-
invoke
@MustBeClosed() HttpResponseFor<JourneysInvokeResponse> invoke(String templateId, JourneyInvokeParams params)
Returns a raw HTTP response for
post /journeys/{templateId}/invoke, but is otherwise the same as JourneyService.invoke.
-
invoke
@MustBeClosed() HttpResponseFor<JourneysInvokeResponse> invoke(String templateId, JourneyInvokeParams params, RequestOptions requestOptions)
-
invoke
@MustBeClosed() HttpResponseFor<JourneysInvokeResponse> invoke(JourneyInvokeParams params)
-
invoke
@MustBeClosed() abstract HttpResponseFor<JourneysInvokeResponse> invoke(JourneyInvokeParams params, RequestOptions requestOptions)
-
-
-
-