📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv6.demodesign.com.tr
/
iyzipay-php-master
/
src
/
Iyzipay
/
Model
📝
CardList.php
← Geri Dön
<?php namespace Iyzipay\Model; use Iyzipay\IyzipayResource; use Iyzipay\Model\Mapper\CardListMapper; use Iyzipay\Options; use Iyzipay\Request\RetrieveCardListRequest; class CardList extends IyzipayResource { private $cardUserKey; private $cardDetails; public static function retrieve(RetrieveCardListRequest $request, Options $options) { $rawResult = parent::httpClient()->post($options->getBaseUrl() . "/cardstorage/cards", parent::getHttpHeaders($request, $options), $request->toJsonString()); return CardListMapper::create($rawResult)->jsonDecode()->mapCardList(new CardList()); } public function getCardUserKey() { return $this->cardUserKey; } public function setCardUserKey($cardUserKey) { $this->cardUserKey = $cardUserKey; } public function getCardDetails() { return $this->cardDetails; } public function setCardDetails($cardDetails) { $this->cardDetails = $cardDetails; } }
💾 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