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 Error
{
/**
* @var string|null
* @SerializedName("ErrorName")
* @Type("string")
*/
private $errorName;
* @SerializedName("ErrorMessage")
private $errorMessage;
public function getErrorName(): ?string
return $this->errorName;
}
public function getErrorMessage(): ?string
return $this->errorMessage;