/notes endpoint. * * @author Prospress * @since 2.1 */ if ( ! defined( 'ABSPATH' ) ) { exit; } /** * REST API Subscription Notes controller class. * * @package WooCommerce_Subscriptions/API */ class WC_REST_Subscription_Notes_Controller extends WC_REST_Order_Notes_Controller { /** * Route base. * * @var string */ protected $rest_base = 'subscriptions/(?P[\d]+)/notes'; /** * Post type. * * @var string */ protected $post_type = 'shop_subscription'; }