JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "SubscriptionCreateCustomerRequest.php"
Full Path: /var/www/laravel_filter/vendor/iyzico/iyzipay-php/src/Iyzipay/Request/Subscription/SubscriptionCreateCustomerRequest.php
File size: 680 bytes
MIME-type: text/x-php
Charset: utf-8
<?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();
}
}