io.sphere.sdk.customergroups.queries.CustomerGroupByKeyGet Maven / Gradle / Ivy
/*
This class has been generated by class io.sphere.sdk.annotations.processors.HasByKeyGetEndpointAnnotationProcessor
induced by the annotation io.sphere.sdk.annotations.HasByKeyGetEndpoint.
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 key.
{@include.example io.sphere.sdk.customergroups.queries.CustomerGroupByKeyGetIntegrationTest#execution() }
*/
public interface CustomerGroupByKeyGet extends MetaModelGetDsl> {
static CustomerGroupByKeyGet of(final String key) {
return new CustomerGroupByKeyGetImpl(key);
}
@Override
List> expansionPaths();
@Override
CustomerGroupByKeyGet plusExpansionPaths(final ExpansionPath expansionPath);
@Override
CustomerGroupByKeyGet withExpansionPaths(final ExpansionPath expansionPath);
@Override
CustomerGroupByKeyGet withExpansionPaths(final List> expansionPaths);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy