From 2331843c6f8a34a735a1f3c59b9327a3922df4dc Mon Sep 17 00:00:00 2001 From: Luis Cano Date: Sat, 6 Jun 2026 11:28:15 -0500 Subject: [PATCH] Add fecEntregaBienes property and its getter/setter methods to Shipment class --- src/Core/Model/Despatch/Shipment.php | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/src/Core/Model/Despatch/Shipment.php b/src/Core/Model/Despatch/Shipment.php index 9e39cbf..9cb709a 100644 --- a/src/Core/Model/Despatch/Shipment.php +++ b/src/Core/Model/Despatch/Shipment.php @@ -85,6 +85,12 @@ class Shipment * @var DateTime */ private $fecTraslado; + /** + * Fecha de entrega de bienes al transportista. + * + * @var DateTime + */ + private $fecEntregaBienes; /** * Numero de Contenedor (Motivo Importación). * @@ -352,6 +358,26 @@ public function setFecTraslado(?DateTime $fecTraslado): Shipment return $this; } + /** + * @return DateTime + */ + public function getFecEntregaBienes(): ?DateTime + { + return $this->fecEntregaBienes; + } + + /** + * @param DateTime $fecEntregaBienes + * + * @return Shipment + */ + public function setFecEntregaBienes(?DateTime $fecEntregaBienes): Shipment + { + $this->fecEntregaBienes = $fecEntregaBienes; + + return $this; + } + /** * @return string */