WC_REST_Order_Notes_V2_Controller::get_collection_params() public WC 1.0
Get the query params for collections.
{} It's a method of the class: WC_REST_Order_Notes_V2_Controller{}
No Hooks.
Return
Array.
Usage
$WC_REST_Order_Notes_V2_Controller = new WC_REST_Order_Notes_V2_Controller(); $WC_REST_Order_Notes_V2_Controller->get_collection_params();
Code of WC_REST_Order_Notes_V2_Controller::get_collection_params() WC REST Order Notes V2 Controller::get collection params WC 5.0.0
public function get_collection_params() {
$params = array();
$params['context'] = $this->get_context_param( array( 'default' => 'view' ) );
$params['type'] = array(
'default' => 'any',
'description' => __( 'Limit result to customers or internal notes.', 'woocommerce' ),
'type' => 'string',
'enum' => array( 'any', 'customer', 'internal' ),
'sanitize_callback' => 'sanitize_key',
'validate_callback' => 'rest_validate_request_arg',
);
return $params;
}