// // AUTO-GENERATED FILE, DO NOT MODIFY! // // @dart=2.12 // 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 GridsApi void main() { // final instance = GridsApi(); group('tests for GridsApi', () { // Create a grid // // Creates a new grid applying the attributes provided in the body. The constraints applied to the grid depend on the page the grid is placed in which is why the create form end point should be used to be guided when wanting to create a grid. // //Future createGrid({ GridWriteModel gridWriteModel }) async test('test createGrid', () async { // TODO }); // Get a grid // // Fetches a single grid identified by its id. // //Future getGrid(int id) async test('test getGrid', () async { // TODO }); // Grid Create Form // // // //Future gridCreateForm() async test('test gridCreateForm', () async { // TODO }); // Grid Update Form // // // //Future gridUpdateForm(int id) async test('test gridUpdateForm', () async { // TODO }); // List grids // // Lists all grids matching the provided filters and being part of the selected query page. The grids returned will also depend on the permissions of the requesting user. // //Future listGrids({ int offset, int pageSize, String filters }) async test('test listGrids', () async { // TODO }); // Update a grid // // Updates the given grid by applying the attributes provided in the body. The constraints applied to the grid depend on the page the grid is placed in which is why the create form end point should be used to be guided when wanting to update a grid. // //Future updateGrid(int id, { GridWriteModel gridWriteModel }) async test('test updateGrid', () async { // TODO }); }); }