
io.sphere.sdk.inventories.queries.InventoryEntryByIdFetch Maven / Gradle / Ivy
The newest version!
package io.sphere.sdk.inventories.queries;
import io.sphere.sdk.inventories.InventoryEntry;
import io.sphere.sdk.queries.ByIdFetchImpl;
public class InventoryEntryByIdFetch extends ByIdFetchImpl {
private InventoryEntryByIdFetch(final String id) {
super(id, Endpoint.ENDPOINT);
}
public static InventoryEntryByIdFetch of(final String id) {
return new InventoryEntryByIdFetch(id);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy