Skip to content

Commit

Permalink
Add getter function for CodingText (#94)
Browse files Browse the repository at this point in the history
* 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>
  • Loading branch information
ISMHiddeSchuurman and firstred authored Jul 4, 2024
1 parent 64b8f23 commit 9b85dce
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/Entity/Response/ResponseShipment.php
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,14 @@ public function setWarnings(?array $Warnings): static
return $this;
}

/**
* @return string|null
*/
public function getCodingText(): ?string
{
return $this->CodingText;
}

/**
* @param string|null $CodingText
*
Expand Down

0 comments on commit 9b85dce

Please sign in to comment.