// // AUTO-GENERATED FILE, DO NOT MODIFY! // // @dart=2.18 // ignore_for_file: unused_element, unused_import // ignore_for_file: always_put_required_named_parameters_first // ignore_for_file: constant_identifier_names // ignore_for_file: lines_longer_than_80_chars import 'package:openapi/api.dart'; import 'package:test/test.dart'; /// tests for SessionsApi void main() { // final instance = SessionsApi(); group('tests for SessionsApi', () { // Create a session // // Create a session as a child to the current session. This endpoint is used for casting. // //Future createSession(SessionCreateDto sessionCreateDto) async test('test createSession', () async { // TODO }); // Delete all sessions // // Delete all sessions for the user. This will not delete the current session. // //Future deleteAllSessions() async test('test deleteAllSessions', () async { // TODO }); // Delete a session // // Delete a specific session by id. // //Future deleteSession(String id) async test('test deleteSession', () async { // TODO }); // Retrieve sessions // // Retrieve a list of sessions for the user. // //Future> getSessions() async test('test getSessions', () async { // TODO }); // Lock a session // // Lock a specific session by id. // //Future lockSession(String id) async test('test lockSession', () async { // TODO }); // Update a session // // Update a specific session identified by id. // //Future updateSession(String id, SessionUpdateDto sessionUpdateDto) async test('test updateSession', () async { // TODO }); }); }