1 | <?php |
||
10 | class Translation |
||
11 | { |
||
12 | /** |
||
13 | * The english translation. |
||
14 | * |
||
15 | * @var TranslationText |
||
16 | * |
||
17 | * @JMS\Type("Speicher210\Monsum\Api\Model\TranslationText") |
||
18 | * @JMS\SerializedName("EN") |
||
19 | */ |
||
20 | protected $english; |
||
21 | |||
22 | /** |
||
23 | * Get the english translation. |
||
24 | * |
||
25 | * @return TranslationText |
||
26 | */ |
||
27 | public function getEnglish() |
||
31 | |||
32 | /** |
||
33 | * Set the english translation. |
||
34 | * |
||
35 | * @param TranslationText $translationText The translation text. |
||
36 | * @return Translation |
||
37 | */ |
||
38 | 6 | public function setEnglish(TranslationText $translationText) |
|
44 | } |
||
45 |