Iyzipay\Request\CreateCheckoutFormInitializeRequest::getJsonObject PHP 메소드

getJsonObject() 공개 메소드

public getJsonObject ( )
    public function getJsonObject()
    {
        return JsonBuilder::fromJsonObject(parent::getJsonObject())->addPrice("price", $this->getPrice())->add("basketId", $this->getBasketId())->add("paymentGroup", $this->getPaymentGroup())->add("buyer", $this->getBuyer())->add("shippingAddress", $this->getShippingAddress())->add("billingAddress", $this->getBillingAddress())->addArray("basketItems", $this->getBasketItems())->add("callbackUrl", $this->getCallbackUrl())->add("paymentSource", $this->getPaymentSource())->add("currency", $this->getCurrency())->add("posOrderId", $this->getPosOrderId())->addPrice("paidPrice", $this->getPaidPrice())->add("forceThreeDS", $this->getForceThreeDS())->add("cardUserKey", $this->getCardUserKey())->addArray("enabledInstallments", $this->getEnabledInstallments())->getObject();
    }