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

io.sphere.sdk.producttypes.commands.updateactions.ChangeDescription Maven / Gradle / Ivy

There is a newer version: 1.0.0-M26
Show newest version
package io.sphere.sdk.producttypes.commands.updateactions;

import io.sphere.sdk.commands.UpdateActionImpl;
import io.sphere.sdk.producttypes.ProductType;

/**
 * Changes the description.
 *
 * {@doc.gen intro}
 *
 * {@include.example io.sphere.sdk.producttypes.commands.ProductTypeUpdateCommandTest#changeDescription()}
 */
public class ChangeDescription extends UpdateActionImpl {
    private final String description;

    private ChangeDescription(final String description) {
        super("changeDescription");
        this.description = description;
    }

    public static ChangeDescription of(final String description) {
        return new ChangeDescription(description);
    }

    public String getDescription() {
        return description;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy