commercetools-sdk-php-v2
The commercetools platform, import-api and PHP sdks generated from our api reference.
Loading...
Searching...
No Matches
DeliveryAddressSetMessage.php
1<?php
2
3declare(strict_types=1);
10
14
16{
17 public const FIELD_DELIVERY_ID = 'deliveryId';
18 public const FIELD_ADDRESS = 'address';
19 public const FIELD_OLD_ADDRESS = 'oldAddress';
20 public const FIELD_SHIPPING_KEY = 'shippingKey';
21
28 public function getDeliveryId();
29
36 public function getAddress();
37
44 public function getOldAddress();
45
52 public function getShippingKey();
53
57 public function setDeliveryId(?string $deliveryId): void;
58
62 public function setAddress(?Address $address): void;
63
67 public function setOldAddress(?Address $oldAddress): void;
68
72 public function setShippingKey(?string $shippingKey): void;
73}