io.sphere.sdk.reviews.Review Maven / Gradle / Ivy
package io.sphere.sdk.reviews;
import com.fasterxml.jackson.core.type.TypeReference;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import io.sphere.sdk.models.Resource;
import io.sphere.sdk.models.Reference;
import javax.annotation.Nullable;
/**
Review of a product by a customer. A customer can create only one review per product.
*/
@JsonDeserialize(as = ReviewImpl.class)
public interface Review extends Resource {
String getProductId();
String getCustomerId();
@Nullable
String getAuthorName();
@Nullable
String getTitle();
@Nullable
String getText();
@Nullable
Double getScore();
default Reference toReference() {
return Reference.of(referenceTypeId(), getId());
}
static String referenceTypeId() {
return "review";
}
/**
*
* @deprecated use {@link #referenceTypeId()} instead
*/
@Deprecated
static String typeId() {
return "review";
}
static TypeReference typeReference() {
return new TypeReference() {
@Override
public String toString() {
return "TypeReference";
}
};
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy