| 1 | <?php | ||
| 5 | class Decision extends Entity | ||
| 6 | { | ||
| 7 | /** | ||
| 8 | * @param array $array | ||
| 9 | */ | ||
| 10 | public function __construct(array $array = []) | ||
| 14 | |||
| 15 | /** | ||
| 16 | * Gets the 'slot_id' parameter. | ||
| 17 | * | ||
| 18 | * @return string | ||
| 19 | */ | ||
| 20 | public function getSlotId() | ||
| 24 | |||
| 25 | /** | ||
| 26 | * Gets the 'slot_name' parameter. | ||
| 27 | * | ||
| 28 | * @return string | ||
| 29 | */ | ||
| 30 | public function getSlotName() | ||
| 34 | |||
| 35 | /** | ||
| 36 | * Gets the 'content' parameter. | ||
| 37 | * | ||
| 38 | * @return Content | ||
| 39 | */ | ||
| 40 | public function getContent() | ||
| 46 | |||
| 47 | /** | ||
| 48 | * Gets the 'policy' parameter. | ||
| 49 | * | ||
| 50 | * @return string | ||
| 51 | */ | ||
| 52 | public function getPolicy() | ||
| 56 | |||
| 57 | /** | ||
| 58 | * Gets the 'rule_id' parameter. | ||
| 59 | * | ||
| 60 | * @return string | ||
| 61 | */ | ||
| 62 | public function getRuleId() | ||
| 66 | |||
| 67 | /** | ||
| 68 | * Gets the 'rule_id' parameter. | ||
| 69 | * | ||
| 70 | * @return string | ||
| 71 | */ | ||
| 72 | public function getRuleName() | ||
| 76 | } | ||
| 77 |