UpdateCartParameters
Definition of update cart request parameters.
interface UpdateCartParameters {
data?: {
customer_id: number;
};
id: string;
include?: CartIncludeEnum;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
data | Optional | { customer_id: number; } | The updated value for customer_id. |
id | Required | string | ID of the cart. |
include | Optional | CartIncludeEnum | Indicates whether to include cart sub-resources. |