Automattic\WooCommerce\Blocks\StoreApi\Routes
RouteInterface{} WC 1.0
RouteInterface.
No Hooks.
Return
Null. Nothing.
Usage
$RouteInterface = new RouteInterface(); // use class methods
Methods
Code of RouteInterface{} RouteInterface{} WC 5.0.0
interface RouteInterface {
/**
* Get the namespace for this route.
*
* @return string
*/
public function get_namespace();
/**
* Get the path of this REST route.
*
* @return string
*/
public function get_path();
/**
* Get arguments for this REST route.
*
* @return array An array of endpoints.
*/
public function get_args();
}