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

io.sphere.sdk.models.MetaAttributesDsl Maven / Gradle / Ivy

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

import javax.annotation.Nullable;

public interface MetaAttributesDsl extends MetaAttributes {
    MetaAttributesDsl withTitle(@Nullable final LocalizedString title);

    MetaAttributesDsl withDescription(@Nullable final LocalizedString description);

    MetaAttributesDsl withKeywords(@Nullable final LocalizedString keywords);

    static MetaAttributesDsl of() {
        return new MetaAttributesDslImpl(null, null, null);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy