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

io.sphere.sdk.customergroups.commands.CustomerGroupDeleteCommand Maven / Gradle / Ivy

package io.sphere.sdk.customergroups.commands;

import io.sphere.sdk.commands.DeleteCommand;
import io.sphere.sdk.customergroups.CustomerGroup;
import io.sphere.sdk.customergroups.expansion.CustomerGroupExpansionModel;
import io.sphere.sdk.expansion.MetaModelExpansionDsl;
import io.sphere.sdk.models.Versioned;

/**
 * Deletes a customer group.
 *
 * {@include.example io.sphere.sdk.customergroups.commands.CustomerGroupDeleteCommandTest#execution()}
 *
 * @see CustomerGroup
 */
public interface CustomerGroupDeleteCommand extends MetaModelExpansionDsl>, DeleteCommand {
    static DeleteCommand of(final Versioned customerGroup) {
        return new CustomerGroupDeleteCommandImpl(customerGroup);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy