io.sphere.sdk.customergroups.queries.CustomerGroupByIdGet 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.customergroups.CustomerGroup.
To render this class the handlebars template 'queries/byFieldGetInterface.hbs' has been used.
*/
package io.sphere.sdk.customergroups.queries;
import io.sphere.sdk.expansion.ExpansionPath;
import io.sphere.sdk.queries.MetaModelGetDsl;
import io.sphere.sdk.customergroups.CustomerGroup;
import io.sphere.sdk.customergroups.expansion.CustomerGroupExpansionModel;
import io.sphere.sdk.models.Identifiable;
import java.util.List;
/**
* Fetches a customer group based on a known ID.
{@include.example io.sphere.sdk.customergroups.queries.CustomerGroupByIdGetIntegrationTest#execution() }
*/
public interface CustomerGroupByIdGet extends MetaModelGetDsl> {
static CustomerGroupByIdGet of(final String id) {
return new CustomerGroupByIdGetImpl(id);
}
static CustomerGroupByIdGet of(final Identifiable resource) {
return of(resource.getId());
}
@Override
List> expansionPaths();
@Override
CustomerGroupByIdGet plusExpansionPaths(final ExpansionPath expansionPath);
@Override
CustomerGroupByIdGet withExpansionPaths(final ExpansionPath expansionPath);
@Override
CustomerGroupByIdGet withExpansionPaths(final List> expansionPaths);
}