Automattic\WooCommerce\StoreApi\Routes\V1

Checkout::get_route_responseprotectedWC 1.0

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() code WC 9.9.3

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
	);
}