io.sphere.sdk.carts.queries.CartByIdGet 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.carts.Cart.
To render this class the handlebars template 'queries/byFieldGetInterface.hbs' has been used.
*/
package io.sphere.sdk.carts.queries;
import io.sphere.sdk.expansion.ExpansionPath;
import io.sphere.sdk.queries.MetaModelGetDsl;
import io.sphere.sdk.carts.Cart;
import io.sphere.sdk.carts.expansion.CartExpansionModel;
import io.sphere.sdk.models.Identifiable;
import java.util.List;
/**
* Gets a cart by ID.
{@include.example io.sphere.sdk.carts.queries.CartByIdGetIntegrationTest#fetchById() }
*/
public interface CartByIdGet extends MetaModelGetDsl> {
static CartByIdGet of(final String id) {
return new CartByIdGetImpl(id);
}
static CartByIdGet of(final Identifiable resource) {
return of(resource.getId());
}
@Override
List> expansionPaths();
@Override
CartByIdGet plusExpansionPaths(final ExpansionPath expansionPath);
@Override
CartByIdGet withExpansionPaths(final ExpansionPath expansionPath);
@Override
CartByIdGet withExpansionPaths(final List> expansionPaths);
}