Package com.courier.services.blocking
Interface TranslationService.WithRawResponse
-
- All Implemented Interfaces:
public interface TranslationService.WithRawResponseA view of TranslationService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract TranslationService.WithRawResponse withOptions(Consumer<ClientOptions.Builder> modifier)
Returns a view of this service with the given option modifications applied.
The original service is not modified.
-
retrieve
@MustBeClosed() HttpResponseFor<String> retrieve(String locale, TranslationRetrieveParams params)
Returns a raw HTTP response for
get /translations/{domain}/{locale}, but is otherwise the same as TranslationService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<String> retrieve(String locale, TranslationRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<String> retrieve(TranslationRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<String> retrieve(TranslationRetrieveParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponse update(String locale, TranslationUpdateParams params)
Returns a raw HTTP response for
put /translations/{domain}/{locale}, but is otherwise the same as TranslationService.update.
-
update
@MustBeClosed() HttpResponse update(String locale, TranslationUpdateParams params, RequestOptions requestOptions)
-
update
@MustBeClosed() HttpResponse update(TranslationUpdateParams params)
-
update
@MustBeClosed() abstract HttpResponse update(TranslationUpdateParams params, RequestOptions requestOptions)
-
-
-
-