in src/main/java/com/epam/digital/data/platform/notification/mapper/NotificationMetadataMapper.java [15:20]
public static SaveNotificationTemplateInputDto toSaveNotificationTemplateInputDto(NotificationYamlObject src) {
return SaveNotificationTemplateInputDto.builder()
.title(src.getTitle())
.attributes(toNotificationTemplateAttributeDtos(src.getAttributes()))
.build();
}