Automattic\WooCommerce\StoreApi\Routes\V1

Checkout::get_route_response()protectedWC 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.

Return

\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 8.7.0

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