package io.delphiplatform.api.v3.model.mapper;

import fr.xebia.extras.selma.IgnoreMissing;
import fr.xebia.extras.selma.Mapper;
import io.delphiplatform.api.v3.model.ArtistSimple;
import io.delphiplatform.api.v3.search.entity.ArtistDocumentEntity;

@Mapper(withIgnoreMissing = IgnoreMissing.ALL, withCustom = JsonNullableMappings.class)
public interface ArtistDocumentMapper {

    ArtistSimple toArtistSimple(ArtistDocumentEntity artistDocumentEntity);

}
