Interface OrderHistory
- All Known Implementing Classes:
OrderHistoryImpl
public interface OrderHistory
Client interface for accessing order history in the Equinix Customer Portal.
Provides read-only operations to list and retrieve historical order records
including completed, cancelled, and in-progress orders.
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves a specific order history item by its unique identifier.list()Lists all order history items for the current account.
-
Method Details
-
list
PaginatedList<OrderHistoryItem> list()Lists all order history items for the current account.- Returns:
- a paginated list of order history items
-
getByUuid
Retrieves a specific order history item by its unique identifier.- Parameters:
uuid- the unique identifier of the order history item- Returns:
- the matching order history item
-