ShippingCost¶
The ShippingCost object represents data of shipping method and its price.
classDiagram
direction LR
ShippingCost --> Price
ShippingCost --> Shipping
class ShippingCost{
Price price
Shipping shipping
}
Properties¶
Attribute name | Type | Description |
---|---|---|
price | Price |
The Price object representing the price of the shipping method. |
shipping | Shipping |
The Shipping object representing the shipping data. |