Allow access to list objects with index like the one below. Note that this is allowed in Dozer. ```java public interface MyMapper { @Mapping(target = "subjectName", source = "course[0].courseName") Target map(Source source); } ```
Allow access to list objects with index like the one below. Note that this is allowed in Dozer.