* List Practice Sessions * List all practice sessions for the current user * @param data The data for the request. * @param data.skip * @param data.limit * @returns PracticeSessionList Successful Response * @throws ApiError
(
data: FlashcardsListPracticeSessionsData = {},
)
| 319 | * @throws ApiError |
| 320 | */ |
| 321 | public static listPracticeSessions( |
| 322 | data: FlashcardsListPracticeSessionsData = {}, |
| 323 | ): CancelablePromise<FlashcardsListPracticeSessionsResponse> { |
| 324 | return __request(OpenAPI, { |
| 325 | method: 'GET', |
| 326 | url: '/api/v1/practice-sessions', |
| 327 | query: { |
| 328 | skip: data.skip, |
| 329 | limit: data.limit, |
| 330 | }, |
| 331 | errors: { |
| 332 | 422: 'Validation Error', |
| 333 | }, |
| 334 | }) |
| 335 | } |
| 336 | |
| 337 | /** |
| 338 | * Get Practice Session Status |
nothing calls this directly
no outgoing calls
no test coverage detected