| 1 | <?php |
||
| 5 | class cancelShipmentResponse |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var string |
||
| 9 | */ |
||
| 10 | protected $cancelShipmentResult = null; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param string $cancelShipmentResult |
||
| 14 | */ |
||
| 15 | public function __construct($cancelShipmentResult = null) |
||
| 16 | { |
||
| 17 | $this->cancelShipmentResult = $cancelShipmentResult; |
||
| 18 | } |
||
| 19 | |||
| 20 | /** |
||
| 21 | * @return string |
||
| 22 | */ |
||
| 23 | public function getCancelShipmentResult() |
||
| 24 | { |
||
| 25 | return $this->cancelShipmentResult; |
||
| 26 | } |
||
| 27 | |||
| 28 | /** |
||
| 29 | * @param string $cancelShipmentResult |
||
| 30 | * |
||
| 31 | * @return \SmsaSDK\Methods\cancelShipmentResponse |
||
| 32 | */ |
||
| 33 | public function setCancelShipmentResult($cancelShipmentResult) |
||
| 34 | { |
||
| 35 | $this->cancelShipmentResult = $cancelShipmentResult; |
||
| 36 | |||
| 37 | return $this; |
||
| 38 | } |
||
| 39 | } |
||
| 40 |