Package com.lithic.api.services.blocking
Interface CardProgramService.WithRawResponse
-
- All Implemented Interfaces:
public interface CardProgramService.WithRawResponseA view of CardProgramService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
withOptions
abstract CardProgramService.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<CardProgram> retrieve(String cardProgramToken)
Returns a raw HTTP response for
get /v1/card_programs/{card_program_token}, but is otherwise the same as CardProgramService.retrieve.
-
retrieve
@MustBeClosed() HttpResponseFor<CardProgram> retrieve(String cardProgramToken, CardProgramRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<CardProgram> retrieve(String cardProgramToken, CardProgramRetrieveParams params)
-
retrieve
@MustBeClosed() abstract HttpResponseFor<CardProgram> retrieve(CardProgramRetrieveParams params, RequestOptions requestOptions)
-
retrieve
@MustBeClosed() HttpResponseFor<CardProgram> retrieve(CardProgramRetrieveParams params)
-
retrieve
@MustBeClosed() HttpResponseFor<CardProgram> retrieve(String cardProgramToken, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<CardProgramListPage> list()
Returns a raw HTTP response for
get /v1/card_programs, but is otherwise the same as CardProgramService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<CardProgramListPage> list(CardProgramListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<CardProgramListPage> list(CardProgramListParams params)
-
list
@MustBeClosed() HttpResponseFor<CardProgramListPage> list(RequestOptions requestOptions)
-
-
-
-