MagentoListShippingMethodsResponse
import { MagentoListShippingMethodsResponse } from '@daffodil/cart/driver/magento'
interface MagentoListShippingMethodsResponse {
cart: {
__typename: string;
id: MagentoCart['id'];
shipping_addresses: {
__typename: string;
available_shipping_methods: MagentoCartShippingMethod[];
}[];
}
}
Properties
Name | Type | Description |
---|---|---|
cart | { __typename: string; id: MagentoCart['id']; shipping_addresses: { __typename: string; available_shipping_methods: MagentoCartShippingMethod[]; }[]; } |