Iyzipay\Request\CreateSubMerchantRequest::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("subMerchantExternalId", $this->getSubMerchantExternalId())->add("identityNumber", $this->getIdentityNumber())->add("taxNumber", $this->getTaxNumber())->add("subMerchantType", $this->getSubMerchantType())->getObject();
    }