Skip to content

Commit 9b85dce

Browse files
Add getter function for CodingText (#94)
* Add getter function for CodingText A getter function for the CodingText property was missing. This has been added. --------- Co-authored-by: Michael Dekker <git@michaeldekker.nl>
1 parent 64b8f23 commit 9b85dce

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

src/Entity/Response/ResponseShipment.php

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,14 @@ public function setWarnings(?array $Warnings): static
244244
return $this;
245245
}
246246

247+
/**
248+
* @return string|null
249+
*/
250+
public function getCodingText(): ?string
251+
{
252+
return $this->CodingText;
253+
}
254+
247255
/**
248256
* @param string|null $CodingText
249257
*

0 commit comments

Comments
 (0)