for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Genkgo\Camt\DTO;
/**
* Class CreditorReferenceInformation
* @package Genkgo\Camt\DTO
*/
class CreditorReferenceInformation
{
* @var string
private $ref;
private $code;
private $proprietary;
* @return string
public function getRef()
return $this->ref;
}
* @param string $ref
public function setRef($ref)
$this->ref = $ref;
* @param $ref
*
* @return static
public static function fromUnstructured($ref)
$information = new static;
$information->ref = $ref;
return $information;
public function getProprietary()
return $this->proprietary;
* @param string $proprietary
public function setProprietary($proprietary)
$this->proprietary = $proprietary;
public function getCode()
return $this->code;
* @param string $code
public function setCode($code)
$this->code = $code;