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

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

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

import io.sphere.sdk.commands.DeleteByIdCommandImpl;
import io.sphere.sdk.customergroups.CustomerGroup;
import io.sphere.sdk.models.Versioned;

public class CustomerGroupDeleteByIdCommand extends DeleteByIdCommandImpl {
    private CustomerGroupDeleteByIdCommand(final Versioned customerGroup) {
        super(customerGroup, CustomerGroupEndpoint.ENDPOINT);
    }

    public static CustomerGroupDeleteByIdCommand of(final Versioned customerGroup) {
        return new CustomerGroupDeleteByIdCommand(customerGroup);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy