Interface LogService.WithRawResponse
-
- All Implemented Interfaces:
public interface LogService.WithRawResponseA view of LogService that provides access to raw HTTP responses for each method.
-
-
Method Summary
-
-
Method Detail
-
feedback
@MustBeClosed() HttpResponseFor<FeedbackResponseSchema> feedback(ProjectLogFeedbackParams params)
Returns a raw HTTP response for
post /v1/project_logs/{project_id}/feedback, but is otherwise the same as LogService.feedback.
-
feedback
@MustBeClosed() abstract HttpResponseFor<FeedbackResponseSchema> feedback(ProjectLogFeedbackParams params, RequestOptions requestOptions)
-
fetch
@MustBeClosed() HttpResponseFor<FetchProjectLogsEventsResponse> fetch(ProjectLogFetchParams params)
Returns a raw HTTP response for
get /v1/project_logs/{project_id}/fetch, but is otherwise the same as LogService.fetch.
-
fetch
@MustBeClosed() abstract HttpResponseFor<FetchProjectLogsEventsResponse> fetch(ProjectLogFetchParams params, RequestOptions requestOptions)
-
fetchPost
@MustBeClosed() HttpResponseFor<FetchProjectLogsEventsResponse> fetchPost(ProjectLogFetchPostParams params)
Returns a raw HTTP response for
post /v1/project_logs/{project_id}/fetch, but is otherwise the same as LogService.fetchPost.
-
fetchPost
@MustBeClosed() abstract HttpResponseFor<FetchProjectLogsEventsResponse> fetchPost(ProjectLogFetchPostParams params, RequestOptions requestOptions)
-
insert
@MustBeClosed() HttpResponseFor<InsertEventsResponse> insert(ProjectLogInsertParams params)
Returns a raw HTTP response for
post /v1/project_logs/{project_id}/insert, but is otherwise the same as LogService.insert.
-
insert
@MustBeClosed() abstract HttpResponseFor<InsertEventsResponse> insert(ProjectLogInsertParams params, RequestOptions requestOptions)
-
-
-
-