File tree 4 files changed +16
-3
lines changed
end_to_end_tests/custom-templates-golden-record/my_test_api_client/api
4 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 1
1
""" Contains methods for accessing the API """
2
2
3
-
4
3
from typing import Type
5
4
6
5
from my_test_api_client .api .default import DefaultEndpoints
6
+ from my_test_api_client .api .parameters import ParametersEndpoints
7
7
from my_test_api_client .api .tests import TestsEndpoints
8
8
9
9
@@ -15,3 +15,7 @@ def tests(cls) -> Type[TestsEndpoints]:
15
15
@classmethod
16
16
def default (cls ) -> Type [DefaultEndpoints ]:
17
17
return DefaultEndpoints
18
+
19
+ @classmethod
20
+ def parameters (cls ) -> Type [ParametersEndpoints ]:
21
+ return ParametersEndpoints
Original file line number Diff line number Diff line change 1
1
""" Contains methods for accessing the API Endpoints """
2
2
3
-
4
3
import types
5
4
6
5
from my_test_api_client .api .default import get_common_parameters , post_common_parameters
Original file line number Diff line number Diff line change
1
+ """ Contains methods for accessing the API Endpoints """
2
+
3
+ import types
4
+
5
+ from my_test_api_client .api .parameters import get_same_name_multiple_locations_param
6
+
7
+
8
+ class ParametersEndpoints :
9
+ @classmethod
10
+ def get_same_name_multiple_locations_param (cls ) -> types .ModuleType :
11
+ return get_same_name_multiple_locations_param
Original file line number Diff line number Diff line change 1
1
""" Contains methods for accessing the API Endpoints """
2
2
3
-
4
3
import types
5
4
6
5
from my_test_api_client .api .tests import (
You can’t perform that action at this time.
0 commit comments