Iyzipay\Model\Buyer::getJsonObject PHP Method

getJsonObject() public method

public getJsonObject ( )
    public function getJsonObject()
    {
        return JsonBuilder::create()->add("id", $this->getId())->add("name", $this->getName())->add("surname", $this->getSurname())->add("identityNumber", $this->getIdentityNumber())->add("email", $this->getEmail())->add("gsmNumber", $this->getGsmNumber())->add("registrationDate", $this->getRegistrationDate())->add("lastLoginDate", $this->getLastLoginDate())->add("registrationAddress", $this->getRegistrationAddress())->add("city", $this->getCity())->add("country", $this->getCountry())->add("zipCode", $this->getZipCode())->add("ip", $this->getIp())->getObject();
    }