123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Sales\Api\Data;
- /**
- * Shipment Track Creation interface.
- *
- * @api
- * @since 100.1.2
- */
- interface TrackInterface
- {
- /**
- * Sets the track number for the shipment package.
- *
- * @param string $trackNumber
- * @return $this
- * @since 100.1.2
- */
- public function setTrackNumber($trackNumber);
- /**
- * Gets the track number for the shipment package.
- *
- * @return string Track number.
- * @since 100.1.2
- */
- public function getTrackNumber();
- /**
- * Sets the title for the shipment package.
- *
- * @param string $title
- * @return $this
- * @since 100.1.2
- */
- public function setTitle($title);
- /**
- * Gets the title for the shipment package.
- *
- * @return string Title.
- * @since 100.1.2
- */
- public function getTitle();
- /**
- * Sets the carrier code for the shipment package.
- *
- * @param string $code
- * @return $this
- * @since 100.1.2
- */
- public function setCarrierCode($code);
- /**
- * Gets the carrier code for the shipment package.
- *
- * @return string Carrier code.
- * @since 100.1.2
- */
- public function getCarrierCode();
- }
|