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

com.etsy.conjecture.data.Recommendation Maven / Gradle / Ivy

There is a newer version: 0.2.3
Show newest version
package com.etsy.conjecture.data;

import java.io.Serializable;

public class Recommendation implements Serializable {

    private static final long serialVersionUID = 1L;

    public final double score;
    public final String id;

    public Recommendation(String id, double score) {
        this.id = id;
        this.score = score;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy