001
002package com.commercetools.api.models.common;
003
004import javax.annotation.Nullable;
005
006/**
007 * Interface for resources with meta attributes
008 */
009public interface MetaAttributes {
010    @Nullable
011    LocalizedString getMetaTitle();
012
013    @Nullable
014    LocalizedString getMetaDescription();
015
016    @Nullable
017    LocalizedString getMetaKeywords();
018}