Automattic\WooCommerce\StoreApi\Routes\V1
CartCoupons::get_args()
Get method arguments for this REST route.
Method of the class: CartCoupons{}
No Hooks.
Return
Array
. An array of endpoints.
Usage
$CartCoupons = new CartCoupons(); $CartCoupons->get_args();
CartCoupons::get_args() CartCoupons::get args code WC 9.3.3
public function get_args() { return [ [ 'methods' => \WP_REST_Server::READABLE, 'callback' => [ $this, 'get_response' ], 'permission_callback' => '__return_true', 'args' => [ 'context' => $this->get_context_param( [ 'default' => 'view' ] ), ], ], [ 'methods' => \WP_REST_Server::CREATABLE, 'callback' => [ $this, 'get_response' ], 'permission_callback' => '__return_true', 'args' => $this->schema->get_endpoint_args_for_item_schema( \WP_REST_Server::CREATABLE ), ], [ 'methods' => \WP_REST_Server::DELETABLE, 'permission_callback' => '__return_true', 'callback' => [ $this, 'get_response' ], ], 'schema' => [ $this->schema, 'get_public_item_schema' ], 'allow_batch' => [ 'v1' => true ], ]; }