interface ShippingCosts {
    overallPrice: number;
    packaging: ShopPackaging;
    transport: ShopTransport;
}

Properties

overallPrice: number
packaging: ShopPackaging
transport: ShopTransport