for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Audiens\AppnexusClient\entity;
/**
* Class MemberDataSharingSegment
*/
class MemberDataSharingSegment
{
use HydratableTrait;
/** @var string */
protected $id;
protected $name;
* @return mixed
public function getId()
return $this->id;
}
* @param string $id
public function setId($id)
$this->id = $id;
public function getName()
return $this->name;
* @param mixed $name
public function setName($name)
$this->name = $name;