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