* Reports Exportable Controller Interface
namespace Automattic\WooCommerce\Admin\API\Reports;
if ( ! defined( 'ABSPATH' ) ) {
* WooCommerce Reports exportable controller interface.
interface ExportableInterface {
* Get the column names for export.
* @return array Key value pair of Column ID => Label.
public function get_export_columns();
* Get the column values for export.
* @param array $item Single report item/row.
* @return array Key value pair of Column ID => Value.
public function prepare_item_for_export( $item );