io.sphere.sdk.cartdiscounts.queries.CartDiscountByIdGet Maven / Gradle / Ivy
The newest version!
/*
This class has been generated by class io.sphere.sdk.annotations.processors.HasByIdGetEndpointAnnotationProcessor
induced by the annotation io.sphere.sdk.annotations.HasByIdGetEndpoint.
in the source class io.sphere.sdk.cartdiscounts.CartDiscount.
To render this class the handlebars template 'queries/byFieldGetInterface.hbs' has been used.
*/
package io.sphere.sdk.cartdiscounts.queries;
import io.sphere.sdk.expansion.ExpansionPath;
import io.sphere.sdk.queries.MetaModelGetDsl;
import io.sphere.sdk.cartdiscounts.CartDiscount;
import io.sphere.sdk.cartdiscounts.expansion.CartDiscountExpansionModel;
import io.sphere.sdk.models.Identifiable;
import java.util.List;
/**
* Gets a {@link CartDiscount} by a known ID.
{@include.example io.sphere.sdk.cartdiscounts.queries.CartDiscountByIdGetIntegrationTest#execution() }
*/
public interface CartDiscountByIdGet extends MetaModelGetDsl> {
static CartDiscountByIdGet of(final String id) {
return new CartDiscountByIdGetImpl(id);
}
static CartDiscountByIdGet of(final Identifiable resource) {
return of(resource.getId());
}
@Override
List> expansionPaths();
@Override
CartDiscountByIdGet plusExpansionPaths(final ExpansionPath expansionPath);
@Override
CartDiscountByIdGet withExpansionPaths(final ExpansionPath expansionPath);
@Override
CartDiscountByIdGet withExpansionPaths(final List> expansionPaths);
}