Iyzipay\Request\CreateSubMerchantRequest::toPKIRequestString PHP Method

toPKIRequestString() public method

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("subMerchantExternalId", $this->getSubMerchantExternalId())->append("identityNumber", $this->getIdentityNumber())->append("taxNumber", $this->getTaxNumber())->append("subMerchantType", $this->getSubMerchantType())->getRequestString();
    }