BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
www
/
app.imagivibe.com
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Model
📤 Upload
📝 New File
📁 New Folder
Close
Editing: BankTransfer.php
<?php namespace Iyzipay\Model; class BankTransfer { private $subMerchantKey; private $iban; private $contactName; private $contactSurname; private $legalCompanyTitle; private $marketplaceSubMerchantType; public function getSubMerchantKey() { return $this->subMerchantKey; } public function setSubMerchantKey($subMerchantKey) { $this->subMerchantKey = $subMerchantKey; } public function getIban() { return $this->iban; } public function setIban($iban) { $this->iban = $iban; } public function getContactName() { return $this->contactName; } public function setContactName($contactName) { $this->contactName = $contactName; } public function getContactSurname() { return $this->contactSurname; } public function setContactSurname($contactSurname) { $this->contactSurname = $contactSurname; } public function getLegalCompanyTitle() { return $this->legalCompanyTitle; } public function setLegalCompanyTitle($legalCompanyTitle) { $this->legalCompanyTitle = $legalCompanyTitle; } public function getMarketplaceSubMerchantType() { return $this->marketplaceSubMerchantType; } public function setMarketplaceSubMerchantType($marketplaceSubMerchantType) { $this->marketplaceSubMerchantType = $marketplaceSubMerchantType; } }
Save
Cancel