Interface LogService
-
- All Implemented Interfaces:
public interface LogService
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public interfaceLogService.WithRawResponseA view of LogService that provides access to raw HTTP responses for each method.
-
Method Summary
-
-
Method Detail
-
withRawResponse
abstract LogService.WithRawResponse withRawResponse()
Returns a view of this service that provides access to raw HTTP responses for each method.
-
feedback
FeedbackResponseSchema feedback(ProjectLogFeedbackParams params)
Log feedback for a set of project logs events
-
feedback
abstract FeedbackResponseSchema feedback(ProjectLogFeedbackParams params, RequestOptions requestOptions)
-
fetch
FetchProjectLogsEventsResponse fetch(ProjectLogFetchParams params)
Fetch the events in a project logs. Equivalent to the POST form of the same path, but with the parameters in the URL query rather than in the request body. For more complex queries, use the
POST /btqlendpoint.
-
fetch
abstract FetchProjectLogsEventsResponse fetch(ProjectLogFetchParams params, RequestOptions requestOptions)
-
fetchPost
FetchProjectLogsEventsResponse fetchPost(ProjectLogFetchPostParams params)
Fetch the events in a project logs. Equivalent to the GET form of the same path, but with the parameters in the request body rather than in the URL query. For more complex queries, use the
POST /btqlendpoint.
-
fetchPost
abstract FetchProjectLogsEventsResponse fetchPost(ProjectLogFetchPostParams params, RequestOptions requestOptions)
-
insert
InsertEventsResponse insert(ProjectLogInsertParams params)
Insert a set of events into the project logs
-
insert
abstract InsertEventsResponse insert(ProjectLogInsertParams params, RequestOptions requestOptions)
-
-
-
-