info.movito.themoviedbapi.model.watchproviders.AvailableRegion Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of themoviedbapi Show documentation
Show all versions of themoviedbapi Show documentation
A Java-wrapper around the JSON API provided by TMdB, which is an open database for movie and tv content.
The newest version!
package info.movito.themoviedbapi.model.watchproviders;
import com.fasterxml.jackson.annotation.JsonProperty;
import info.movito.themoviedbapi.model.core.AbstractJsonMapping;
import lombok.Data;
import lombok.EqualsAndHashCode;
@Data
@EqualsAndHashCode(callSuper = false)
public class AvailableRegion extends AbstractJsonMapping {
@JsonProperty("iso_3166_1")
private String iso31661;
@JsonProperty("english_name")
private String englishName;
@JsonProperty("native_name")
private String nativeName;
}