> ## Documentation Index
> Fetch the complete documentation index at: https://docs-test.rye.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# SubmitStoreResult

> Represents the result of submitting a store within a cart.

## Fields

***

<ParamField path="store" type={<><a href="/docs/api-reference/store">Store!</a></>} required>
  This field represents the store's information for which the cart submission result is provided.
</ParamField>

<ParamField path="status" type={<><a href="/docs/api-reference/submitstorestatus">SubmitStoreStatus!</a></>} required>
  This non-null field is an enumeration that represents the status of the checkout process for the store.
</ParamField>

<ParamField path="orderId" type={<>ID!</>} required>
  This field represents the order ID of the order created during the checkout process. It can be used for tracking or troubleshooting purposes.
</ParamField>

<ParamField path="requestId" type={<>ID!</>} required>
  **Deprecated**. Use `orderId` instead.
</ParamField>

<ParamField path="isSubmitted" type={<>Boolean!</>} required>
  True if the store items ended up with a successful checkout
</ParamField>

<ParamField path="errors" type={<><a href="/docs/api-reference/submitstoreresulterror">SubmitStoreResultError!</a></>} required>
  Store submit errors.
</ParamField>

## Related types

* [`SubmitCartData`](/docs/api-reference/submitcartdata)
