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

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

There is a newer version: 2.16.0
Show newest version
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.MetaModelReferenceExpansionDsl;
import io.sphere.sdk.models.Versioned;

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy