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

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

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