io.sphere.sdk.reviews.commands.ReviewCreateCommand Maven / Gradle / Ivy
The newest version!
/*
This class has been generated by class io.sphere.sdk.annotations.processors.CreateCommandEndpointAnnotationProcessor
induced by the annotation io.sphere.sdk.annotations.HasCreateCommand.
in the source class io.sphere.sdk.reviews.Review.
To render this class the handlebars template 'commands/createCommandInterface.hbs' has been used.
*/
package io.sphere.sdk.reviews.commands;
import io.sphere.sdk.commands.DraftBasedCreateCommandDsl;
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;
/**
Command object to create a {@link Review}.
{@include.example io.sphere.sdk.reviews.commands.ReviewCreateCommandIntegrationTest#createByCode() }
@see ReviewDraft
@see Review
*/
public interface ReviewCreateCommand extends DraftBasedCreateCommandDsl, MetaModelReferenceExpansionDsl> {
/**
Creates a command object to create a {@link Review}.
@param draft template to create the new object
@return a new create command
*/
static ReviewCreateCommand of(final ReviewDraft draft) {
return new ReviewCreateCommandImpl(draft);
}
}