io.sphere.sdk.states.commands.updateactions.SetDescription Maven / Gradle / Ivy
package io.sphere.sdk.states.commands.updateactions;
import io.sphere.sdk.commands.UpdateActionImpl;
import io.sphere.sdk.models.LocalizedString;
import io.sphere.sdk.states.State;
public class SetDescription extends UpdateActionImpl {
private final LocalizedString description;
private SetDescription(final LocalizedString description) {
super("setDescription");
this.description = description;
}
public static SetDescription of(final LocalizedString description) {
return new SetDescription(description);
}
public LocalizedString getDescription() {
return description;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy