Automattic\WooCommerce\StoreApi\Routes\V1
CartCouponsByCode::get_args()
Get method arguments for this REST route.
Method of the class: CartCouponsByCode{}
No Hooks.
Return
Array
. An array of endpoints.
Usage
$CartCouponsByCode = new CartCouponsByCode(); $CartCouponsByCode->get_args();
CartCouponsByCode::get_args() CartCouponsByCode::get args code WC 9.3.3
public function get_args() { return [ 'args' => [ 'code' => [ 'description' => __( 'Unique identifier for the coupon within the cart.', 'woocommerce' ), 'type' => 'string', ], ], [ '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::DELETABLE, 'callback' => [ $this, 'get_response' ], 'permission_callback' => '__return_true', ], 'schema' => [ $this->schema, 'get_public_item_schema' ], 'allow_batch' => [ 'v1' => true ], ]; }