| @@ 20-88 (lines=69) @@ | ||
| 17 | ||
| 18 | namespace GroupByInc\API\Model; |
|
| 19 | ||
| 20 | class Bias |
|
| 21 | { |
|
| 22 | ||
| 23 | /** @var string */ |
|
| 24 | private $name; |
|
| 25 | ||
| 26 | /** @var string */ |
|
| 27 | private $content; |
|
| 28 | ||
| 29 | /** @var string */ |
|
| 30 | private $strength; |
|
| 31 | ||
| 32 | /** |
|
| 33 | * @return string |
|
| 34 | */ |
|
| 35 | public function getName() |
|
| 36 | { |
|
| 37 | return $this->name; |
|
| 38 | } |
|
| 39 | ||
| 40 | /** |
|
| 41 | * @param string $name |
|
| 42 | * |
|
| 43 | * @return Bias |
|
| 44 | */ |
|
| 45 | public function setName($name) |
|
| 46 | { |
|
| 47 | $this->name = $name; |
|
| 48 | return $this; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @return string |
|
| 53 | */ |
|
| 54 | public function getContent() |
|
| 55 | { |
|
| 56 | return $this->content; |
|
| 57 | } |
|
| 58 | ||
| 59 | /** |
|
| 60 | * @param string $content |
|
| 61 | * |
|
| 62 | * @return Bias |
|
| 63 | */ |
|
| 64 | public function setContent($content) |
|
| 65 | { |
|
| 66 | $this->content = $content; |
|
| 67 | return $this; |
|
| 68 | } |
|
| 69 | ||
| 70 | /** |
|
| 71 | * @return string |
|
| 72 | */ |
|
| 73 | public function getStrength() |
|
| 74 | { |
|
| 75 | return $this->strength; |
|
| 76 | } |
|
| 77 | ||
| 78 | /** |
|
| 79 | * @param string $strength |
|
| 80 | * |
|
| 81 | * @return Bias |
|
| 82 | */ |
|
| 83 | public function setStrength($strength) |
|
| 84 | { |
|
| 85 | $this->strength = $strength; |
|
| 86 | return $this; |
|
| 87 | } |
|
| 88 | } |
|
| 89 | ||
| @@ 20-88 (lines=69) @@ | ||
| 17 | ||
| 18 | namespace GroupByInc\API\Request; |
|
| 19 | ||
| 20 | class Bias |
|
| 21 | { |
|
| 22 | ||
| 23 | /** @var string */ |
|
| 24 | private $name; |
|
| 25 | ||
| 26 | /** @var string */ |
|
| 27 | private $content; |
|
| 28 | ||
| 29 | /** @var string */ |
|
| 30 | private $strength; |
|
| 31 | ||
| 32 | /** |
|
| 33 | * @return string |
|
| 34 | */ |
|
| 35 | public function getName() |
|
| 36 | { |
|
| 37 | return $this->name; |
|
| 38 | } |
|
| 39 | ||
| 40 | /** |
|
| 41 | * @param string $name |
|
| 42 | * |
|
| 43 | * @return Bias |
|
| 44 | */ |
|
| 45 | public function setName($name) |
|
| 46 | { |
|
| 47 | $this->name = $name; |
|
| 48 | return $this; |
|
| 49 | } |
|
| 50 | ||
| 51 | /** |
|
| 52 | * @return string |
|
| 53 | */ |
|
| 54 | public function getContent() |
|
| 55 | { |
|
| 56 | return $this->content; |
|
| 57 | } |
|
| 58 | ||
| 59 | /** |
|
| 60 | * @param string $content |
|
| 61 | * |
|
| 62 | * @return Bias |
|
| 63 | */ |
|
| 64 | public function setContent($content) |
|
| 65 | { |
|
| 66 | $this->content = $content; |
|
| 67 | return $this; |
|
| 68 | } |
|
| 69 | ||
| 70 | /** |
|
| 71 | * @return string |
|
| 72 | */ |
|
| 73 | public function getStrength() |
|
| 74 | { |
|
| 75 | return $this->strength; |
|
| 76 | } |
|
| 77 | ||
| 78 | /** |
|
| 79 | * @param string $strength |
|
| 80 | * |
|
| 81 | * @return Bias |
|
| 82 | */ |
|
| 83 | public function setStrength($strength) |
|
| 84 | { |
|
| 85 | $this->strength = $strength; |
|
| 86 | return $this; |
|
| 87 | } |
|
| 88 | } |
|
| 89 | ||