Automattic\WooCommerce\StoreApi\Routes\V1
Checkout::get_route_response
Convert the cart into a new draft order, or update an existing draft order, and return an updated cart response.
Method of the class: Checkout{}
No Hooks.
Returns
\WP_REST_Response.
Usage
// protected - for code of main (parent) or child class $result = $this->get_route_response( $request );
- $request(WP_REST_Request) (required)
- Request object.
Checkout::get_route_response() Checkout::get route response code WC 10.8.1
protected function get_route_response( \WP_REST_Request $request ) {
$this->create_or_update_draft_order( $request );
return $this->prepare_item_for_response(
(object) [
'order' => $this->order,
'payment_result' => new PaymentResult(),
],
$request
);
}