| 1 | <?php |
||
| 23 | class GetVideoRequest extends AbstractRequest implements SubstituteRequestInterface { |
||
| 24 | |||
| 25 | use IntegerIdTrait { |
||
| 26 | setId as public; |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Get video resource path. |
||
| 31 | * |
||
| 32 | * @var string |
||
| 33 | */ |
||
| 34 | const GET_VIDEO_RESOURCE_PATH = "/v1/videos/videos/:id"; |
||
| 35 | |||
| 36 | /** |
||
| 37 | * {@inheritDoc} |
||
| 38 | */ |
||
| 39 | public function getResourcePath(): string { |
||
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | public function getSubstituteName(): string { |
||
| 49 | |||
| 50 | /** |
||
| 51 | * {@inheritdoc} |
||
| 52 | */ |
||
| 53 | public function getSubstituteValue(): ?int { |
||
| 56 | } |
||
| 57 |