io.sphere.sdk.commands.UpdateCommandBody Maven / Gradle / Ivy
package io.sphere.sdk.commands;
import java.util.List;
final class UpdateCommandBody {
private final Long version;
private final List extends UpdateAction> actions;
UpdateCommandBody(final long version, final List extends UpdateAction> actions) {
this.version = version;
this.actions = actions;
}
public Long getVersion() {
return version;
}
public List extends UpdateAction> getActions() {
return actions;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy