📁 PHP Dosya Yöneticisi
/
/
home
/
demodesigncom
/
e-ticaretv5.demodesign.com.tr
/
iyzipay-php-master
/
src
/
Iyzipay
/
Model
📝
Address.php
← Geri Dön
<?php namespace Iyzipay\Model; use Iyzipay\BaseModel; use Iyzipay\JsonBuilder; use Iyzipay\RequestStringBuilder; class Address extends BaseModel { private $address; private $zipCode; private $contactName; private $city; private $country; public function getAddress() { return $this->address; } public function setAddress($address) { $this->address = $address; } public function getZipCode() { return $this->zipCode; } public function setZipCode($zipCode) { $this->zipCode = $zipCode; } public function getContactName() { return $this->contactName; } public function setContactName($contactName) { $this->contactName = $contactName; } public function getCity() { return $this->city; } public function setCity($city) { $this->city = $city; } public function getCountry() { return $this->country; } public function setCountry($country) { $this->country = $country; } public function getJsonObject() { return JsonBuilder::create() ->add("address", $this->getAddress()) ->add("zipCode", $this->getZipCode()) ->add("contactName", $this->getContactName()) ->add("city", $this->getCity()) ->add("country", $this->getCountry()) ->getObject(); } public function toPKIRequestString() { return RequestStringBuilder::create() ->append("address", $this->getAddress()) ->append("zipCode", $this->getZipCode()) ->append("contactName", $this->getContactName()) ->append("city", $this->getCity()) ->append("country", $this->getCountry()) ->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