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

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

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