Iyzipay\Request\CreatePaymentRequest::toPKIRequestString PHP Метод

toPKIRequestString() публичный Метод

public toPKIRequestString ( )
    public function toPKIRequestString()
    {
        return RequestStringBuilder::create()->appendSuper(parent::toPKIRequestString())->appendPrice("price", $this->getPrice())->appendPrice("paidPrice", $this->getPaidPrice())->append("installment", $this->getInstallment())->append("paymentChannel", $this->getPaymentChannel())->append("basketId", $this->getBasketId())->append("paymentGroup", $this->getPaymentGroup())->append("paymentCard", $this->getPaymentCard())->append("buyer", $this->getBuyer())->append("shippingAddress", $this->getShippingAddress())->append("billingAddress", $this->getBillingAddress())->appendArray("basketItems", $this->getBasketItems())->append("paymentSource", $this->getPaymentSource())->append("currency", $this->getCurrency())->append("posOrderId", $this->getPosOrderId())->append("connectorName", $this->getConnectorName())->append("callbackUrl", $this->getCallbackUrl())->getRequestString();
    }