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

io.sphere.sdk.inventory.commands.updateactions.ChangeQuantity Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.inventory.commands.updateactions;

import io.sphere.sdk.commands.UpdateActionImpl;
import io.sphere.sdk.inventory.InventoryEntry;

/**
 * Changes the absolute quantity.
 *
 * {@doc.gen intro}
 *
 * {@include.example io.sphere.sdk.inventory.commands.InventoryEntryUpdateCommandTest#changeQuantity()}
 */
public class ChangeQuantity extends UpdateActionImpl {
    private final long quantity;

    private ChangeQuantity(final long quantity) {
        super("changeQuantity");
        this.quantity = quantity;
    }

    public long getQuantity() {
        return quantity;
    }

    public static ChangeQuantity of(final long quantity) {
        return new ChangeQuantity(quantity);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy