| 1 | <?php |
||
| 15 | class ConfigurationGroup extends AbstractModel |
||
| 16 | { |
||
| 17 | /** |
||
| 18 | * Title. |
||
| 19 | * |
||
| 20 | * @var string |
||
| 21 | * @db |
||
| 22 | */ |
||
| 23 | protected $title; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * Configurations. |
||
| 27 | * |
||
| 28 | * @var string |
||
| 29 | * @db text |
||
| 30 | */ |
||
| 31 | protected $configurations; |
||
| 32 | |||
| 33 | /** |
||
| 34 | * Import ID if the item is based on an ICS structure. |
||
| 35 | * |
||
| 36 | * @var string |
||
| 37 | * @db |
||
| 38 | */ |
||
| 39 | protected $importId; |
||
| 40 | |||
| 41 | /** |
||
| 42 | * Get title. |
||
| 43 | * |
||
| 44 | * @return string |
||
| 45 | */ |
||
| 46 | public function getTitle() |
||
| 50 | |||
| 51 | /** |
||
| 52 | * Set title. |
||
| 53 | * |
||
| 54 | * @param string $title |
||
| 55 | */ |
||
| 56 | public function setTitle($title) |
||
| 60 | |||
| 61 | /** |
||
| 62 | * Get configurations. |
||
| 63 | * |
||
| 64 | * @return int[] |
||
| 65 | */ |
||
| 66 | public function getConfigurationIds() |
||
| 70 | } |
||
| 71 |