Total Complexity | 4 |
Total Lines | 24 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
26 | class DeleteRecordingsParameters extends BaseParameters |
||
27 | { |
||
28 | private ?string $recordingId = null; |
||
29 | |||
30 | public function __construct(string $recordingId = null) |
||
31 | { |
||
32 | $this->recordingId = $recordingId; |
||
33 | } |
||
34 | |||
35 | public function getRecordingId(): ?string |
||
36 | { |
||
37 | return $this->recordingId; |
||
38 | } |
||
39 | |||
40 | public function setRecordingId(string $recordingId): DeleteRecordingsParameters |
||
45 | } |
||
46 | |||
47 | public function getHTTPQuery(): string |
||
50 | } |
||
51 | } |
||
52 |