io.sphere.sdk.inventory.commands.InventoryEntryCreateCommandImpl Maven / Gradle / Ivy
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 - 2025 Weber Informatics LLC | Privacy Policy