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