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

io.sphere.sdk.inventory.commands.InventoryEntryCreateCommandImpl Maven / Gradle / Ivy

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

import io.sphere.sdk.commands.MetaModelCreateCommandBuilder;
import io.sphere.sdk.commands.MetaModelCreateCommandImpl;
import io.sphere.sdk.inventory.InventoryEntry;
import io.sphere.sdk.inventory.InventoryEntryDraft;
import io.sphere.sdk.inventory.expansion.InventoryEntryExpansionModel;

final class InventoryEntryCreateCommandImpl extends MetaModelCreateCommandImpl> implements InventoryEntryCreateCommand {
    InventoryEntryCreateCommandImpl(final MetaModelCreateCommandBuilder> builder) {
        super(builder);
    }

    InventoryEntryCreateCommandImpl(final InventoryEntryDraft body) {
        super(body, InventoryEntryEndpoint.ENDPOINT, InventoryEntryExpansionModel.of(), InventoryEntryCreateCommandImpl::new);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy