for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Ticketpark\SaferpayJson\Request\Container;
use JMS\Serializer\Annotation\SerializedName;
use JMS\Serializer\Annotation\Type;
final class MastercardIssuerInstallments
{
/**
* @var ChosenPlan|null
* @SerializedName("ChosenPlan")
* @Type("array")
*/
private $chosenPlan;
public function getChosenPlan(): ?ChosenPlan
return $this->chosenPlan;
}
public function setChosenPlan(?ChosenPlan $chosenPlan): self
$this->chosenPlan = $chosenPlan;
return $this;