* Delete a session and all its data
(options: Options<SessionDeleteData, ThrowOnError>)
| 467 | * Delete a session and all its data |
| 468 | */ |
| 469 | public delete<ThrowOnError extends boolean = false>(options: Options<SessionDeleteData, ThrowOnError>) { |
| 470 | return (options.client ?? this._client).delete<SessionDeleteResponses, SessionDeleteErrors, ThrowOnError>({ |
| 471 | url: "/session/{id}", |
| 472 | ...options, |
| 473 | }) |
| 474 | } |
| 475 | |
| 476 | /** |
| 477 | * Get session |
no outgoing calls
no test coverage detected