@@ -14,6 +14,9 @@ def initialize(client, version = DEFAULT_VERSION)
1414 end
1515
1616 # Assign terminals
17+ #
18+ # Deprecated since POS Terminal Management API v1
19+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
1720 def assign_terminals ( request , headers : { } )
1821 endpoint = '/assignTerminals' . gsub ( /{.+?}/ , '%s' )
1922 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -24,6 +27,9 @@ def assign_terminals(request, headers: {})
2427 end
2528
2629 # Get the account or store of a terminal
30+ #
31+ # Deprecated since POS Terminal Management API v1
32+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
2733 def find_terminal ( request , headers : { } )
2834 endpoint = '/findTerminal' . gsub ( /{.+?}/ , '%s' )
2935 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -34,6 +40,9 @@ def find_terminal(request, headers: {})
3440 end
3541
3642 # Get the stores of an account
43+ #
44+ # Deprecated since POS Terminal Management API v1
45+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
3746 def get_stores_under_account ( request , headers : { } )
3847 endpoint = '/getStoresUnderAccount' . gsub ( /{.+?}/ , '%s' )
3948 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -44,6 +53,9 @@ def get_stores_under_account(request, headers: {})
4453 end
4554
4655 # Get the details of a terminal
56+ #
57+ # Deprecated since POS Terminal Management API v1
58+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
4759 def get_terminal_details ( request , headers : { } )
4860 endpoint = '/getTerminalDetails' . gsub ( /{.+?}/ , '%s' )
4961 endpoint = endpoint . gsub ( %r{^/} , '' )
@@ -54,6 +66,9 @@ def get_terminal_details(request, headers: {})
5466 end
5567
5668 # Get the list of terminals
69+ #
70+ # Deprecated since POS Terminal Management API v1
71+ # Use [Management API](https://docs.adyen.com/api-explorer/Management/latest/overview).
5772 def get_terminals_under_account ( request , headers : { } )
5873 endpoint = '/getTerminalsUnderAccount' . gsub ( /{.+?}/ , '%s' )
5974 endpoint = endpoint . gsub ( %r{^/} , '' )
0 commit comments