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

com.datarank.api.response.envelopes.SentimentEnvelope Maven / Gradle / Ivy

There is a newer version: 1.9
Show newest version
package com.datarank.api.response.envelopes;

import com.datarank.api.response.containers.interval.sentiment.IntervalSamples;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

/**
 * Created by kenny on 4/16/15.
 */
@JsonIgnoreProperties(ignoreUnknown = true)
public class SentimentEnvelope {

    private QueryStats queryStats;

    private IntervalSamples sentiment;

    public QueryStats getQueryStats() {
        return queryStats;
    }

    public IntervalSamples getSentiment() {
        return sentiment;
    }

    @Override
    public String toString() {
        return "SentimentEnvelope{" +
                "queryStats=" + queryStats +
                ", sentiment=" + sentiment +
                '}';
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy