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

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

There is a newer version: 2.16.0
Show newest version
package io.sphere.sdk.reviews.commands;

import io.sphere.sdk.commands.DraftBasedCreateCommand;
import io.sphere.sdk.expansion.MetaModelReferenceExpansionDsl;
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.ReviewCreateCommandIntegrationTest#createByCode()} * * @see io.sphere.sdk.reviews.ReviewDraftBuilder * @see io.sphere.sdk.reviews.ReviewDraft * @see io.sphere.sdk.reviews.Review */ public interface ReviewCreateCommand extends DraftBasedCreateCommand, MetaModelReferenceExpansionDsl> { static ReviewCreateCommand of(final ReviewDraft draft) { return new ReviewCreateCommandImpl(draft); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy