for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Genkgo\Camt\Camt052\DTO;
use Genkgo\Camt\DTO\Account;
/**
* Class UPICAccount
* @package Genkgo\Camt\Camt052
*/
class UPICAccount extends Account
{
* @var string
private $upic;
* @param string $upic
public function __construct($upic)
$this->upic = $upic;
}
* @return string
public function getUpic()
return (string) $this->upic;
* {@inheritdoc}
public function getIdentification()