| Total Complexity | 1 |
| Total Lines | 29 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 14 | class MeetingListItem |
||
| 15 | { |
||
| 16 | use BaseMeetingTrait; |
||
| 17 | use JsonDeserializableTrait; |
||
| 18 | |||
| 19 | /** @var string unique meeting instance ID */ |
||
| 20 | public $uuid; |
||
| 21 | |||
| 22 | /** @var string meeting number */ |
||
| 23 | public $id; |
||
| 24 | |||
| 25 | /** @var string host Zoom user id */ |
||
| 26 | public $host_id; |
||
| 27 | |||
| 28 | /** @var string */ |
||
| 29 | public $created_at; |
||
| 30 | |||
| 31 | /** @var string */ |
||
| 32 | public $join_url; |
||
| 33 | |||
| 34 | /** @var string truncated to 250 characters */ |
||
| 35 | // public $agenda; |
||
| 36 | |||
| 37 | /** |
||
| 38 | * {@inheritdoc} |
||
| 39 | */ |
||
| 40 | public function itemClass($propertyName) |
||
| 45 |