UpdateCartProps
Parameters for updating a cart entry.
interface UpdateCartProps extends BaseProps, BaseUserId {
cartId: string;
entry: OrderEntry;
entryNumber: number;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
cartId | Required | string | Cart identifier: cart code for logged in user, cart guid for anonymous user, current for the last modified cart. |
entry | Required | OrderEntry | Request body parameter that contains details such as the quantity of a product (quantity) and the pickup store name (deliveryPointOfService.name). |
entryNumber | Required | number | An identifier of entry in an array of entries. |