Package | Description |
---|---|
io.sphere.sdk.customergroups.commands |
Provides types to change the state of customer groups.
|
Modifier and Type | Method and Description |
---|---|
static CustomerGroupUpdateCommand |
CustomerGroupUpdateCommand.of(Versioned<CustomerGroup> versioned,
List<? extends UpdateAction<CustomerGroup>> updateActions)
Creates a command to update a CustomerGroup selected by its ID using several update actions.
|
static CustomerGroupUpdateCommand |
CustomerGroupUpdateCommand.of(Versioned<CustomerGroup> versioned,
UpdateAction<CustomerGroup> updateAction,
UpdateAction<CustomerGroup>... updateActions)
Creates a command to update a CustomerGroup selected by its ID using one update action.
|
static CustomerGroupUpdateCommand |
CustomerGroupUpdateCommand.ofKey(String key,
Long version,
List<? extends UpdateAction<CustomerGroup>> updateActions)
Creates a command to update a CustomerGroup selected by its key using several update actions.
|
static CustomerGroupUpdateCommand |
CustomerGroupUpdateCommand.ofKey(String key,
Long version,
UpdateAction<CustomerGroup> updateAction)
Creates a command to update a CustomerGroup selected by its key using one update action.
|