We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d11e123 commit 5b16fb4Copy full SHA for 5b16fb4
amadeus/ordering/__init__.py
@@ -1,3 +1,4 @@
1
from ._transfer_orders import TransferOrders
2
+from ._transfer_order import TransferOrder
3
-__all__ = ['TransferOrders']
4
+__all__ = ['TransferOrders', 'TransferOrder']
specs/namespaces/test_namespaces.py
@@ -69,7 +69,7 @@ def test_expected_paths(client):
69
assert client.airline.destinations is not None
70
assert client.shopping.transfer_offers_search is not None
71
assert client.ordering.transfer_orders is not None
72
- assert client.ordering.transfer_order.transfers.cancellation is not None
+ assert client.ordering.transfer_order is not None
73
74
75
def test_expected_get_methods(client):
0 commit comments