📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
iyzipay
/
src
/
Iyzipay
/
Request
📝
CreateCardRequest.php
← Geri Dön
<?php namespace Iyzipay\Request; use Iyzipay\JsonBuilder; use Iyzipay\Request; use Iyzipay\RequestStringBuilder; class CreateCardRequest extends Request { private $externalId; private $email; private $cardUserKey; private $card; public function getExternalId() { return $this->externalId; } public function setExternalId($externalId) { $this->externalId = $externalId; } public function getEmail() { return $this->email; } public function setEmail($email) { $this->email = $email; } public function getCardUserKey() { return $this->cardUserKey; } public function setCardUserKey($cardUserKey) { $this->cardUserKey = $cardUserKey; } public function getCard() { return $this->card; } public function setCard($card) { $this->card = $card; } public function getJsonObject() { return JsonBuilder::fromJsonObject(parent::getJsonObject()) ->add("externalId", $this->getExternalId()) ->add("email", $this->getEmail()) ->add("cardUserKey", $this->getCardUserKey()) ->add("card", $this->getCard()) ->getObject(); } public function toPKIRequestString() { return RequestStringBuilder::create() ->appendSuper(parent::toPKIRequestString()) ->append("externalId", $this->getExternalId()) ->append("email", $this->getEmail()) ->append("cardUserKey", $this->getCardUserKey()) ->append("card", $this->getCard()) ->getRequestString(); } }
💾 Kaydet
İptal
📝 Yeniden Adlandır
İptal
Kaydet
🔐 Dosya İzinleri (chmod)
İzin Değeri:
Hızlı Seçim:
777
755
644
600
777
= Herkes okur/yazar/çalıştırır
755
= Sahip tam, diğerleri okur/çalıştırır
644
= Sahip okur/yazar, diğerleri okur
600
= Sadece sahip okur/yazar
İptal
Uygula