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

io.sphere.sdk.reviews.commands.ReviewCreateCommand Maven / Gradle / Ivy

package io.sphere.sdk.reviews.commands;

import io.sphere.sdk.commands.CreateCommand;
import io.sphere.sdk.expansion.MetaModelExpansionDsl;
import io.sphere.sdk.reviews.Review;
import io.sphere.sdk.reviews.ReviewDraft;
import io.sphere.sdk.reviews.expansion.ReviewExpansionModel;

/**
 * Creates a review.
 *
 * 

Example:

* {@include.example io.sphere.sdk.reviews.commands.ReviewCreateCommandTest#createByCode()} * * @see io.sphere.sdk.reviews.ReviewDraftBuilder * @see io.sphere.sdk.reviews.ReviewDraft * @see io.sphere.sdk.reviews.Review */ public interface ReviewCreateCommand extends CreateCommand, MetaModelExpansionDsl> { static ReviewCreateCommand of(final ReviewDraft draft) { return new ReviewCreateCommandImpl(draft); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy