for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Yandex\Market\Partner\Models;
use Yandex\Common\Model;
class Buyer extends Model
{
protected $id = null;
protected $lastName = null;
protected $firstName = null;
protected $middleName = null;
protected $phone = null;
protected $email = null;
protected $mappingClasses = [];
protected $propNameMap = [];
/**
* Retrieve the id property
*
* @return string|null
*/
public function getId()
return $this->id;
}
* Retrieve the lastName property
public function getLastName()
return $this->lastName;
* Retrieve the firstName property
public function getFirstName()
return $this->firstName;
* Retrieve the middleName property
public function getMiddleName()
return $this->middleName;
* Retrieve the phone property
public function getPhone()
return $this->phone;
* Retrieve the email property
public function getEmail()
return $this->email;