WC_Order_Item_Product_Data_Store_Interface{} WC 1.0
WC Order Item Data Store Interface
Functions that must be defined by order item store classes.
No Hooks.
Return
Null. Nothing.
Usage
$WC_Order_Item_Product_Data_Store_Interface = new WC_Order_Item_Product_Data_Store_Interface(); // use class methods
Methods
Code of WC_Order_Item_Product_Data_Store_Interface{} WC Order Item Product Data Store Interface{} WC 5.0.0
interface WC_Order_Item_Product_Data_Store_Interface {
/**
* Get a list of download IDs for a specific item from an order.
*
* @param WC_Order_Item $item Item object.
* @param WC_Order $order Order object.
* @return array
*/
public function get_download_ids( $item, $order );
}