All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.sphere.client.shop.InventoryService Maven / Gradle / Ivy

There is a newer version: 0.72.1
Show newest version
package io.sphere.client.shop;

import io.sphere.client.FetchRequest;
import io.sphere.client.shop.model.InventoryEntry;

/** Sphere HTTP API for retrieving product inventory information. */
public interface InventoryService {
    /** Finds an inventory entry by id. */
    FetchRequest byId(String id);

    /** Finds an inventory entry for given product variant. */
    FetchRequest byProductVariant(String productId, int variantId);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy