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

getJsonObject() 공개 메소드

public getJsonObject ( )
    public function getJsonObject()
    {
        return JsonBuilder::fromJsonObject(parent::getJsonObject())->add("name", $this->getName())->add("email", $this->getEmail())->add("gsmNumber", $this->getGsmNumber())->add("address", $this->getAddress())->add("iban", $this->getIban())->add("taxOffice", $this->getTaxOffice())->add("contactName", $this->getContactName())->add("contactSurname", $this->getContactSurname())->add("legalCompanyTitle", $this->getLegalCompanyTitle())->add("swiftCode", $this->getSwiftCode())->add("currency", $this->getCurrency())->add("subMerchantKey", $this->getSubMerchantKey())->add("identityNumber", $this->getIdentityNumber())->add("taxNumber", $this->getTaxNumber())->getObject();
    }