ProductDelivery¶
The ProductDelivery object represents a product delivery duration.
classDiagram
direction LR
ProductDelivery --> TimeDifference
class TimeDifference{
}
class ProductDelivery{
int id
string name
TimeDifference duration
}
Properties¶
Attribute name | Type | Description |
---|---|---|
id | int |
The unique identifier of the product's delivery. |
name | string |
The name of the product's delivery. |
duration | TimeDifference |
The TimeDifference object of the delivery duration. |