JFIF  x x C         C     "        } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz        w !1AQ aq"2B #3Rbr{ gilour
<?php namespace Iyzipay\Request\Subscription; use Iyzipay\JsonBuilder; use Iyzipay\Request; use Iyzipay\Model\Customer; class SubscriptionCreateCustomerRequest extends Request { private $customer; public function __construct() { $this->customer = new Customer(); } public function getCustomer() { return $this->customer; } public function setCustomer(Customer $customer) { $this->customer = $customer; } public function getJsonObject() { return JsonBuilder::fromJsonObject($this->getCustomer()->getJsonObject($this->getLocale(),$this->getConversationId())) ->getObject(); } }