WC_REST_Order_Refunds_V2_Controller::get_collection_params()publicWC 1.0

Get the query params for collections.

Method of the class: WC_REST_Order_Refunds_V2_Controller{}

No Hooks.

Return

Array.

Usage

$WC_REST_Order_Refunds_V2_Controller = new WC_REST_Order_Refunds_V2_Controller();
$WC_REST_Order_Refunds_V2_Controller->get_collection_params();

WC_REST_Order_Refunds_V2_Controller::get_collection_params() code WC 8.7.0

public function get_collection_params() {
	$params = parent::get_collection_params();

	unset( $params['status'], $params['customer'], $params['product'] );

	return $params;
}