📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv3.demodesign.com.tr
/
iyzipay
/
src
/
Iyzipay
/
Model
📝
BkmInstallment.php
← Geri Dön
<?php namespace Iyzipay\Model; use Iyzipay\BaseModel; use Iyzipay\JsonBuilder; use Iyzipay\RequestStringBuilder; class BkmInstallment extends BaseModel { private $bankId; private $installmentPrices; public function getBankId() { return $this->bankId; } public function setBankId($bankId) { $this->bankId = $bankId; } public function getInstallmentPrices() { return $this->installmentPrices; } public function setInstallmentPrices($installmentPrices) { $this->installmentPrices = $installmentPrices; } public function getJsonObject() { return JsonBuilder::create() ->add("bankId", $this->getBankId()) ->addArray("installmentPrices", $this->getInstallmentPrices()) ->getObject(); } public function toPKIRequestString() { return RequestStringBuilder::create() ->append("bankId", $this->getBankId()) ->appendArray("installmentPrices", $this->getInstallmentPrices()) ->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