io.sphere.sdk.customergroups.commands.CustomerGroupDeleteByIdCommand Maven / Gradle / Ivy
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