У меня есть объект со списком вложенных объектов
@Getter
@Setter
@NoArgsConstructor
public class Notification {
private Long id
private Long statusId;
private List <External> external;
}
@Getter
@Setter
@NoArgsConstructor
public class External{
private Long externalId;
private LocalDate date;
}
Dto
@Getter
@Setter
@NoArgsConstructor
public class NotificationPayload {
private Long id;
private Long statusId;
private List <ExternalReferencePayload> external;
}
@Getter
@Setter
@NoArgsConstructor
public class ExternalReferencePayload {
private Long externalReferenceId;
}
Mapper
@Mapper(componentModel = "spring")
public interface NotificationMapper{
public Notification dtoToNotification(NotificationPayload payload);
}
Я ищу способ сопоставить вложенный список