You are reading the documentation for SDK v2, which is no longer the latest version. Switch to current
SetCartShippingAddressParams
Parameters for setting cart shipping address.
export interface SetCartShippingAddressParams {
address: SetCartShippingAddress["address"];
cartId: ApiUpdateCartParams["id"];
cartVersion: ApiUpdateCartParams["version"];
versionFallback?: ApiUpdateCartParams["versionFallback"];
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
address | Required | SetCartShippingAddress["address"] | Shipping address to be set for cart. |
cartId | Required | ApiUpdateCartParams["id"] | ID of the cart to set the shipping address for. |
cartVersion | Required | ApiUpdateCartParams["version"] | Version of the cart to set the shipping address for. |
versionFallback | Optional | ApiUpdateCartParams["versionFallback"] | Flag enabling request retry in case of a ConcurrentModification error. |