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

com.qcloud.cos.model.ciModel.auditing.SentimentAnalysis Maven / Gradle / Ivy

There is a newer version: 5.6.238.2
Show newest version
package com.qcloud.cos.model.ciModel.auditing;

import com.thoughtworks.xstream.annotations.XStreamAlias;

public class SentimentAnalysis {
    @XStreamAlias("Label")
    private String label;
    @XStreamAlias("Score")
    private Integer Score;
    @XStreamAlias("Detail")
    private SentimentAnalysisDetail detail;

    public String getLabel() {
        return label;
    }

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

    public Integer getScore() {
        return Score;
    }

    public void setScore(Integer score) {
        Score = score;
    }

    public SentimentAnalysisDetail getDetail() {
        return detail;
    }

    public void setDetail(SentimentAnalysisDetail detail) {
        this.detail = detail;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy