Automattic\WooCommerce\Blocks\StoreApi\Routes
Checkout::get_route_update_response() protected WC 1.0
Update the current order.
{} It's a method of the class: Checkout{}
No Hooks.
Return
WP_REST_Response.
Usage
// protected - for code of main (parent) or child class $result = $this->get_route_update_response( $request );
- $request(WP_REST_Request) (required)
- Request object.
Code of Checkout::get_route_update_response() Checkout::get route update response WC 5.0.0
protected function get_route_update_response( WP_REST_Request $request ) {
$this->update_customer_from_request( $request );
$this->create_or_update_draft_order();
$this->update_order_from_request( $request );
return $this->prepare_item_for_response(
(object) [
'order' => $this->order,
'payment_result' => new PaymentResult(),
],
$request
);
}