Skip to content

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.

Examples

id property

{{ shipping.id }}
1

name property

{{ shipping.name }}
DHL

description property

{{ shipping.description }}
Delivery by courier

isPersonalCollect property

{{ shipping.isPersonalCollect }}
false

isToAddressDelivery property

{{ shipping.isToAddressDelivery }}
true

isPickupPointDelivery property

{{ shipping.isPickupPointDelivery }}
false