1<?php
2/**
3 * This file is part of the Tmdb PHP API created by Michael Roterman.
4 *
5 * For the full copyright and license information, please view the LICENSE
6 * file that was distributed with this source code.
7 *
8 * @package Tmdb
9 * @author Michael Roterman <michael@wtfz.net>
10 * @copyright (c) 2013, Michael Roterman
11 * @version 0.0.1
12 */
13namespace Tmdb\Model\Tv\QueryParameter;
14
15use Tmdb\Model\Common\QueryParameter\AppendToResponse as BaseAppendToResponse;
16
17/**
18 * Class AppendToResponse
19 * @package Tmdb\Model\Tv\QueryParameter
20 */
21class AppendToResponse extends BaseAppendToResponse
22{
23    const CREDITS            = 'credits';
24    const EXTERNAL_IDS       = 'external_ids';
25    const IMAGES             = 'images';
26    const TRANSLATIONS       = 'translations';
27    const VIDEOS             = 'videos';
28    const CHANGES            = 'changes';
29    const KEYWORDS           = 'keywords';
30    const SIMILAR            = 'similar';
31    const RECOMMENDATIONS    = 'recommendations';
32    const CONTENT_RATINGS    = 'content_ratings';
33    const ALTERNATIVE_TITLES = 'alternative_titles';
34}
35