PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
iyzico
/
iyzipay-php
/
src
/
Iyzipay
/
Request
/
Editing: ReportingPaymentDetailRequest.php
<?php namespace Iyzipay\Request; use Iyzipay\JsonBuilder; use Iyzipay\Request; class ReportingPaymentDetailRequest extends Request { private $paymentConversationId = null; private $paymentId = null; public function getPaymentConversationId() { return $this->paymentConversationId; } public function setPaymentConversationId($paymentConversationId) { $this->paymentConversationId = $paymentConversationId; } public function getPaymentId() { return $this->paymentId; } public function setPaymentId($paymentId) { $this->paymentId = $paymentId; } public function getJsonObject() { return JsonBuilder::fromJsonObject(parent::getJsonObject()) ->add("paymentConversationId", $this->getPaymentConversationId()) ->add('paymentId', $this->getPaymentId()) ->getObject(); } }
SAVE
CANCEL