@@ -14,6 +14,7 @@ public class OrfOnVideoInfoDTO {
1414 private Optional <String > titleWithDate ;
1515 private Optional <String > topic ;
1616 private Optional <String > topicForArchive ;
17+ private Optional <String > drmProtected ;
1718 private Optional <LocalDateTime > aired ;
1819 private Optional <Duration > duration ;
1920 private Optional <String > description ;
@@ -28,6 +29,7 @@ public OrfOnVideoInfoDTO(
2829 Optional <String > titleWithDate ,
2930 Optional <String > topic ,
3031 Optional <String > topicForArchive ,
32+ Optional <String > drmProtected ,
3133 Optional <LocalDateTime > aired ,
3234 Optional <Duration > duration ,
3335 Optional <String > description ,
@@ -41,6 +43,7 @@ public OrfOnVideoInfoDTO(
4143 this .titleWithDate = titleWithDate ;
4244 this .topic = topic ;
4345 this .topicForArchive = topicForArchive ;
46+ this .drmProtected = drmProtected ;
4447 this .aired = aired ;
4548 this .duration = duration ;
4649 this .description = description ;
@@ -67,6 +70,9 @@ public Optional<String> getTopic() {
6770 public Optional <String > getTopicForArchive () {
6871 return topicForArchive ;
6972 }
73+ public Optional <String > getDrmProtected () {
74+ return drmProtected ;
75+ }
7076 public Optional <LocalDateTime > getAired () {
7177 return aired ;
7278 }
0 commit comments