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

io.sphere.sdk.inventories.commands.InventoryDeleteCommand Maven / Gradle / Ivy

The newest version!
package io.sphere.sdk.inventories.commands;

import io.sphere.sdk.commands.ByIdDeleteCommandImpl;
import io.sphere.sdk.commands.DeleteCommand;
import io.sphere.sdk.inventories.InventoryEntry;
import io.sphere.sdk.models.Versioned;

public class InventoryDeleteCommand extends ByIdDeleteCommandImpl {
    private InventoryDeleteCommand(final Versioned versioned) {
        super(versioned, Endpoint.ENDPOINT);
    }

    public static DeleteCommand of(final Versioned versioned) {
        return new InventoryDeleteCommand(versioned);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy