com.uwetrottmann.tmdb2.entities.Credit Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tmdb-java Show documentation
Show all versions of tmdb-java Show documentation
tmdb-java is a retrofit2 based wrapper around the themoviedb.org API v3.
The newest version!
package com.uwetrottmann.tmdb2.entities;
import com.uwetrottmann.tmdb2.enumerations.CreditType;
import com.uwetrottmann.tmdb2.enumerations.MediaType;
public class Credit {
public CreditType credit_type;
public String department;
public String job;
public CreditMedia media;
public MediaType media_type;
public String id;
public BasePerson person;
}