# coding: utf-8 """ Dashboards API Manage ThousandEyes Dashboards. The version of the OpenAPI document: 7.0.4 Generated by OpenAPI Generator (https://openapi-generator.tech) Do not edit the class manually. """ # noqa: E501 import unittest from thousandeyes_sdk.dashboards.models.legacy_api_dashboard import LegacyApiDashboard class TestLegacyApiDashboard(unittest.TestCase): """LegacyApiDashboard unit test stubs""" def setUp(self): pass def tearDown(self): pass def make_instance(self, include_optional) -> LegacyApiDashboard: """Test LegacyApiDashboard include_option is a boolean, when False only required params are included, when True both required and optional params are included """ # uncomment below to create an instance of `LegacyApiDashboard` """ model = LegacyApiDashboard() if include_optional: return LegacyApiDashboard( account_id = 1234, created_by = 1, modified_by = 1, modified_date = '2023-05-16 10:14:28', global_override = True, migrated_report = False, api_link = [ { } ] ) else: return LegacyApiDashboard( ) """ def testLegacyApiDashboard(self): """Test LegacyApiDashboard""" # inst_req_only = self.make_instance(include_optional=False) # inst_req_and_optional = self.make_instance(include_optional=True) if __name__ == '__main__': unittest.main()