2020-07-14 13:47:26 +03:00
|
|
|
<?php
|
2021-05-31 16:33:02 +03:00
|
|
|
|
2024-04-29 11:44:31 +03:00
|
|
|
/**
|
|
|
|
* @category RetailCRM
|
|
|
|
* @package RetailCRM\Model
|
|
|
|
* @author RetailCRM <integration@retailcrm.ru>
|
|
|
|
* @license MIT
|
|
|
|
* @link http://retailcrm.ru
|
|
|
|
* @see http://retailcrm.ru/docs
|
|
|
|
*/
|
|
|
|
|
2020-07-14 13:47:26 +03:00
|
|
|
/**
|
|
|
|
* Class BuyerProfile
|
2024-04-29 11:44:31 +03:00
|
|
|
*
|
|
|
|
* @category RetailCRM
|
|
|
|
* @package RetailCRM\Model
|
2020-07-14 13:47:26 +03:00
|
|
|
*/
|
|
|
|
class BuyerProfile extends BaseModel
|
|
|
|
{
|
|
|
|
/**@var string $NAME */
|
|
|
|
protected $NAME;
|
|
|
|
|
|
|
|
/**@var string $USER_ID */
|
|
|
|
protected $USER_ID;
|
|
|
|
|
|
|
|
/**@var string $PERSON_TYPE_ID */
|
|
|
|
protected $PERSON_TYPE_ID;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param string $NAME
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setName($NAME)
|
|
|
|
{
|
|
|
|
$this->NAME = $NAME;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $USER_ID
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setUserId($USER_ID)
|
|
|
|
{
|
|
|
|
$this->USER_ID = $USER_ID;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @param int $PERSON_TYPE_ID
|
|
|
|
* @return $this
|
|
|
|
*/
|
|
|
|
public function setPersonTypeId($PERSON_TYPE_ID)
|
|
|
|
{
|
|
|
|
$this->PERSON_TYPE_ID = $PERSON_TYPE_ID;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
}
|