UpdateCartParams
Parameters for the updateCart API endpoint
interface UpdateCartParams {
actions: MyCartUpdateAction[];
id: string;
version: number | string;
versionFallback?: boolean;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
actions | Required | MyCartUpdateAction[] | Operations to be performed on the cart |
id | Required | string | Cart ID |
version | Required | number | string | Cart version |
versionFallback | Optional | boolean | Should the request be retried if there was a cart version mismatch |