for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Genkgo\Camt\DTO;
/**
* Class UnstructuredRemittanceInformation
* @package Genkgo\Camt\DTO
*/
class UnstructuredRemittanceInformation
{
* @var string
private $message;
* @param string $message
public function __construct($message)
$this->message = $message;
}
* @return string
public function getMessage()
return $this->message;
public function setMessage($message)