
nl.vpro.domain.api.topspin.Recommendation Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-domain Show documentation
Show all versions of api-domain Show documentation
Contains the objects used by the Frontend API, like forms and result objects
package nl.vpro.domain.api.topspin;
import lombok.Data;
import lombok.NoArgsConstructor;
import lombok.NonNull;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@Data
@JsonIgnoreProperties(ignoreUnknown = true)
@NoArgsConstructor
public class Recommendation {
@NonNull
private String midRef;
private Float score;
private String recommender;
public Recommendation(String m) {
this.midRef = m;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy