@sapui5/ts-types 1.100.2 → 1.102.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. package/package.json +1 -1
  2. package/types/index.d.ts +2 -0
  3. package/types/sap.apf.d.ts +89 -1
  4. package/types/sap.ca.ui.d.ts +1747 -124
  5. package/types/sap.chart.d.ts +376 -30
  6. package/types/sap.collaboration.d.ts +320 -40
  7. package/types/sap.esh.search.ui.d.ts +6 -2
  8. package/types/sap.f.d.ts +2015 -119
  9. package/types/sap.fe.common.d.ts +1 -1
  10. package/types/sap.fe.core.d.ts +77 -64
  11. package/types/sap.fe.macros.d.ts +92 -40
  12. package/types/sap.fe.navigation.d.ts +148 -74
  13. package/types/sap.fe.templates.d.ts +115 -187
  14. package/types/sap.fe.test.d.ts +539 -25
  15. package/types/sap.feedback.ui.d.ts +1 -1
  16. package/types/sap.gantt.d.ts +7242 -516
  17. package/types/sap.insights.d.ts +80 -0
  18. package/types/sap.landvisz.d.ts +1015 -66
  19. package/types/sap.m.d.ts +16699 -1186
  20. package/types/sap.makit.d.ts +575 -54
  21. package/types/sap.me.d.ts +578 -51
  22. package/types/sap.ndc.d.ts +63 -5
  23. package/types/sap.ovp.d.ts +5 -6
  24. package/types/sap.rules.ui.d.ts +209 -18
  25. package/types/sap.sac.df.d.ts +2196 -0
  26. package/types/sap.sac.grid.d.ts +115 -8
  27. package/types/sap.suite.ui.commons.d.ts +5532 -396
  28. package/types/sap.suite.ui.generic.template.d.ts +226 -31
  29. package/types/sap.suite.ui.microchart.d.ts +1801 -160
  30. package/types/sap.tnt.d.ts +279 -19
  31. package/types/sap.ui.codeeditor.d.ts +89 -8
  32. package/types/sap.ui.commons.d.ts +3784 -313
  33. package/types/sap.ui.comp.d.ts +4005 -289
  34. package/types/sap.ui.core.d.ts +6317 -336
  35. package/types/sap.ui.dt.d.ts +1 -1
  36. package/types/sap.ui.export.d.ts +61 -6
  37. package/types/sap.ui.fl.d.ts +1 -1
  38. package/types/sap.ui.generic.app.d.ts +247 -73
  39. package/types/sap.ui.generic.template.d.ts +1 -1
  40. package/types/sap.ui.integration.d.ts +316 -23
  41. package/types/sap.ui.layout.d.ts +1851 -199
  42. package/types/sap.ui.mdc.d.ts +9 -1
  43. package/types/sap.ui.richtexteditor.d.ts +340 -49
  44. package/types/sap.ui.rta.d.ts +5 -1
  45. package/types/sap.ui.suite.d.ts +87 -6
  46. package/types/sap.ui.support.d.ts +39 -6
  47. package/types/sap.ui.table.d.ts +1060 -113
  48. package/types/sap.ui.testrecorder.d.ts +1 -1
  49. package/types/sap.ui.unified.d.ts +2704 -202
  50. package/types/sap.ui.ux3.d.ts +2379 -181
  51. package/types/sap.ui.vbm.d.ts +2002 -197
  52. package/types/sap.ui.vk.d.ts +6027 -327
  53. package/types/sap.ui.vtm.d.ts +1130 -41
  54. package/types/sap.uiext.inbox.d.ts +423 -22
  55. package/types/sap.ushell.d.ts +2036 -161
  56. package/types/sap.ushell_abap.d.ts +4 -1
  57. package/types/sap.uxap.d.ts +903 -88
  58. package/types/sap.viz.d.ts +5514 -380
  59. package/types/sap.webanalytics.core.d.ts +1 -1
  60. package/types/sap.zen.commons.d.ts +249 -1688
  61. package/types/sap.zen.crosstab.d.ts +217 -21
  62. package/types/sap.zen.dsh.d.ts +1505 -4036
@@ -1,4 +1,4 @@
1
- // For Library Version: 1.100.0
1
+ // For Library Version: 1.102.0
2
2
 
