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\Movie\QueryParameter;
14
15use Tmdb\Model\Common\QueryParameter\AppendToResponse as BaseAppendToResponse;
16
17/**
18 * Class AppendToResponse
19 * @package Tmdb\Model\Movie\QueryParameter
20 */
21final class AppendToResponse extends BaseAppendToResponse
22{
23    const ALTERNATIVE_TITLES = 'alternative_titles';
24    const CREDITS            = 'credits';
25    const IMAGES             = 'images';
26    const KEYWORDS           = 'keywords';
27    /**
28     * @see https://developers.themoviedb.org/3/movies/get-movie-release-dates
29     * @deprecated Use RELEASE_DATES instead, but format has changed.
30     */
31    const RELEASES           = 'releases';
32    const RELEASE_DATES      = 'release_dates';
33    const TRANSLATIONS       = 'translations';
34    const SIMILAR            = 'similar';
35    const RECOMMENDATIONS    = 'recommendations';
36    const REVIEWS            = 'reviews';
37    const LISTS              = 'lists';
38    const CHANGES            = 'changes';
39    const VIDEOS             = 'videos';
40}
41