BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
app.imagivibe.com
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Request
📤 Upload
📝 New File
📁 New Folder
Close
Editing: CreateCrossBookingRequest.php
<?php namespace Iyzipay\Request; use Iyzipay\JsonBuilder; use Iyzipay\Request; use Iyzipay\RequestStringBuilder; class CreateCrossBookingRequest extends Request { private $subMerchantKey; private $price; private $reason; private $currency; public function getSubMerchantKey() { return $this->subMerchantKey; } public function setSubMerchantKey($subMerchantKey) { $this->subMerchantKey = $subMerchantKey; } public function getPrice() { return $this->price; } public function setPrice($price) { $this->price = $price; } public function getReason() { return $this->reason; } public function setReason($reason) { $this->reason = $reason; } public function getCurrency() { return $this->currency; } public function setCurrency($currency) { $this->currency = $currency; } public function getJsonObject() { return JsonBuilder::fromJsonObject(parent::getJsonObject()) ->add("subMerchantKey", $this->getSubMerchantKey()) ->addPrice("price", $this->getPrice()) ->add("reason", $this->getReason()) ->add("currency", $this->getCurrency()) ->getObject(); } public function toPKIRequestString() { return RequestStringBuilder::create() ->appendSuper(parent::toPKIRequestString()) ->append("subMerchantKey", $this->getSubMerchantKey()) ->appendPrice("price", $this->getPrice()) ->append("reason", $this->getReason()) ->append("currency", $this->getCurrency()) ->getRequestString(); } }
Save
Cancel