for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types=1);
namespace Ticketpark\SaferpayJson\Response\Container;
use JMS\Serializer\Annotation\SerializedName;
use JMS\Serializer\Annotation\Type;
final class BankAccount
{
/**
* @var string|null
* @SerializedName("Iban")
* @Type("string")
*/
private $iban;
* @SerializedName("HolderName")
private $holderName;
* @SerializedName("BIC")
private $bic;
* @SerializedName("BankName")
private $bankName;
* @SerializedName("CountryCode")
private $countryCode;
public function getIban(): ?string
return $this->iban;
}
public function getHolderName(): ?string
return $this->holderName;
public function getBic(): ?string
return $this->bic;
public function getBankName(): ?string
return $this->bankName;
public function getCountryCode(): ?string
return $this->countryCode;