| 1 | <?php |
||
| 5 | class WorkItem extends Resource |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * The id of the work item. |
||
| 9 | * |
||
| 10 | * @var string |
||
| 11 | */ |
||
| 12 | public $id; |
||
| 13 | |||
| 14 | /** |
||
| 15 | * The title of the work item. |
||
| 16 | * |
||
| 17 | * @var string |
||
| 18 | */ |
||
| 19 | public $title; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * The description for the work item. |
||
| 23 | * |
||
| 24 | * @var string |
||
| 25 | */ |
||
| 26 | public $description; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * The type of the work item. |
||
| 30 | * |
||
| 31 | * @var string |
||
| 32 | */ |
||
| 33 | public $workItemType; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * The repro steps for the work item. |
||
| 37 | * |
||
| 38 | * @var string |
||
| 39 | */ |
||
| 40 | public $stepsToReproduce; |
||
| 41 | |||
| 42 | /** |
||
| 43 | * Create a new resource instance. |
||
| 44 | * |
||
| 45 | * @param string $title |
||
| 46 | * @param string $description |
||
| 47 | * @param string $workItemType |
||
| 48 | * @param string $stepsToReproduce |
||
| 49 | * @param string|null $id |
||
| 50 | */ |
||
| 51 | 3 | public function __construct( |
|
| 64 | } |
||
| 65 |