Shipping¶
The Shipping object represents data of shipping method.
classDiagram
direction LR
class Shipping{
int id
string name
string description
bool isPersonalCollect
bool isToAddressDelivery
bool isPickupPointDelivery
}
Properties¶
| Attribute name | Type | Description |
|---|---|---|
| id | int |
Shipping method id. |
| name | string |
Shipping method name. |
| description | string |
Shipping method description. |
| isPersonalCollect | bool |
If the shipping method is a personal collect type, this setting is set to true. |
| isToAddressDelivery | bool |
If the shipping method is an address delivery type, this setting is set to true. |
| isPickupPointDelivery | bool |
If the shipping method is a pickup point type, this setting is set to true. |