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

com.omertron.imdbapi.model.ImdbText Maven / Gradle / Ivy

There is a newer version: 1.5
Show newest version
package com.omertron.imdbapi.model;

import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.Collections;
import java.util.Map;

public class ImdbText extends AbstractJsonMapping {

    @JsonProperty("text")
    private String text = "";
    @JsonProperty("label")
    private String label = "";
    @JsonProperty("date")
    private Map date = Collections.emptyMap();

    public String getLabel() {
        return label;
    }

    public void setLabel(String label) {
        this.label = label;
    }

    public String getText() {
        return text;
    }

    public void setText(String text) {
        this.text = text;
    }

    public Map getDate() {
        return date;
    }

    public void setDate(Map date) {
        this.date = date;
    }

}




© 2015 - 2026 Weber Informatics LLC | Privacy Policy