// // 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 PluginsApi void main() { // final instance = PluginsApi(); group('tests for PluginsApi', () { // Retrieve a plugin // // Retrieve information about a specific plugin by its ID. // //Future getPlugin(String id) async test('test getPlugin', () async { // TODO }); // Retrieve plugin methods // // Retrieve a list of plugin methods // //Future> searchPluginMethods({ String description, bool enabled, String id, String name, String pluginName, String pluginVersion, String title, WorkflowTrigger trigger, WorkflowType type }) async test('test searchPluginMethods', () async { // TODO }); // Retrieve workflow templates // // Retrieve workflow templates provided by installed plugins // //Future> searchPluginTemplates() async test('test searchPluginTemplates', () async { // TODO }); // List all plugins // // Retrieve a list of plugins available to the authenticated user. // //Future> searchPlugins({ String description, bool enabled, String id, String name, String title, String version }) async test('test searchPlugins', () async { // TODO }); }); }