| @@ 5-73 (lines=69) @@ | ||
| 2 | ||
| 3 | namespace GroupByInc\API\Model; |
|
| 4 | ||
| 5 | class Bias |
|
| 6 | { |
|
| 7 | ||
| 8 | /** @var string */ |
|
| 9 | private $name; |
|
| 10 | ||
| 11 | /** @var string */ |
|
| 12 | private $content; |
|
| 13 | ||
| 14 | /** @var string */ |
|
| 15 | private $strength; |
|
| 16 | ||
| 17 | /** |
|
| 18 | * @return string |
|
| 19 | */ |
|
| 20 | public function getName() |
|
| 21 | { |
|
| 22 | return $this->name; |
|
| 23 | } |
|
| 24 | ||
| 25 | /** |
|
| 26 | * @param string $name |
|
| 27 | * |
|
| 28 | * @return Bias |
|
| 29 | */ |
|
| 30 | public function setName($name) |
|
| 31 | { |
|
| 32 | $this->name = $name; |
|
| 33 | return $this; |
|
| 34 | } |
|
| 35 | ||
| 36 | /** |
|
| 37 | * @return string |
|
| 38 | */ |
|
| 39 | public function getContent() |
|
| 40 | { |
|
| 41 | return $this->content; |
|
| 42 | } |
|
| 43 | ||
| 44 | /** |
|
| 45 | * @param string $content |
|
| 46 | * |
|
| 47 | * @return Bias |
|
| 48 | */ |
|
| 49 | public function setContent($content) |
|
| 50 | { |
|
| 51 | $this->content = $content; |
|
| 52 | return $this; |
|
| 53 | } |
|
| 54 | ||
| 55 | /** |
|
| 56 | * @return string |
|
| 57 | */ |
|
| 58 | public function getStrength() |
|
| 59 | { |
|
| 60 | return $this->strength; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @param string $strength |
|
| 65 | * |
|
| 66 | * @return Bias |
|
| 67 | */ |
|
| 68 | public function setStrength($strength) |
|
| 69 | { |
|
| 70 | $this->strength = $strength; |
|
| 71 | return $this; |
|
| 72 | } |
|
| 73 | } |
|
| 74 | ||
| @@ 5-73 (lines=69) @@ | ||
| 2 | ||
| 3 | namespace GroupByInc\API\Request; |
|
| 4 | ||
| 5 | class Bias |
|
| 6 | { |
|
| 7 | ||
| 8 | /** @var string */ |
|
| 9 | private $name; |
|
| 10 | ||
| 11 | /** @var string */ |
|
| 12 | private $content; |
|
| 13 | ||
| 14 | /** @var string */ |
|
| 15 | private $strength; |
|
| 16 | ||
| 17 | /** |
|
| 18 | * @return string |
|
| 19 | */ |
|
| 20 | public function getName() |
|
| 21 | { |
|
| 22 | return $this->name; |
|
| 23 | } |
|
| 24 | ||
| 25 | /** |
|
| 26 | * @param string $name |
|
| 27 | * |
|
| 28 | * @return Bias |
|
| 29 | */ |
|
| 30 | public function setName($name) |
|
| 31 | { |
|
| 32 | $this->name = $name; |
|
| 33 | return $this; |
|
| 34 | } |
|
| 35 | ||
| 36 | /** |
|
| 37 | * @return string |
|
| 38 | */ |
|
| 39 | public function getContent() |
|
| 40 | { |
|
| 41 | return $this->content; |
|
| 42 | } |
|
| 43 | ||
| 44 | /** |
|
| 45 | * @param string $content |
|
| 46 | * |
|
| 47 | * @return Bias |
|
| 48 | */ |
|
| 49 | public function setContent($content) |
|
| 50 | { |
|
| 51 | $this->content = $content; |
|
| 52 | return $this; |
|
| 53 | } |
|
| 54 | ||
| 55 | /** |
|
| 56 | * @return string |
|
| 57 | */ |
|
| 58 | public function getStrength() |
|
| 59 | { |
|
| 60 | return $this->strength; |
|
| 61 | } |
|
| 62 | ||
| 63 | /** |
|
| 64 | * @param string $strength |
|
| 65 | * |
|
| 66 | * @return Bias |
|
| 67 | */ |
|
| 68 | public function setStrength($strength) |
|
| 69 | { |
|
| 70 | $this->strength = $strength; |
|
| 71 | return $this; |
|
| 72 | } |
|
| 73 | } |
|
| 74 | ||