3
3
  declare namespace sap {
4
4
  namespace uiext {
@@ -32,7 +32,8 @@ declare namespace sap {
32
32
  */
33
33
  isFileSelected?:
34
34
  | boolean
35
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
35
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
36
+ | `{${string}}`;
36
37
 
37
38
  /**
38
39
  * description string entered by user while uploading a file
@@ -44,7 +45,10 @@ declare namespace sap {
44
45
  /**
45
46
  * boolean value to indicate whether to show Add Attachment tile
46
47
  */
47
- showAddTile?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
48
+ showAddTile?:
49
+ | boolean
50
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
51
+ | `{${string}}`;
48
52
 
49
53
  /**
50
54
  * aggregation for attachments tile
@@ -52,7 +56,8 @@ declare namespace sap {
52
56
  attachments?:
53
57
  | sap.uiext.inbox.composite.InboxAttachmentTile[]
54
58
  | sap.uiext.inbox.composite.InboxAttachmentTile
55
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
59
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
60
+ | `{${string}}`;
56
61
 
57
62
  /**
58
63
  * event is fired to add all the header parameters just before uploading a file
@@ -94,7 +99,8 @@ declare namespace sap {
94
99
  */
95
100
  fileTypeIcon?:
96
101
  | sap.ui.core.URI
97
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
102
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
103
+ | `{${string}}`;
98
104
 
99
105
  /**
100
106
  * creation date of the attachment
@@ -116,7 +122,8 @@ declare namespace sap {
116
122
  */
117
123
  showDeleteButton?:
118
124
  | boolean
119
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
125
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
126
+ | `{${string}}`;
120
127
 
121
128
  /**
122
129
  * fire this event to delete the attachment
@@ -143,7 +150,8 @@ declare namespace sap {
143
150
  */
144
151
  thumbnailSrc?:
145
152
  | sap.ui.core.URI
146
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
153
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
154
+ | `{${string}}`;
147
155
 
148
156
  /**
149
157
  * The FeedChunk text
@@ -173,17 +181,24 @@ declare namespace sap {
173
181
  */
174
182
  feederThumbnailSrc?:
175
183
  | sap.ui.core.URI
176
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
184
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
185
+ | `{${string}}`;
177
186
 
178
187
  /**
179
188
  * Boolean value for visibilty of comment feeder
180
189
  */
181
- showFeeder?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
190
+ showFeeder?:
191
+ | boolean
192
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
193
+ | `{${string}}`;
182
194
 
183
195
  /**
184
196
  * Boolean value for visibility of header
185
197
  */
186
- showHeader?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
198
+ showHeader?:
199
+ | boolean
200
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
201
+ | `{${string}}`;
187
202
 
188
203
  /**
189
204
  * URL to the thumbnail image.
@@ -191,7 +206,8 @@ declare namespace sap {
191
206
  comments?:
192
207
  | sap.uiext.inbox.composite.InboxComment[]
193
208
  | sap.uiext.inbox.composite.InboxComment
194
- | sap.ui.base.ManagedObject.AggregationBindingInfo;
209
+ | sap.ui.base.ManagedObject.AggregationBindingInfo
210
+ | `{${string}}`;
195
211
 
196
212
  /**
197
213
  * Event is raised when submit on the feeder is pressed.
@@ -211,19 +227,24 @@ declare namespace sap {
211
227
  */
212
228
  categoryIconURI?:
213
229
  | sap.ui.core.URI
214
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
230
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
231
+ | `{${string}}`;
215
232
 
216
233
  /**
217
234
  * has Attachments
218
235
  */
219
236
  hasAttachments?:
220
237
  | boolean
221
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
238
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
239
+ | `{${string}}`;
222
240
 
223
241
  /**
224
242
  * has Comments
225
243
  */
226
- hasComments?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
244
+ hasComments?:
245
+ | boolean
246
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
247
+ | `{${string}}`;
227
248
 
228
249
  /**
229
250
  * Internal aggregation to hold the inner Task Title Link
@@ -243,7 +264,8 @@ declare namespace sap {
243
264
  */
244
265
  fileTypeIcon?:
245
266
  | sap.ui.core.URI
246
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
267
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
268
+ | `{${string}}`;
247
269
 
248
270
  /**
249
271
  * event is fired when upload for selected file is requested
@@ -297,6 +319,8 @@ declare namespace sap {
297
319
  * and enriches it with the information contained in `oClassInfo`.
298
320
  *
299
321
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
322
+ *
323
+ * @returns Created class / constructor function
300
324
  */
301
325
  static extend<T extends Record<string, unknown>>(
302
326
  /**
@@ -318,6 +342,8 @@ declare namespace sap {
318
342
  ): Function;
319
343
  /**
320
344
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxAddAttachmentTile.
345
+ *
346
+ * @returns Metadata object describing this class
321
347
  */
322
348
  static getMetadata(): sap.ui.core.ElementMetadata;
323
349
  }
@@ -361,6 +387,8 @@ declare namespace sap {
361
387
  * and enriches it with the information contained in `oClassInfo`.
362
388
  *
363
389
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
390
+ *
391
+ * @returns Created class / constructor function
364
392
  */
365
393
  static extend<T extends Record<string, unknown>>(
366
394
  /**
@@ -382,10 +410,14 @@ declare namespace sap {
382
410
  ): Function;
383
411
  /**
384
412
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxAttachmentsTileContainer.
413
+ *
414
+ * @returns Metadata object describing this class
385
415
  */
386
416
  static getMetadata(): sap.ui.core.ElementMetadata;
387
417
  /**
388
418
  * Adds some attachment to the aggregation {@link #getAttachments attachments}.
419
+ *
420
+ * @returns Reference to `this` in order to allow method chaining
389
421
  */
390
422
  addAttachment(
391
423
  /**
@@ -406,6 +438,8 @@ declare namespace sap {
406
438
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer` itself.
407
439
  *
408
440
  * event is fired to add all the header parameters just before uploading a file
441
+ *
442
+ * @returns Reference to `this` in order to allow method chaining
409
443
  */
410
444
  attachUploadButtonPress(
411
445
  /**
@@ -431,6 +465,8 @@ declare namespace sap {
431
465
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer` itself.
432
466
  *
433
467
  * event is fired to add all the header parameters just before uploading a file
468
+ *
469
+ * @returns Reference to `this` in order to allow method chaining
434
470
  */
435
471
  attachUploadButtonPress(
436
472
  /**
@@ -450,6 +486,8 @@ declare namespace sap {
450
486
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer` itself.
451
487
  *
452
488
  * event is fired when uploading a file has failed
489
+ *
490
+ * @returns Reference to `this` in order to allow method chaining
453
491
  */
454
492
  attachUploadFailed(
455
493
  /**
@@ -474,6 +512,8 @@ declare namespace sap {
474
512
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer` itself.
475
513
  *
476
514
  * event is fired when uploading a file has failed
515
+ *
516
+ * @returns Reference to `this` in order to allow method chaining
477
517
  */
478
518
  attachUploadFailed(
479
519
  /**
@@ -493,6 +533,8 @@ declare namespace sap {
493
533
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer` itself.
494
534
  *
495
535
  * event is fired when uploading a file is completed successfully
536
+ *
537
+ * @returns Reference to `this` in order to allow method chaining
496
538
  */
497
539
  attachUploadSuccess(
498
540
  /**
@@ -517,6 +559,8 @@ declare namespace sap {
517
559
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer` itself.
518
560
  *
519
561
  * event is fired when uploading a file is completed successfully
562
+ *
563
+ * @returns Reference to `this` in order to allow method chaining
520
564
  */
521
565
  attachUploadSuccess(
522
566
  /**
@@ -531,6 +575,8 @@ declare namespace sap {
531
575
  ): this;
532
576
  /**
533
577
  * Destroys all the attachments in the aggregation {@link #getAttachments attachments}.
578
+ *
579
+ * @returns Reference to `this` in order to allow method chaining
534
580
  */
535
581
  destroyAttachments(): this;
536
582
  /**
@@ -538,6 +584,8 @@ declare namespace sap {
538
584
  * of this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer`.
539
585
  *
540
586
  * The passed function and listener object must match the ones used for event registration.
587
+ *
588
+ * @returns Reference to `this` in order to allow method chaining
541
589
  */
542
590
  detachUploadButtonPress(
543
591
  /**
@@ -553,6 +601,8 @@ declare namespace sap {
553
601
  * Detaches event handler `fnFunction` from the {@link #event:uploadFailed uploadFailed} event of this `sap.uiext.inbox.composite.InboxAttachmentsTileContainer`.
554
602
  *
555
603
  * The passed function and listener object must match the ones used for event registration.
604
+ *
605
+ * @returns Reference to `this` in order to allow method chaining
556
606
  */
557
607
  detachUploadFailed(
558
608
  /**
@@ -569,6 +619,8 @@ declare namespace sap {
569
619
  * `sap.uiext.inbox.composite.InboxAttachmentsTileContainer`.
570
620
  *
571
621
  * The passed function and listener object must match the ones used for event registration.
622
+ *
623
+ * @returns Reference to `this` in order to allow method chaining
572
624
  */
573
625
  detachUploadSuccess(
574
626
  /**
@@ -582,6 +634,8 @@ declare namespace sap {
582
634
  ): this;
583
635
  /**
584
636
  * Fires event {@link #event:uploadButtonPress uploadButtonPress} to attached listeners.
637
+ *
638
+ * @returns Reference to `this` in order to allow method chaining
585
639
  */
586
640
  fireUploadButtonPress(
587
641
  /**
@@ -591,6 +645,8 @@ declare namespace sap {
591
645
  ): this;
592
646
  /**
593
647
  * Fires event {@link #event:uploadFailed uploadFailed} to attached listeners.
648
+ *
649
+ * @returns Reference to `this` in order to allow method chaining
594
650
  */
595
651
  fireUploadFailed(
596
652
  /**
@@ -600,6 +656,8 @@ declare namespace sap {
600
656
  ): this;
601
657
  /**
602
658
  * Fires event {@link #event:uploadSuccess uploadSuccess} to attached listeners.
659
+ *
660
+ * @returns Reference to `this` in order to allow method chaining
603
661
  */
604
662
  fireUploadSuccess(
605
663
  /**
@@ -617,24 +675,32 @@ declare namespace sap {
617
675
  * Gets current value of property {@link #getEnteredDescription enteredDescription}.
618
676
  *
619
677
  * description string entered by user while uploading a file
678
+ *
679
+ * @returns Value of property `enteredDescription`
620
680
  */
621
681
  getEnteredDescription(): string;
622
682
  /**
623
683
  * Gets current value of property {@link #getFileName fileName}.
624
684
  *
625
685
  * name of the selected file for uploading
686
+ *
687
+ * @returns Value of property `fileName`
626
688
  */
627
689
  getFileName(): string;
628
690
  /**
629
691
  * Gets current value of property {@link #getFileType fileType}.
630
692
  *
631
693
  * type of the selected file for uploading
694
+ *
695
+ * @returns Value of property `fileType`
632
696
  */
633
697
  getFileType(): string;
634
698
  /**
635
699
  * Gets current value of property {@link #getIsFileSelected isFileSelected}.
636
700
  *
637
701
  * boolean property to indicate if user has selected a file to upload
702
+ *
703
+ * @returns Value of property `isFileSelected`
638
704
  */
639
705
  getIsFileSelected(): boolean;
640
706
  /**
@@ -643,17 +709,23 @@ declare namespace sap {
643
709
  * boolean value to indicate whether to show Add Attachment tile
644
710
  *
645
711
  * Default value is `true`.
712
+ *
713
+ * @returns Value of property `showAddTile`
646
714
  */
647
715
  getShowAddTile(): boolean;
648
716
  /**
649
717
  * Gets current value of property {@link #getUploadUrl uploadUrl}.
650
718
  *
651
719
  * URL to upload the selected file
720
+ *
721
+ * @returns Value of property `uploadUrl`
652
722
  */
653
723
  getUploadUrl(): string;
654
724
  /**
655
725
  * Checks for the provided `sap.uiext.inbox.composite.InboxAttachmentTile` in the aggregation {@link #getAttachments
656
726
  * attachments}. and returns its index if found or -1 otherwise.
727
+ *
728
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
657
729
  */
658
730
  indexOfAttachment(
659
731
  /**
@@ -663,6 +735,8 @@ declare namespace sap {
663
735
  ): int;
664
736
  /**
665
737
  * Inserts a attachment into the aggregation {@link #getAttachments attachments}.
738
+ *
739
+ * @returns Reference to `this` in order to allow method chaining
666
740
  */
667
741
  insertAttachment(
668
742
  /**
@@ -680,10 +754,14 @@ declare namespace sap {
680
754
  * Removes all the controls from the aggregation {@link #getAttachments attachments}.
681
755
  *
682
756
  * Additionally, it unregisters them from the hosting UIArea.
757
+ *
758
+ * @returns An array of the removed elements (might be empty)
683
759
  */
684
760
  removeAllAttachments(): sap.uiext.inbox.composite.InboxAttachmentTile[];
685
761
  /**
686
762
  * Removes a attachment from the aggregation {@link #getAttachments attachments}.
763
+ *
764
+ * @returns The removed attachment or `null`
687
765
  */
688
766
  removeAttachment(
689
767
  /**
@@ -704,6 +782,8 @@ declare namespace sap {
704
782
  * description string entered by user while uploading a file
705
783
  *
706
784
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
785
+ *
786
+ * @returns Reference to `this` in order to allow method chaining
707
787
  */
708
788
  setEnteredDescription(
709
789
  /**
@@ -717,6 +797,8 @@ declare namespace sap {
717
797
  * name of the selected file for uploading
718
798
  *
719
799
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
800
+ *
801
+ * @returns Reference to `this` in order to allow method chaining
720
802
  */
721
803
  setFileName(
722
804
  /**
@@ -730,6 +812,8 @@ declare namespace sap {
730
812
  * type of the selected file for uploading
731
813
  *
732
814
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
815
+ *
816
+ * @returns Reference to `this` in order to allow method chaining
733
817
  */
734
818
  setFileType(
735
819
  /**
@@ -743,6 +827,8 @@ declare namespace sap {
743
827
  * boolean property to indicate if user has selected a file to upload
744
828
  *
745
829
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
830
+ *
831
+ * @returns Reference to `this` in order to allow method chaining
746
832
  */
747
833
  setIsFileSelected(
748
834
  /**
@@ -758,6 +844,8 @@ declare namespace sap {
758
844
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
759
845
  *
760
846
  * Default value is `true`.
847
+ *
848
+ * @returns Reference to `this` in order to allow method chaining
761
849
  */
762
850
  setShowAddTile(
763
851
  /**
@@ -771,6 +859,8 @@ declare namespace sap {
771
859
  * URL to upload the selected file
772
860
  *
773
861
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
862
+ *
863
+ * @returns Reference to `this` in order to allow method chaining
774
864
  */
775
865
  setUploadUrl(
776
866
  /**
@@ -819,6 +909,8 @@ declare namespace sap {
819
909
  * and enriches it with the information contained in `oClassInfo`.
820
910
  *
821
911
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
912
+ *
913
+ * @returns Created class / constructor function
822
914
  */
823
915
  static extend<T extends Record<string, unknown>>(
824
916
  /**
@@ -840,6 +932,8 @@ declare namespace sap {
840
932
  ): Function;
841
933
  /**
842
934
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxAttachmentTile.
935
+ *
936
+ * @returns Metadata object describing this class
843
937
  */
844
938
  static getMetadata(): sap.ui.core.ElementMetadata;
845
939
  /**
@@ -850,6 +944,8 @@ declare namespace sap {
850
944
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentTile` itself.
851
945
  *
852
946
  * fire this event to delete the attachment
947
+ *
948
+ * @returns Reference to `this` in order to allow method chaining
853
949
  */
854
950
  attachDeleteAttachment(
855
951
  /**
@@ -875,6 +971,8 @@ declare namespace sap {
875
971
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxAttachmentTile` itself.
876
972
  *
877
973
  * fire this event to delete the attachment
974
+ *
975
+ * @returns Reference to `this` in order to allow method chaining
878
976
  */
879
977
  attachDeleteAttachment(
880
978
  /**
@@ -892,6 +990,8 @@ declare namespace sap {
892
990
  * this `sap.uiext.inbox.composite.InboxAttachmentTile`.
893
991
  *
894
992
  * The passed function and listener object must match the ones used for event registration.
993
+ *
994
+ * @returns Reference to `this` in order to allow method chaining
895
995
  */
896
996
  detachDeleteAttachment(
897
997
  /**
@@ -905,6 +1005,8 @@ declare namespace sap {
905
1005
  ): this;
906
1006
  /**
907
1007
  * Fires event {@link #event:deleteAttachment deleteAttachment} to attached listeners.
1008
+ *
1009
+ * @returns Reference to `this` in order to allow method chaining
908
1010
  */
909
1011
  fireDeleteAttachment(
910
1012
  /**
@@ -916,42 +1018,56 @@ declare namespace sap {
916
1018
  * Gets current value of property {@link #getCreatedBy createdBy}.
917
1019
  *
918
1020
  * name of the user who has uploaded attachment
1021
+ *
1022
+ * @returns Value of property `createdBy`
919
1023
  */
920
1024
  getCreatedBy(): string;
921
1025
  /**
922
1026
  * Gets current value of property {@link #getCreationDate creationDate}.
923
1027
  *
924
1028
  * creation date of the attachment
1029
+ *
1030
+ * @returns Value of property `creationDate`
925
1031
  */
926
1032
  getCreationDate(): string;
927
1033
  /**
928
1034
  * Gets current value of property {@link #getDownloadUrl downloadUrl}.
929
1035
  *
930
1036
  * URL for attachment title link to download the attachment.
1037
+ *
1038
+ * @returns Value of property `downloadUrl`
931
1039
  */
932
1040
  getDownloadUrl(): string;
933
1041
  /**
934
1042
  * Gets current value of property {@link #getFileDescription fileDescription}.
935
1043
  *
936
1044
  * description of the attachment
1045
+ *
1046
+ * @returns Value of property `fileDescription`
937
1047
  */
938
1048
  getFileDescription(): string;
939
1049
  /**
940
1050
  * Gets current value of property {@link #getFileName fileName}.
941
1051
  *
942
1052
  * Name of the attachment
1053
+ *
1054
+ * @returns Value of property `fileName`
943
1055
  */
944
1056
  getFileName(): string;
945
1057
  /**
946
1058
  * Gets current value of property {@link #getFileSize fileSize}.
947
1059
  *
948
1060
  * size of the attachment
1061
+ *
1062
+ * @returns Value of property `fileSize`
949
1063
  */
950
1064
  getFileSize(): string;
951
1065
  /**
952
1066
  * Gets current value of property {@link #getFileTypeIcon fileTypeIcon}.
953
1067
  *
954
1068
  * Icon URI of the file type
1069
+ *
1070
+ * @returns Value of property `fileTypeIcon`
955
1071
  */
956
1072
  getFileTypeIcon(): sap.ui.core.URI;
957
1073
  /**
@@ -960,6 +1076,8 @@ declare namespace sap {
960
1076
  * boolean value to indicate whether to show delete button
961
1077
  *
962
1078
  * Default value is `true`.
1079
+ *
1080
+ * @returns Value of property `showDeleteButton`
963
1081
  */
964
1082
  getShowDeleteButton(): boolean;
965
1083
  /**
@@ -968,6 +1086,8 @@ declare namespace sap {
968
1086
  * name of the user who has uploaded attachment
969
1087
  *
970
1088
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1089
+ *
1090
+ * @returns Reference to `this` in order to allow method chaining
971
1091
  */
972
1092
  setCreatedBy(
973
1093
  /**
@@ -981,6 +1101,8 @@ declare namespace sap {
981
1101
  * creation date of the attachment
982
1102
  *
983
1103
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1104
+ *
1105
+ * @returns Reference to `this` in order to allow method chaining
984
1106
  */
985
1107
  setCreationDate(
986
1108
  /**
@@ -994,6 +1116,8 @@ declare namespace sap {
994
1116
  * URL for attachment title link to download the attachment.
995
1117
  *
996
1118
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1119
+ *
1120
+ * @returns Reference to `this` in order to allow method chaining
997
1121
  */
998
1122
  setDownloadUrl(
999
1123
  /**
@@ -1007,6 +1131,8 @@ declare namespace sap {
1007
1131
  * description of the attachment
1008
1132
  *
1009
1133
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1134
+ *
1135
+ * @returns Reference to `this` in order to allow method chaining
1010
1136
  */
1011
1137
  setFileDescription(
1012
1138
  /**
@@ -1020,6 +1146,8 @@ declare namespace sap {
1020
1146
  * Name of the attachment
1021
1147
  *
1022
1148
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1149
+ *
1150
+ * @returns Reference to `this` in order to allow method chaining
1023
1151
  */
1024
1152
  setFileName(
1025
1153
  /**
@@ -1033,6 +1161,8 @@ declare namespace sap {
1033
1161
  * size of the attachment
1034
1162
  *
1035
1163
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1164
+ *
1165
+ * @returns Reference to `this` in order to allow method chaining
1036
1166
  */
1037
1167
  setFileSize(
1038
1168
  /**
@@ -1046,6 +1176,8 @@ declare namespace sap {
1046
1176
  * Icon URI of the file type
1047
1177
  *
1048
1178
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1179
+ *
1180
+ * @returns Reference to `this` in order to allow method chaining
1049
1181
  */
1050
1182
  setFileTypeIcon(
1051
1183
  /**
@@ -1061,6 +1193,8 @@ declare namespace sap {
1061
1193
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1062
1194
  *
1063
1195
  * Default value is `true`.
1196
+ *
1197
+ * @returns Reference to `this` in order to allow method chaining
1064
1198
  */
1065
1199
  setShowDeleteButton(
1066
1200
  /**
@@ -1115,6 +1249,8 @@ declare namespace sap {
1115
1249
  * enriches it with the information contained in `oClassInfo`.
1116
1250
  *
1117
1251
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1252
+ *
1253
+ * @returns Created class / constructor function
1118
1254
  */
1119
1255
  static extend<T extends Record<string, unknown>>(
1120
1256
  /**
@@ -1136,6 +1272,8 @@ declare namespace sap {
1136
1272
  ): Function;
1137
1273
  /**
1138
1274
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxBusyIndicator.
1275
+ *
1276
+ * @returns Metadata object describing this class
1139
1277
  */
1140
1278
  static getMetadata(): sap.ui.core.ElementMetadata;
1141
1279
  }
@@ -1179,6 +1317,8 @@ declare namespace sap {
1179
1317
  * it with the information contained in `oClassInfo`.
1180
1318
  *
1181
1319
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1320
+ *
1321
+ * @returns Created class / constructor function
1182
1322
  */
1183
1323
  static extend<T extends Record<string, unknown>>(
1184
1324
  /**
@@ -1200,42 +1340,56 @@ declare namespace sap {
1200
1340
  ): Function;
1201
1341
  /**
1202
1342
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxComment.
1343
+ *
1344
+ * @returns Metadata object describing this class
1203
1345
  */
1204
1346
  static getMetadata(): sap.ui.core.ElementMetadata;
1205
1347
  /**
1206
1348
  * Gets current value of property {@link #getCreatedBy createdBy}.
1207
1349
  *
1208
1350
  * Unique username of the user responsible for adding comment
1351
+ *
1352
+ * @returns Value of property `createdBy`
1209
1353
  */
1210
1354
  getCreatedBy(): string;
1211
1355
  /**
1212
1356
  * Gets current value of property {@link #getSapOrigin sapOrigin}.
1213
1357
  *
1214
1358
  * Represent system origin in case of multi origin scenario
1359
+ *
1360
+ * @returns Value of property `sapOrigin`
1215
1361
  */
1216
1362
  getSapOrigin(): string;
1217
1363
  /**
1218
1364
  * Gets current value of property {@link #getSender sender}.
1219
1365
  *
1220
1366
  * Sender of the comment chunk
1367
+ *
1368
+ * @returns Value of property `sender`
1221
1369
  */
1222
1370
  getSender(): string;
1223
1371
  /**
1224
1372
  * Gets current value of property {@link #getText text}.
1225
1373
  *
1226
1374
  * The FeedChunk text
1375
+ *
1376
+ * @returns Value of property `text`
1227
1377
  */
1228
1378
  getText(): string;
1229
1379
  /**
1230
1380
  * Gets current value of property {@link #getThumbnailSrc thumbnailSrc}.
1231
1381
  *
1232
1382
  * URL to the thumbnail image.
1383
+ *
1384
+ * @returns Value of property `thumbnailSrc`
1233
1385
  */
1234
1386
  getThumbnailSrc(): sap.ui.core.URI;
1235
1387
  /**
1236
1388
  * Gets current value of property {@link #getTimestamp timestamp}.
1237
1389
  *
1238
1390
  * Format is ISO 8601 YYYY-MM-DDThh:mm:ss.sZ, Z meaning the time is in UTC time zone
1391
+ *
1392
+ * @returns Value of property `timestamp`
1239
1393
  */
1240
1394
  getTimestamp(): string;
1241
1395
  /**
@@ -1244,6 +1398,8 @@ declare namespace sap {
1244
1398
  * Unique username of the user responsible for adding comment
1245
1399
  *
1246
1400
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1401
+ *
1402
+ * @returns Reference to `this` in order to allow method chaining
1247
1403
  */
1248
1404
  setCreatedBy(
1249
1405
  /**
@@ -1257,6 +1413,8 @@ declare namespace sap {
1257
1413
  * Represent system origin in case of multi origin scenario
1258
1414
  *
1259
1415
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1416
+ *
1417
+ * @returns Reference to `this` in order to allow method chaining
1260
1418
  */
1261
1419
  setSapOrigin(
1262
1420
  /**
@@ -1270,6 +1428,8 @@ declare namespace sap {
1270
1428
  * Sender of the comment chunk
1271
1429
  *
1272
1430
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1431
+ *
1432
+ * @returns Reference to `this` in order to allow method chaining
1273
1433
  */
1274
1434
  setSender(
1275
1435
  /**
@@ -1283,6 +1443,8 @@ declare namespace sap {
1283
1443
  * The FeedChunk text
1284
1444
  *
1285
1445
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1446
+ *
1447
+ * @returns Reference to `this` in order to allow method chaining
1286
1448
  */
1287
1449
  setText(
1288
1450
  /**
@@ -1296,6 +1458,8 @@ declare namespace sap {
1296
1458
  * URL to the thumbnail image.
1297
1459
  *
1298
1460
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1461
+ *
1462
+ * @returns Reference to `this` in order to allow method chaining
1299
1463
  */
1300
1464
  setThumbnailSrc(
1301
1465
  /**
@@ -1309,6 +1473,8 @@ declare namespace sap {
1309
1473
  * Format is ISO 8601 YYYY-MM-DDThh:mm:ss.sZ, Z meaning the time is in UTC time zone
1310
1474
  *
1311
1475
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1476
+ *
1477
+ * @returns Reference to `this` in order to allow method chaining
1312
1478
  */
1313
1479
  setTimestamp(
1314
1480
  /**
@@ -1357,6 +1523,8 @@ declare namespace sap {
1357
1523
  * enriches it with the information contained in `oClassInfo`.
1358
1524
  *
1359
1525
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1526
+ *
1527
+ * @returns Created class / constructor function
1360
1528
  */
1361
1529
  static extend<T extends Record<string, unknown>>(
1362
1530
  /**
@@ -1378,10 +1546,14 @@ declare namespace sap {
1378
1546
  ): Function;
1379
1547
  /**
1380
1548
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxTaskComments.
1549
+ *
1550
+ * @returns Metadata object describing this class
1381
1551
  */
1382
1552
  static getMetadata(): sap.ui.core.ElementMetadata;
1383
1553
  /**
1384
1554
  * Adds some comment to the aggregation {@link #getComments comments}.
1555
+ *
1556
+ * @returns Reference to `this` in order to allow method chaining
1385
1557
  */
1386
1558
  addComment(
1387
1559
  /**
@@ -1396,6 +1568,8 @@ declare namespace sap {
1396
1568
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxTaskComments` itself.
1397
1569
  *
1398
1570
  * Event is raised when submit on the feeder is pressed.
1571
+ *
1572
+ * @returns Reference to `this` in order to allow method chaining
1399
1573
  */
1400
1574
  attachCommentSubmit(
1401
1575
  /**
@@ -1420,6 +1594,8 @@ declare namespace sap {
1420
1594
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxTaskComments` itself.
1421
1595
  *
1422
1596
  * Event is raised when submit on the feeder is pressed.
1597
+ *
1598
+ * @returns Reference to `this` in order to allow method chaining
1423
1599
  */
1424
1600
  attachCommentSubmit(
1425
1601
  /**
@@ -1434,6 +1610,8 @@ declare namespace sap {
1434
1610
  ): this;
1435
1611
  /**
1436
1612
  * Destroys all the comments in the aggregation {@link #getComments comments}.
1613
+ *
1614
+ * @returns Reference to `this` in order to allow method chaining
1437
1615
  */
1438
1616
  destroyComments(): this;
1439
1617
  /**
@@ -1441,6 +1619,8 @@ declare namespace sap {
1441
1619
  * `sap.uiext.inbox.composite.InboxTaskComments`.
1442
1620
  *
1443
1621
  * The passed function and listener object must match the ones used for event registration.
1622
+ *
1623
+ * @returns Reference to `this` in order to allow method chaining
1444
1624
  */
1445
1625
  detachCommentSubmit(
1446
1626
  /**
@@ -1454,6 +1634,8 @@ declare namespace sap {
1454
1634
  ): this;
1455
1635
  /**
1456
1636
  * Fires event {@link #event:commentSubmit commentSubmit} to attached listeners.
1637
+ *
1638
+ * @returns Reference to `this` in order to allow method chaining
1457
1639
  */
1458
1640
  fireCommentSubmit(
1459
1641
  /**
@@ -1471,12 +1653,16 @@ declare namespace sap {
1471
1653
  * Gets current value of property {@link #getFeederSender feederSender}.
1472
1654
  *
1473
1655
  * Sender for the comment feeder
1656
+ *
1657
+ * @returns Value of property `feederSender`
1474
1658
  */
1475
1659
  getFeederSender(): string;
1476
1660
  /**
1477
1661
  * Gets current value of property {@link #getFeederThumbnailSrc feederThumbnailSrc}.
1478
1662
  *
1479
1663
  * URL to the thumbnail image for the comment feeder.
1664
+ *
1665
+ * @returns Value of property `feederThumbnailSrc`
1480
1666
  */
1481
1667
  getFeederThumbnailSrc(): sap.ui.core.URI;
1482
1668
  /**
@@ -1485,6 +1671,8 @@ declare namespace sap {
1485
1671
  * Boolean value for visibilty of comment feeder
1486
1672
  *
1487
1673
  * Default value is `true`.
1674
+ *
1675
+ * @returns Value of property `showFeeder`
1488
1676
  */
1489
1677
  getShowFeeder(): boolean;
1490
1678
  /**
@@ -1493,11 +1681,15 @@ declare namespace sap {
1493
1681
  * Boolean value for visibility of header
1494
1682
  *
1495
1683
  * Default value is `false`.
1684
+ *
1685
+ * @returns Value of property `showHeader`
1496
1686
  */
1497
1687
  getShowHeader(): boolean;
1498
1688
  /**
1499
1689
  * Checks for the provided `sap.uiext.inbox.composite.InboxComment` in the aggregation {@link #getComments
1500
1690
  * comments}. and returns its index if found or -1 otherwise.
1691
+ *
1692
+ * @returns The index of the provided control in the aggregation if found, or -1 otherwise
1501
1693
  */
1502
1694
  indexOfComment(
1503
1695
  /**
@@ -1507,6 +1699,8 @@ declare namespace sap {
1507
1699
  ): int;
1508
1700
  /**
1509
1701
  * Inserts a comment into the aggregation {@link #getComments comments}.
1702
+ *
1703
+ * @returns Reference to `this` in order to allow method chaining
1510
1704
  */
1511
1705
  insertComment(
1512
1706
  /**
@@ -1524,10 +1718,14 @@ declare namespace sap {
1524
1718
  * Removes all the controls from the aggregation {@link #getComments comments}.
1525
1719
  *
1526
1720
  * Additionally, it unregisters them from the hosting UIArea.
1721
+ *
1722
+ * @returns An array of the removed elements (might be empty)
1527
1723
  */
1528
1724
  removeAllComments(): sap.uiext.inbox.composite.InboxComment[];
1529
1725
  /**
1530
1726
  * Removes a comment from the aggregation {@link #getComments comments}.
1727
+ *
1728
+ * @returns The removed comment or `null`
1531
1729
  */
1532
1730
  removeComment(
1533
1731
  /**
@@ -1541,6 +1739,8 @@ declare namespace sap {
1541
1739
  * Sender for the comment feeder
1542
1740
  *
1543
1741
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1742
+ *
1743
+ * @returns Reference to `this` in order to allow method chaining
1544
1744
  */
1545
1745
  setFeederSender(
1546
1746
  /**
@@ -1554,6 +1754,8 @@ declare namespace sap {
1554
1754
  * URL to the thumbnail image for the comment feeder.
1555
1755
  *
1556
1756
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1757
+ *
1758
+ * @returns Reference to `this` in order to allow method chaining
1557
1759
  */
1558
1760
  setFeederThumbnailSrc(
1559
1761
  /**
@@ -1569,6 +1771,8 @@ declare namespace sap {
1569
1771
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1570
1772
  *
1571
1773
  * Default value is `true`.
1774
+ *
1775
+ * @returns Reference to `this` in order to allow method chaining
1572
1776
  */
1573
1777
  setShowFeeder(
1574
1778
  /**
@@ -1584,6 +1788,8 @@ declare namespace sap {
1584
1788
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1585
1789
  *
1586
1790
  * Default value is `false`.
1791
+ *
1792
+ * @returns Reference to `this` in order to allow method chaining
1587
1793
  */
1588
1794
  setShowHeader(
1589
1795
  /**
@@ -1632,6 +1838,8 @@ declare namespace sap {
1632
1838
  * and enriches it with the information contained in `oClassInfo`.
1633
1839
  *
1634
1840
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
1841
+ *
1842
+ * @returns Created class / constructor function
1635
1843
  */
1636
1844
  static extend<T extends Record<string, unknown>>(
1637
1845
  /**
@@ -1653,10 +1861,14 @@ declare namespace sap {
1653
1861
  ): Function;
1654
1862
  /**
1655
1863
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxTaskTitleControl.
1864
+ *
1865
+ * @returns Metadata object describing this class
1656
1866
  */
1657
1867
  static getMetadata(): sap.ui.core.ElementMetadata;
1658
1868
  /**
1659
1869
  * Destroys the titleLink in the aggregation {@link #getTitleLink titleLink}.
1870
+ *
1871
+ * @returns Reference to `this` in order to allow method chaining
1660
1872
  */
1661
1873
  destroyTitleLink(): this;
1662
1874
  /**
@@ -1665,24 +1877,32 @@ declare namespace sap {
1665
1877
  * Category icon
1666
1878
  *
1667
1879
  * Default value is `'hasCategory'`.
1880
+ *
1881
+ * @returns Value of property `categoryIconURI`
1668
1882
  */
1669
1883
  getCategoryIconURI(): sap.ui.core.URI;
1670
1884
  /**
1671
1885
  * Gets current value of property {@link #getHasAttachments hasAttachments}.
1672
1886
  *
1673
1887
  * has Attachments
1888
+ *
1889
+ * @returns Value of property `hasAttachments`
1674
1890
  */
1675
1891
  getHasAttachments(): boolean;
1676
1892
  /**
1677
1893
  * Gets current value of property {@link #getHasComments hasComments}.
1678
1894
  *
1679
1895
  * has Comments
1896
+ *
1897
+ * @returns Value of property `hasComments`
1680
1898
  */
1681
1899
  getHasComments(): boolean;
1682
1900
  /**
1683
1901
  * Gets current value of property {@link #getTaskTitle taskTitle}.
1684
1902
  *
1685
1903
  * The Task Title of the Task
1904
+ *
1905
+ * @returns Value of property `taskTitle`
1686
1906
  */
1687
1907
  getTaskTitle(): string;
1688
1908
  /**
@@ -1699,6 +1919,8 @@ declare namespace sap {
1699
1919
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1700
1920
  *
1701
1921
  * Default value is `'hasCategory'`.
1922
+ *
1923
+ * @returns Reference to `this` in order to allow method chaining
1702
1924
  */
1703
1925
  setCategoryIconURI(
1704
1926
  /**
@@ -1712,6 +1934,8 @@ declare namespace sap {
1712
1934
  * has Attachments
1713
1935
  *
1714
1936
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1937
+ *
1938
+ * @returns Reference to `this` in order to allow method chaining
1715
1939
  */
1716
1940
  setHasAttachments(
1717
1941
  /**
@@ -1725,6 +1949,8 @@ declare namespace sap {
1725
1949
  * has Comments
1726
1950
  *
1727
1951
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1952
+ *
1953
+ * @returns Reference to `this` in order to allow method chaining
1728
1954
  */
1729
1955
  setHasComments(
1730
1956
  /**
@@ -1738,6 +1964,8 @@ declare namespace sap {
1738
1964
  * The Task Title of the Task
1739
1965
  *
1740
1966
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
1967
+ *
1968
+ * @returns Reference to `this` in order to allow method chaining
1741
1969
  */
1742
1970
  setTaskTitle(
1743
1971
  /**
@@ -1747,6 +1975,8 @@ declare namespace sap {
1747
1975
  ): this;
1748
1976
  /**
1749
1977
  * Sets the aggregated {@link #getTitleLink titleLink}.
1978
+ *
1979
+ * @returns Reference to `this` in order to allow method chaining
1750
1980
  */
1751
1981
  setTitleLink(
1752
1982
  /**
@@ -1795,6 +2025,8 @@ declare namespace sap {
1795
2025
  * and enriches it with the information contained in `oClassInfo`.
1796
2026
  *
1797
2027
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2028
+ *
2029
+ * @returns Created class / constructor function
1798
2030
  */
1799
2031
  static extend<T extends Record<string, unknown>>(
1800
2032
  /**
@@ -1816,6 +2048,8 @@ declare namespace sap {
1816
2048
  ): Function;
1817
2049
  /**
1818
2050
  * Returns a metadata object for class sap.uiext.inbox.composite.InboxUploadAttachmentTile.
2051
+ *
2052
+ * @returns Metadata object describing this class
1819
2053
  */
1820
2054
  static getMetadata(): sap.ui.core.ElementMetadata;
1821
2055
  /**
@@ -1826,6 +2060,8 @@ declare namespace sap {
1826
2060
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxUploadAttachmentTile` itself.
1827
2061
  *
1828
2062
  * event is fired when upload for selected file is requested
2063
+ *
2064
+ * @returns Reference to `this` in order to allow method chaining
1829
2065
  */
1830
2066
  attachUploadSelectedFile(
1831
2067
  /**
@@ -1851,6 +2087,8 @@ declare namespace sap {
1851
2087
  * otherwise it will be bound to this `sap.uiext.inbox.composite.InboxUploadAttachmentTile` itself.
1852
2088
  *
1853
2089
  * event is fired when upload for selected file is requested
2090
+ *
2091
+ * @returns Reference to `this` in order to allow method chaining
1854
2092
  */
1855
2093
  attachUploadSelectedFile(
1856
2094
  /**
@@ -1868,6 +2106,8 @@ declare namespace sap {
1868
2106
  * of this `sap.uiext.inbox.composite.InboxUploadAttachmentTile`.
1869
2107
  *
1870
2108
  * The passed function and listener object must match the ones used for event registration.
2109
+ *
2110
+ * @returns Reference to `this` in order to allow method chaining
1871
2111
  */
1872
2112
  detachUploadSelectedFile(
1873
2113
  /**
@@ -1881,6 +2121,8 @@ declare namespace sap {
1881
2121
  ): this;
1882
2122
  /**
1883
2123
  * Fires event {@link #event:uploadSelectedFile uploadSelectedFile} to attached listeners.
2124
+ *
2125
+ * @returns Reference to `this` in order to allow method chaining
1884
2126
  */
1885
2127
  fireUploadSelectedFile(
1886
2128
  /**
@@ -1892,12 +2134,16 @@ declare namespace sap {
1892
2134
  * Gets current value of property {@link #getFileName fileName}.
1893
2135
  *
1894
2136
  * name of the selected file
2137
+ *
2138
+ * @returns Value of property `fileName`
1895
2139
  */
1896
2140
  getFileName(): string;
1897
2141
  /**
1898
2142
  * Gets current value of property {@link #getFileTypeIcon fileTypeIcon}.
1899
2143
  *
1900
2144
  * icon URI of the selected file type
2145
+ *
2146
+ * @returns Value of property `fileTypeIcon`
1901
2147
  */
1902
2148
  getFileTypeIcon(): sap.ui.core.URI;
1903
2149
  /**
@@ -1906,6 +2152,8 @@ declare namespace sap {
1906
2152
  * name of the selected file
1907
2153
  *
1908
2154
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2155
+ *
2156
+ * @returns Reference to `this` in order to allow method chaining
1909
2157
  */
1910
2158
  setFileName(
1911
2159
  /**
@@ -1919,6 +2167,8 @@ declare namespace sap {
1919
2167
  * icon URI of the selected file type
1920
2168
  *
1921
2169
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2170
+ *
2171
+ * @returns Reference to `this` in order to allow method chaining
1922
2172
  */
1923
2173
  setFileTypeIcon(
1924
2174
  /**
@@ -1944,14 +2194,16 @@ declare namespace sap {
1944
2194
  */
1945
2195
  handleBindings?:
1946
2196
  | boolean
1947
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2197
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2198
+ | `{${string}}`;
1948
2199
 
1949
2200
  /**
1950
2201
  * set this to true to enable opening of completed tasks.
1951
2202
  */
1952
2203
  openCompletedTasks?:
1953
2204
  | boolean
1954
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2205
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2206
+ | `{${string}}`;
1955
2207
 
1956
2208
  /**
1957
2209
  * If handleBindings property is set to true , the control assumes an oData model is set and handles the
@@ -1994,13 +2246,17 @@ declare namespace sap {
1994
2246
  */
1995
2247
  showLogoutButton?:
1996
2248
  | boolean
1997
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2249
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2250
+ | `{${string}}`;
1998
2251
 
1999
2252
  /**
2000
2253
  * Property to indicate whether loggod on User's Name in the header should be displayed or not. Default
2001
2254
  * value is true.
2002
2255
  */
2003
- showUserName?: boolean | sap.ui.base.ManagedObject.PropertyBindingInfo;
2256
+ showUserName?:
2257
+ | boolean
2258
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2259
+ | `{${string}}`;
2004
2260
 
2005
2261
  /**
2006
2262
  * User name to be shown in the header.
@@ -2024,7 +2280,8 @@ declare namespace sap {
2024
2280
  */
2025
2281
  showMasterPageNavBtn?:
2026
2282
  | boolean
2027
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2283
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2284
+ | `{${string}}`;
2028
2285
 
2029
2286
  /**
2030
2287
  * TCM service URL
@@ -2034,14 +2291,18 @@ declare namespace sap {
2034
2291
  /**
2035
2292
  * Filters to be applied on the data shown in the MasterPage
2036
2293
  */
2037
- filters?: object[] | sap.ui.base.ManagedObject.PropertyBindingInfo;
2294
+ filters?:
2295
+ | object[]
2296
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2297
+ | `{${string}}`;
2038
2298
 
2039
2299
  /**
2040
2300
  * TCM Configuration object for control initialization.
2041
2301
  */
2042
2302
  tcmConfiguration?:
2043
2303
  | object
2044
- | sap.ui.base.ManagedObject.PropertyBindingInfo;
2304
+ | sap.ui.base.ManagedObject.PropertyBindingInfo
2305
+ | `{${string}}`;
2045
2306
 
2046
2307
  /**
2047
2308
  * This is the splitApp that is created inside the control
@@ -2212,6 +2473,8 @@ declare namespace sap {
2212
2473
  * information contained in `oClassInfo`.
2213
2474
  *
2214
2475
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
2476
+ *
2477
+ * @returns Created class / constructor function
2215
2478
  */
2216
2479
  static extend<T extends Record<string, unknown>>(
2217
2480
  /**
@@ -2230,6 +2493,8 @@ declare namespace sap {
2230
2493
  ): Function;
2231
2494
  /**
2232
2495
  * Returns a metadata object for class sap.uiext.inbox.Inbox.
2496
+ *
2497
+ * @returns Metadata object describing this class
2233
2498
  */
2234
2499
  static getMetadata(): sap.ui.core.ElementMetadata;
2235
2500
  /**
@@ -2267,6 +2532,8 @@ declare namespace sap {
2267
2532
  * If handleBindings property is set to true , the control assumes an oData model is set and handles the
2268
2533
  * complete logic within. In this case once the oData request is complete, this event is fired with additional
2269
2534
  * parameters.
2535
+ *
2536
+ * @returns Reference to `this` in order to allow method chaining
2270
2537
  */
2271
2538
  attachODataRequestCompleted(
2272
2539
  /**
@@ -2293,6 +2560,8 @@ declare namespace sap {
2293
2560
  * If handleBindings property is set to true , the control assumes an oData model is set and handles the
2294
2561
  * complete logic within. In this case once the oData request is complete, this event is fired with additional
2295
2562
  * parameters.
2563
+ *
2564
+ * @returns Reference to `this` in order to allow method chaining
2296
2565
  */
2297
2566
  attachODataRequestCompleted(
2298
2567
  /**
@@ -2311,6 +2580,8 @@ declare namespace sap {
2311
2580
  * otherwise it will be bound to this `sap.uiext.inbox.Inbox` itself.
2312
2581
  *
2313
2582
  * this event is fires to handle refresh Action, when the handleBindings property is set to false.
2583
+ *
2584
+ * @returns Reference to `this` in order to allow method chaining
2314
2585
  */
2315
2586
  attachRefresh(
2316
2587
  /**
@@ -2334,6 +2605,8 @@ declare namespace sap {
2334
2605
  * otherwise it will be bound to this `sap.uiext.inbox.Inbox` itself.
2335
2606
  *
2336
2607
  * this event is fires to handle refresh Action, when the handleBindings property is set to false.
2608
+ *
2609
+ * @returns Reference to `this` in order to allow method chaining
2337
2610
  */
2338
2611
  attachRefresh(
2339
2612
  /**
@@ -2353,6 +2626,8 @@ declare namespace sap {
2353
2626
  *
2354
2627
  * this event is fires to handle task Actions - Claim, Release, when the handleBindings property is set
2355
2628
  * to false.
2629
+ *
2630
+ * @returns Reference to `this` in order to allow method chaining
2356
2631
  */
2357
2632
  attachTaskAction(
2358
2633
  /**
@@ -2377,6 +2652,8 @@ declare namespace sap {
2377
2652
  *
2378
2653
  * this event is fires to handle task Actions - Claim, Release, when the handleBindings property is set
2379
2654
  * to false.
2655
+ *
2656
+ * @returns Reference to `this` in order to allow method chaining
2380
2657
  */
2381
2658
  attachTaskAction(
2382
2659
  /**
@@ -2396,6 +2673,8 @@ declare namespace sap {
2396
2673
  * otherwise it will be bound to this `sap.uiext.inbox.Inbox` itself.
2397
2674
  *
2398
2675
  * This event is fired when table row selection is changed in the list view of Inbox control
2676
+ *
2677
+ * @returns Reference to `this` in order to allow method chaining
2399
2678
  */
2400
2679
  attachTaskSelectionChange(
2401
2680
  /**
@@ -2420,6 +2699,8 @@ declare namespace sap {
2420
2699
  * otherwise it will be bound to this `sap.uiext.inbox.Inbox` itself.
2421
2700
  *
2422
2701
  * This event is fired when table row selection is changed in the list view of Inbox control
2702
+ *
2703
+ * @returns Reference to `this` in order to allow method chaining
2423
2704
  */
2424
2705
  attachTaskSelectionChange(
2425
2706
  /**
@@ -2513,6 +2794,8 @@ declare namespace sap {
2513
2794
  * event of this `sap.uiext.inbox.Inbox`.
2514
2795
  *
2515
2796
  * The passed function and listener object must match the ones used for event registration.
2797
+ *
2798
+ * @returns Reference to `this` in order to allow method chaining
2516
2799
  */
2517
2800
  detachODataRequestCompleted(
2518
2801
  /**
@@ -2528,6 +2811,8 @@ declare namespace sap {
2528
2811
  * Detaches event handler `fnFunction` from the {@link #event:refresh refresh} event of this `sap.uiext.inbox.Inbox`.
2529
2812
  *
2530
2813
  * The passed function and listener object must match the ones used for event registration.
2814
+ *
2815
+ * @returns Reference to `this` in order to allow method chaining
2531
2816
  */
2532
2817
  detachRefresh(
2533
2818
  /**
@@ -2543,6 +2828,8 @@ declare namespace sap {
2543
2828
  * Detaches event handler `fnFunction` from the {@link #event:taskAction taskAction} event of this `sap.uiext.inbox.Inbox`.
2544
2829
  *
2545
2830
  * The passed function and listener object must match the ones used for event registration.
2831
+ *
2832
+ * @returns Reference to `this` in order to allow method chaining
2546
2833
  */
2547
2834
  detachTaskAction(
2548
2835
  /**
@@ -2559,6 +2846,8 @@ declare namespace sap {
2559
2846
  * of this `sap.uiext.inbox.Inbox`.
2560
2847
  *
2561
2848
  * The passed function and listener object must match the ones used for event registration.
2849
+ *
2850
+ * @returns Reference to `this` in order to allow method chaining
2562
2851
  */
2563
2852
  detachTaskSelectionChange(
2564
2853
  /**
@@ -2572,6 +2861,8 @@ declare namespace sap {
2572
2861
  ): this;
2573
2862
  /**
2574
2863
  * Fires event {@link #event:oDataRequestCompleted oDataRequestCompleted} to attached listeners.
2864
+ *
2865
+ * @returns Reference to `this` in order to allow method chaining
2575
2866
  */
2576
2867
  fireODataRequestCompleted(
2577
2868
  /**
@@ -2581,6 +2872,8 @@ declare namespace sap {
2581
2872
  ): this;
2582
2873
  /**
2583
2874
  * Fires event {@link #event:refresh refresh} to attached listeners.
2875
+ *
2876
+ * @returns Reference to `this` in order to allow method chaining
2584
2877
  */
2585
2878
  fireRefresh(
2586
2879
  /**
@@ -2590,6 +2883,8 @@ declare namespace sap {
2590
2883
  ): this;
2591
2884
  /**
2592
2885
  * Fires event {@link #event:taskAction taskAction} to attached listeners.
2886
+ *
2887
+ * @returns Reference to `this` in order to allow method chaining
2593
2888
  */
2594
2889
  fireTaskAction(
2595
2890
  /**
@@ -2599,6 +2894,8 @@ declare namespace sap {
2599
2894
  ): this;
2600
2895
  /**
2601
2896
  * Fires event {@link #event:taskSelectionChange taskSelectionChange} to attached listeners.
2897
+ *
2898
+ * @returns Reference to `this` in order to allow method chaining
2602
2899
  */
2603
2900
  fireTaskSelectionChange(
2604
2901
  /**
@@ -2613,6 +2910,8 @@ declare namespace sap {
2613
2910
  * and Task Execution URL population. See function call back methods.
2614
2911
  *
2615
2912
  * Default value is `true`.
2913
+ *
2914
+ * @returns Value of property `handleBindings`
2616
2915
  */
2617
2916
  getHandleBindings(): boolean;
2618
2917
  /**
@@ -2621,6 +2920,8 @@ declare namespace sap {
2621
2920
  * set this to true to enable opening of completed tasks.
2622
2921
  *
2623
2922
  * Default value is `false`.
2923
+ *
2924
+ * @returns Value of property `openCompletedTasks`
2624
2925
  */
2625
2926
  getOpenCompletedTasks(): boolean;
2626
2927
  /**
@@ -2638,6 +2939,8 @@ declare namespace sap {
2638
2939
  *
2639
2940
  * set the theme URL parameter string to be appended to the task Execution URL. In case of a function callback
2640
2941
  * set for Task Execution PopUp, this string will not be appended.
2942
+ *
2943
+ * @returns Value of property `taskExecutionURLThemeValue`
2641
2944
  */
2642
2945
  getTaskExecutionURLThemeValue(): string;
2643
2946
  /**
@@ -2671,6 +2974,8 @@ declare namespace sap {
2671
2974
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2672
2975
  *
2673
2976
  * Default value is `true`.
2977
+ *
2978
+ * @returns Reference to `this` in order to allow method chaining
2674
2979
  */
2675
2980
  setHandleBindings(
2676
2981
  /**
@@ -2686,6 +2991,8 @@ declare namespace sap {
2686
2991
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
2687
2992
  *
2688
2993
  * Default value is `false`.
2994
+ *
2995
+ * @returns Reference to `this` in order to allow method chaining
2689
2996
  */
2690
2997
  setOpenCompletedTasks(
2691
2998
  /**
@@ -2724,6 +3031,8 @@ declare namespace sap {
2724
3031
  * set for Task Execution PopUp, this string will not be appended.
2725
3032
  *
2726
3033
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3034
+ *
3035
+ * @returns Reference to `this` in order to allow method chaining
2727
3036
  */
2728
3037
  setTaskExecutionURLThemeValue(
2729
3038
  /**
@@ -2746,6 +3055,8 @@ declare namespace sap {
2746
3055
  * it with the information contained in `oClassInfo`.
2747
3056
  *
2748
3057
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
3058
+ *
3059
+ * @returns Created class / constructor function
2749
3060
  */
2750
3061
  static extend<T extends Record<string, unknown>>(
2751
3062
  /**
@@ -2764,6 +3075,8 @@ declare namespace sap {
2764
3075
  ): Function;
2765
3076
  /**
2766
3077
  * Returns a metadata object for class sap.uiext.inbox.InboxConfiguration.
3078
+ *
3079
+ * @returns Metadata object describing this class
2767
3080
  */
2768
3081
  static getMetadata(): sap.ui.base.Metadata;
2769
3082
  /**
@@ -2785,6 +3098,8 @@ declare namespace sap {
2785
3098
  * the information contained in `oClassInfo`.
2786
3099
  *
2787
3100
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
3101
+ *
3102
+ * @returns Created class / constructor function
2788
3103
  */
2789
3104
  static extend<T extends Record<string, unknown>>(
2790
3105
  /**
@@ -2803,6 +3118,8 @@ declare namespace sap {
2803
3118
  ): Function;
2804
3119
  /**
2805
3120
  * Returns a metadata object for class sap.uiext.inbox.InboxFilters.
3121
+ *
3122
+ * @returns Metadata object describing this class
2806
3123
  */
2807
3124
  static getMetadata(): sap.ui.base.Metadata;
2808
3125
  /**
@@ -2872,6 +3189,8 @@ declare namespace sap {
2872
3189
  * with the information contained in `oClassInfo`.
2873
3190
  *
2874
3191
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3192
+ *
3193
+ * @returns Created class / constructor function
2875
3194
  */
2876
3195
  static extend<T extends Record<string, unknown>>(
2877
3196
  /**
@@ -2890,6 +3209,8 @@ declare namespace sap {
2890
3209
  ): Function;
2891
3210
  /**
2892
3211
  * Returns a metadata object for class sap.uiext.inbox.InboxLaunchPad.
3212
+ *
3213
+ * @returns Metadata object describing this class
2893
3214
  */
2894
3215
  static getMetadata(): sap.ui.core.ElementMetadata;
2895
3216
  /**
@@ -2899,6 +3220,8 @@ declare namespace sap {
2899
3220
  * otherwise it will be bound to this `sap.uiext.inbox.InboxLaunchPad` itself.
2900
3221
  *
2901
3222
  * Fired when the user clicks the "Log-off" button.
3223
+ *
3224
+ * @returns Reference to `this` in order to allow method chaining
2902
3225
  */
2903
3226
  attachLogout(
2904
3227
  /**
@@ -2922,6 +3245,8 @@ declare namespace sap {
2922
3245
  * otherwise it will be bound to this `sap.uiext.inbox.InboxLaunchPad` itself.
2923
3246
  *
2924
3247
  * Fired when the user clicks the "Log-off" button.
3248
+ *
3249
+ * @returns Reference to `this` in order to allow method chaining
2925
3250
  */
2926
3251
  attachLogout(
2927
3252
  /**
@@ -2940,6 +3265,8 @@ declare namespace sap {
2940
3265
  * otherwise it will be bound to this `sap.uiext.inbox.InboxLaunchPad` itself.
2941
3266
  *
2942
3267
  * Fires an event when a tile is selected in Inbox LaunchPad.
3268
+ *
3269
+ * @returns Reference to `this` in order to allow method chaining
2943
3270
  */
2944
3271
  attachTileSelected(
2945
3272
  /**
@@ -2963,6 +3290,8 @@ declare namespace sap {
2963
3290
  * otherwise it will be bound to this `sap.uiext.inbox.InboxLaunchPad` itself.
2964
3291
  *
2965
3292
  * Fires an event when a tile is selected in Inbox LaunchPad.
3293
+ *
3294
+ * @returns Reference to `this` in order to allow method chaining
2966
3295
  */
2967
3296
  attachTileSelected(
2968
3297
  /**
@@ -2978,6 +3307,8 @@ declare namespace sap {
2978
3307
  * Detaches event handler `fnFunction` from the {@link #event:logout logout} event of this `sap.uiext.inbox.InboxLaunchPad`.
2979
3308
  *
2980
3309
  * The passed function and listener object must match the ones used for event registration.
3310
+ *
3311
+ * @returns Reference to `this` in order to allow method chaining
2981
3312
  */
2982
3313
  detachLogout(
2983
3314
  /**
@@ -2993,6 +3324,8 @@ declare namespace sap {
2993
3324
  * Detaches event handler `fnFunction` from the {@link #event:tileSelected tileSelected} event of this `sap.uiext.inbox.InboxLaunchPad`.
2994
3325
  *
2995
3326
  * The passed function and listener object must match the ones used for event registration.
3327
+ *
3328
+ * @returns Reference to `this` in order to allow method chaining
2996
3329
  */
2997
3330
  detachTileSelected(
2998
3331
  /**
@@ -3006,6 +3339,8 @@ declare namespace sap {
3006
3339
  ): this;
3007
3340
  /**
3008
3341
  * Fires event {@link #event:logout logout} to attached listeners.
3342
+ *
3343
+ * @returns Reference to `this` in order to allow method chaining
3009
3344
  */
3010
3345
  fireLogout(
3011
3346
  /**
@@ -3015,6 +3350,8 @@ declare namespace sap {
3015
3350
  ): this;
3016
3351
  /**
3017
3352
  * Fires event {@link #event:tileSelected tileSelected} to attached listeners.
3353
+ *
3354
+ * @returns Reference to `this` in order to allow method chaining
3018
3355
  */
3019
3356
  fireTileSelected(
3020
3357
  /**
@@ -3026,6 +3363,8 @@ declare namespace sap {
3026
3363
  * Gets current value of property {@link #getLogoSrc logoSrc}.
3027
3364
  *
3028
3365
  * Path (src) to the logo icon to be displayed in the Inbox LaunchPad header.
3366
+ *
3367
+ * @returns Value of property `logoSrc`
3029
3368
  */
3030
3369
  getLogoSrc(): string;
3031
3370
  /**
@@ -3035,6 +3374,8 @@ declare namespace sap {
3035
3374
  * is true.
3036
3375
  *
3037
3376
  * Default value is `true`.
3377
+ *
3378
+ * @returns Value of property `showLogoutButton`
3038
3379
  */
3039
3380
  getShowLogoutButton(): boolean;
3040
3381
  /**
@@ -3044,6 +3385,8 @@ declare namespace sap {
3044
3385
  * value is true.
3045
3386
  *
3046
3387
  * Default value is `true`.
3388
+ *
3389
+ * @returns Value of property `showUserName`
3047
3390
  */
3048
3391
  getShowUserName(): boolean;
3049
3392
  /**
@@ -3052,12 +3395,16 @@ declare namespace sap {
3052
3395
  * The title text appearing in Inbox LaunchPad header bar.
3053
3396
  *
3054
3397
  * Default value is `'Inbox Launch Pad Title'`.
3398
+ *
3399
+ * @returns Value of property `title`
3055
3400
  */
3056
3401
  getTitle(): string;
3057
3402
  /**
3058
3403
  * Gets current value of property {@link #getUserName userName}.
3059
3404
  *
3060
3405
  * User name to be shown in the header.
3406
+ *
3407
+ * @returns Value of property `userName`
3061
3408
  */
3062
3409
  getUserName(): string;
3063
3410
  /**
@@ -3066,6 +3413,8 @@ declare namespace sap {
3066
3413
  * Path (src) to the logo icon to be displayed in the Inbox LaunchPad header.
3067
3414
  *
3068
3415
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3416
+ *
3417
+ * @returns Reference to `this` in order to allow method chaining
3069
3418
  */
3070
3419
  setLogoSrc(
3071
3420
  /**
@@ -3082,6 +3431,8 @@ declare namespace sap {
3082
3431
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3083
3432
  *
3084
3433
  * Default value is `true`.
3434
+ *
3435
+ * @returns Reference to `this` in order to allow method chaining
3085
3436
  */
3086
3437
  setShowLogoutButton(
3087
3438
  /**
@@ -3098,6 +3449,8 @@ declare namespace sap {
3098
3449
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3099
3450
  *
3100
3451
  * Default value is `true`.
3452
+ *
3453
+ * @returns Reference to `this` in order to allow method chaining
3101
3454
  */
3102
3455
  setShowUserName(
3103
3456
  /**
@@ -3113,6 +3466,8 @@ declare namespace sap {
3113
3466
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3114
3467
  *
3115
3468
  * Default value is `'Inbox Launch Pad Title'`.
3469
+ *
3470
+ * @returns Reference to `this` in order to allow method chaining
3116
3471
  */
3117
3472
  setTitle(
3118
3473
  /**
@@ -3126,6 +3481,8 @@ declare namespace sap {
3126
3481
  * User name to be shown in the header.
3127
3482
  *
3128
3483
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3484
+ *
3485
+ * @returns Reference to `this` in order to allow method chaining
3129
3486
  */
3130
3487
  setUserName(
3131
3488
  /**
@@ -3148,6 +3505,8 @@ declare namespace sap {
3148
3505
  * it with the information contained in `oClassInfo`.
3149
3506
  *
3150
3507
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
3508
+ *
3509
+ * @returns Created class / constructor function
3151
3510
  */
3152
3511
  static extend<T extends Record<string, unknown>>(
3153
3512
  /**
@@ -3166,6 +3525,8 @@ declare namespace sap {
3166
3525
  ): Function;
3167
3526
  /**
3168
3527
  * Returns a metadata object for class sap.uiext.inbox.InboxPrimaryFilters.
3528
+ *
3529
+ * @returns Metadata object describing this class
3169
3530
  */
3170
3531
  static getMetadata(): sap.ui.base.Metadata;
3171
3532
  /**
@@ -3187,6 +3548,8 @@ declare namespace sap {
3187
3548
  * it with the information contained in `oClassInfo`.
3188
3549
  *
3189
3550
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.base.Object.extend}.
3551
+ *
3552
+ * @returns Created class / constructor function
3190
3553
  */
3191
3554
  static extend<T extends Record<string, unknown>>(
3192
3555
  /**
@@ -3205,6 +3568,8 @@ declare namespace sap {
3205
3568
  ): Function;
3206
3569
  /**
3207
3570
  * Returns a metadata object for class sap.uiext.inbox.InboxSecondaryFilters.
3571
+ *
3572
+ * @returns Metadata object describing this class
3208
3573
  */
3209
3574
  static getMetadata(): sap.ui.base.Metadata;
3210
3575
  /**
@@ -3262,6 +3627,8 @@ declare namespace sap {
3262
3627
  * with the information contained in `oClassInfo`.
3263
3628
  *
3264
3629
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3630
+ *
3631
+ * @returns Created class / constructor function
3265
3632
  */
3266
3633
  static extend<T extends Record<string, unknown>>(
3267
3634
  /**
@@ -3280,6 +3647,8 @@ declare namespace sap {
3280
3647
  ): Function;
3281
3648
  /**
3282
3649
  * Returns a metadata object for class sap.uiext.inbox.InboxSplitApp.
3650
+ *
3651
+ * @returns Metadata object describing this class
3283
3652
  */
3284
3653
  static getMetadata(): sap.ui.core.ElementMetadata;
3285
3654
  /**
@@ -3290,6 +3659,8 @@ declare namespace sap {
3290
3659
  * otherwise it will be bound to this `sap.uiext.inbox.InboxSplitApp` itself.
3291
3660
  *
3292
3661
  * Navigation Button of the Master Page is pressed, if visible.
3662
+ *
3663
+ * @returns Reference to `this` in order to allow method chaining
3293
3664
  */
3294
3665
  attachNavButtonPressed(
3295
3666
  /**
@@ -3314,6 +3685,8 @@ declare namespace sap {
3314
3685
  * otherwise it will be bound to this `sap.uiext.inbox.InboxSplitApp` itself.
3315
3686
  *
3316
3687
  * Navigation Button of the Master Page is pressed, if visible.
3688
+ *
3689
+ * @returns Reference to `this` in order to allow method chaining
3317
3690
  */
3318
3691
  attachNavButtonPressed(
3319
3692
  /**
@@ -3331,6 +3704,8 @@ declare namespace sap {
3331
3704
  bindTasks(aFilters: object[]): sap.uiext.inbox.InboxSplitApp;
3332
3705
  /**
3333
3706
  * Destroys the splitAppl in the aggregation {@link #getSplitAppl splitAppl}.
3707
+ *
3708
+ * @returns Reference to `this` in order to allow method chaining
3334
3709
  */
3335
3710
  destroySplitAppl(): this;
3336
3711
  /**
@@ -3338,6 +3713,8 @@ declare namespace sap {
3338
3713
  * this `sap.uiext.inbox.InboxSplitApp`.
3339
3714
  *
3340
3715
  * The passed function and listener object must match the ones used for event registration.
3716
+ *
3717
+ * @returns Reference to `this` in order to allow method chaining
3341
3718
  */
3342
3719
  detachNavButtonPressed(
3343
3720
  /**
@@ -3351,6 +3728,8 @@ declare namespace sap {
3351
3728
  ): this;
3352
3729
  /**
3353
3730
  * Fires event {@link #event:navButtonPressed navButtonPressed} to attached listeners.
3731
+ *
3732
+ * @returns Reference to `this` in order to allow method chaining
3354
3733
  */
3355
3734
  fireNavButtonPressed(
3356
3735
  /**
@@ -3362,12 +3741,16 @@ declare namespace sap {
3362
3741
  * Gets current value of property {@link #getFilters filters}.
3363
3742
  *
3364
3743
  * Filters to be applied on the data shown in the MasterPage
3744
+ *
3745
+ * @returns Value of property `filters`
3365
3746
  */
3366
3747
  getFilters(): object[];
3367
3748
  /**
3368
3749
  * Gets current value of property {@link #getShowMasterPageNavBtn showMasterPageNavBtn}.
3369
3750
  *
3370
3751
  * Show/Hide the Navigation Button for the Master Page
3752
+ *
3753
+ * @returns Value of property `showMasterPageNavBtn`
3371
3754
  */
3372
3755
  getShowMasterPageNavBtn(): boolean;
3373
3756
  /**
@@ -3380,12 +3763,16 @@ declare namespace sap {
3380
3763
  * Gets current value of property {@link #getTcmConfiguration tcmConfiguration}.
3381
3764
  *
3382
3765
  * TCM Configuration object for control initialization.
3766
+ *
3767
+ * @returns Value of property `tcmConfiguration`
3383
3768
  */
3384
3769
  getTcmConfiguration(): object;
3385
3770
  /**
3386
3771
  * Gets current value of property {@link #getTcmServiceURL tcmServiceURL}.
3387
3772
  *
3388
3773
  * TCM service URL
3774
+ *
3775
+ * @returns Value of property `tcmServiceURL`
3389
3776
  */
3390
3777
  getTcmServiceURL(): string;
3391
3778
  /**
@@ -3398,6 +3785,8 @@ declare namespace sap {
3398
3785
  * Filters to be applied on the data shown in the MasterPage
3399
3786
  *
3400
3787
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3788
+ *
3789
+ * @returns Reference to `this` in order to allow method chaining
3401
3790
  */
3402
3791
  setFilters(
3403
3792
  /**
@@ -3411,6 +3800,8 @@ declare namespace sap {
3411
3800
  * Show/Hide the Navigation Button for the Master Page
3412
3801
  *
3413
3802
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3803
+ *
3804
+ * @returns Reference to `this` in order to allow method chaining
3414
3805
  */
3415
3806
  setShowMasterPageNavBtn(
3416
3807
  /**
@@ -3420,6 +3811,8 @@ declare namespace sap {
3420
3811
  ): this;
3421
3812
  /**
3422
3813
  * Sets the aggregated {@link #getSplitAppl splitAppl}.
3814
+ *
3815
+ * @returns Reference to `this` in order to allow method chaining
3423
3816
  */
3424
3817
  setSplitAppl(
3425
3818
  /**
@@ -3433,6 +3826,8 @@ declare namespace sap {
3433
3826
  * TCM Configuration object for control initialization.
3434
3827
  *
3435
3828
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3829
+ *
3830
+ * @returns Reference to `this` in order to allow method chaining
3436
3831
  */
3437
3832
  setTcmConfiguration(
3438
3833
  /**
@@ -3446,6 +3841,8 @@ declare namespace sap {
3446
3841
  * TCM service URL
3447
3842
  *
3448
3843
  * When called with a value of `null` or `undefined`, the default value of the property will be restored.
3844
+ *
3845
+ * @returns Reference to `this` in order to allow method chaining
3449
3846
  */
3450
3847
  setTcmServiceURL(
3451
3848
  /**
@@ -3502,6 +3899,8 @@ declare namespace sap {
3502
3899
  * it with the information contained in `oClassInfo`.
3503
3900
  *
3504
3901
  * `oClassInfo` might contain the same kind of information as described in {@link sap.ui.core.Control.extend}.
3902
+ *
3903
+ * @returns Created class / constructor function
3505
3904
  */
3506
3905
  static extend<T extends Record<string, unknown>>(
3507
3906
  /**
@@ -3523,6 +3922,8 @@ declare namespace sap {
3523
3922
  ): Function;
3524
3923
  /**
3525
3924
  * Returns a metadata object for class sap.uiext.inbox.SubstitutionRulesManager.
3925
+ *
3926
+ * @returns Metadata object describing this class
3526
3927
  */
3527
3928
  static getMetadata(): sap.ui.core.ElementMetadata;
3528
3929
  /**