Returns the URL to redirect to after checkout is complete.
#### _Returns_
-`string`: URL to redirect to.
### getExtensionData
Returns the extra data registered by extensions.
#### _Returns_
-`Object`: Extra data registered by extensions.
```js
{
[ extensionNamespace ]: {
[ key ]: value,
},
}
```
### getCheckoutStatus
Returns the current status of the checkout process.
#### _Returns_
-`string`: Current status of the checkout process. Possible values are: `pristine`, `before-processing`, `processing`, `after-processing`, `complete`, `idle`.
### getShouldCreateAccount
Returns true if the shopper has opted to create an account with their order.
#### _Returns_
-`boolean`: True if the shopper has opted to create an account with their order.
### getUseShippingAsBilling
Returns true if the shopper has opted to use their shipping address as their billing address.
#### _Returns_
-`boolean`: True if the shipping address should be used as the billing address.
When the checkout status is `IDLE` this flag is true. Checkout will be this status after any change to checkout state after the block is loaded. It will also be this status when retrying a purchase is possible after processing happens with an error.
When the checkout status is `PROCESSING` this flag is true. Checkout will be this status when all the observers on the event emitted with the `BEFORE_PROCESSING` status are completed without error. It is during this status that the block will be sending a request to the server on the checkout endpoint for processing the order.
When the checkout status is `AFTER_PROCESSING` this flag is true. Checkout will have this status after the the block receives the response from the server side processing request.
When the checkout status is `COMPLETE` this flag is true. Checkout will have this status after all observers on the events emitted during the `AFTER_PROCESSING` status are completed successfully. When checkout is at this status, the shopper's browser will be redirected to the value of `redirectUrl` at that point (usually the `order-received` route).
This is true when the total is being re-calculated for the order. There are numerous things that might trigger a recalculation of the total: coupons being added or removed, shipping rates updated, shipping rate selected etc. This flag consolidates all activity that might be occurring (including requests to the server that potentially affect calculation of totals). So instead of having to check each of those individual states you can reliably just check if this boolean is true (calculating) or false (not calculating).
🐞 Found a mistake, or have a suggestion? [Leave feedback about this document here.](https://github.com/woocommerce/woocommerce-blocks/issues/new?assignees=&labels=type%3A+documentation&template=--doc-feedback.md&title=Feedback%20on%20./docs/third-party-developers/extensibility/data-store/checkout.md)