All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.uwetrottmann.tmdb2.entities.Media Maven / Gradle / Ivy

There is a newer version: 2.11.0
Show newest version
/*
 * Copyright 2015 Miguel Teixeira
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 * 
 */

package com.uwetrottmann.tmdb2.entities;

import java.util.Date;
import java.util.List;

public class Media {

    public Integer id;
    public Boolean adult;
    public String backdrop_path;
    public Date first_air_date;
    public List genre_ids;
    public String name;
    public List origin_country;
    public String original_language;
    public String original_name;
    public String original_title;
    public String overview;
    public Date release_date;
    public String poster_path;
    public Double popularity;
    public String title;
    public Double vote_average;
    public Integer vote_count;
    public String media_type;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy