Interface ProgramService.WithRawResponse
-
- All Implemented Interfaces:
public interface ProgramService.WithRawResponseA view of ProgramService that provides access to raw HTTP responses for each method.
-
-
Method Summary
Modifier and Type Method Description HttpResponseFor<Program>retrieve(ProgramRetrieveParams params)Returns a raw HTTP response for get /programs/{program_id}, but is otherwise the same as ProgramService.retrieve.abstract HttpResponseFor<Program>retrieve(ProgramRetrieveParams params, RequestOptions requestOptions)HttpResponseFor<ProgramListPage>list()Returns a raw HTTP response for get /programs, but is otherwise the same as ProgramService.list.abstract HttpResponseFor<ProgramListPage>list(ProgramListParams params, RequestOptions requestOptions)HttpResponseFor<ProgramListPage>list(ProgramListParams params)HttpResponseFor<ProgramListPage>list(RequestOptions requestOptions)-
-
Method Detail
-
retrieve
@MustBeClosed() HttpResponseFor<Program> retrieve(ProgramRetrieveParams params)
Returns a raw HTTP response for
get /programs/{program_id}, but is otherwise the same as ProgramService.retrieve.
-
retrieve
@MustBeClosed() abstract HttpResponseFor<Program> retrieve(ProgramRetrieveParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ProgramListPage> list()
Returns a raw HTTP response for
get /programs, but is otherwise the same as ProgramService.list.
-
list
@MustBeClosed() abstract HttpResponseFor<ProgramListPage> list(ProgramListParams params, RequestOptions requestOptions)
-
list
@MustBeClosed() HttpResponseFor<ProgramListPage> list(ProgramListParams params)
-
list
@MustBeClosed() HttpResponseFor<ProgramListPage> list(RequestOptions requestOptions)
-
-
-
-