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
Modifier and Type Method Description HttpResponseFor<CardProgram>retrieve(CardProgramRetrieveParams params)Returns a raw HTTP response for get /v1/card_programs/{card_program_token}, but is otherwise the same as CardProgramService.retrieve.abstract HttpResponseFor<CardProgram>retrieve(CardProgramRetrieveParams params, RequestOptions requestOptions)HttpResponseFor<CardProgramListPage>list()Returns a raw HTTP response for get /v1/card_programs, but is otherwise the same as CardProgramService.list.abstract HttpResponseFor<CardProgramListPage>list(CardProgramListParams params, RequestOptions requestOptions)HttpResponseFor<CardProgramListPage>list(CardProgramListParams params)HttpResponseFor<CardProgramListPage>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() HttpResponseFor<CardProgram> retrieve(CardProgramRetrieveParams params)
Returns a raw HTTP response for
get /v1/card_programs/{card_program_token}, but is otherwise the same as CardProgramService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<CardProgram> retrieve(CardProgramRetrieveParams params, 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)
-
-
-
-