-
Notifications
You must be signed in to change notification settings - Fork 10
/
AnalyticsAdsImpressionSample.ts
1160 lines (1014 loc) · 27.5 KB
/
AnalyticsAdsImpressionSample.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import {map, mapArray} from '../common/Mapper';
/**
* @export
* @class AnalyticsAdsImpressionSample
*/
export class AnalyticsAdsImpressionSample {
/**
* Ad click through url
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adClickthroughUrl?: string;
/**
* Ad description
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adDescription?: string;
/**
* Ad duration
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adDuration?: number;
/**
* Ad fallback index
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adFallbackIndex?: number;
/**
* Ad id
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adId?: string;
/**
* Ad id player
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adIdPlayer?: string;
/**
* Ad impression id
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adImpressionId?: string;
/**
* Ad is persistent
* @type {boolean}
* @memberof AnalyticsAdsImpressionSample
*/
public adIsPersistent?: boolean;
/**
* Ad module
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adModule?: string;
/**
* Ad module version
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adModuleVersion?: string;
/**
* Ad offset
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adOffset?: string;
/**
* Ad playback height
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adPlaybackHeight?: number;
/**
* Ad playback width
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adPlaybackWidth?: number;
/**
* Ad pod position
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adPodPosition?: number;
/**
* Ad position
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adPosition?: string;
/**
* Ad preload offset
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adPreloadOffset?: number;
/**
* Ad replace content duration
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adReplaceContentDuration?: number;
/**
* Ad schedule duration
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adScheduleTime?: number;
/**
* Ad skip after
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adSkipAfter?: number;
/**
* Ad is skippable
* @type {boolean}
* @memberof AnalyticsAdsImpressionSample
*/
public adSkippable?: boolean;
/**
* Ad startup time
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adStartupTime?: number;
/**
* Ad system
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adSystem?: string;
/**
* Ad tag path
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adTagPath?: string;
/**
* Ad system
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adTagServer?: string;
/**
* Ad tag type
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adTagType?: string;
/**
* Ad tag url
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adTagUrl?: string;
/**
* Ad title
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public adTitle?: string;
/**
* Ad wrapper ads count
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public adWrapperAdsCount?: number;
/**
* Advertiser name
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public advertiserName?: string;
/**
* Analytics version
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public analyticsVersion?: string;
/**
* Api framework
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public apiFramework?: string;
/**
* Organization id
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public apiorgId?: string;
/**
* User id
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public apiuserId?: string;
/**
* Audio bitrate
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public audioBitrate?: number;
/**
* Is autoplay
* @type {boolean}
* @memberof AnalyticsAdsImpressionSample
*/
public autoplay?: boolean;
/**
* Browser name
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public browser?: string;
/**
* Browser is bot
* @type {boolean}
* @memberof AnalyticsAdsImpressionSample
*/
public browserIsBot?: boolean;
/**
* Browser version major
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public browserVersionMajor?: string;
/**
* Browser version minor
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public browserVersionMinor?: string;
/**
* CDN Provider
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public cdnProvider?: string;
/**
* City
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public city?: string;
/**
* Click percentage
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public clickPercentage?: number;
/**
* Click position
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public clickPosition?: number;
/**
* Clicked
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public clicked?: number;
/**
* Current time of the client
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public clientTime?: number;
/**
* Close percentage
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public closePercentage?: number;
/**
* Close position
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public closePosition?: number;
/**
* Closed
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public closed?: number;
/**
* Completed
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public completed?: number;
/**
* Country
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public country?: string;
/**
* Creative ad id
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public creativeAdId?: string;
/**
* Creative id
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public creativeId?: string;
/**
* Free form data set via the customData1 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData1?: string;
/**
* Free form data set via the customData2 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData2?: string;
/**
* Free form data set via the customData3 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData3?: string;
/**
* Free form data set via the customData4 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData4?: string;
/**
* Free form data set via the customData5 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData5?: string;
/**
* Free form data set via the customData6 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData6?: string;
/**
* Free form data set via the customData7 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData7?: string;
/**
* Free form data set via the customData8 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData8?: string;
/**
* Free form data set via the customData9 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData9?: string;
/**
* Free form data set via the customData10 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData10?: string;
/**
* Free form data set via the customData11 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData11?: string;
/**
* Free form data set via the customData12 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData12?: string;
/**
* Free form data set via the customData13 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData13?: string;
/**
* Free form data set via the customData14 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData14?: string;
/**
* Free form data set via the customData15 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData15?: string;
/**
* Free form data set via the customData16 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData16?: string;
/**
* Free form data set via the customData17 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData17?: string;
/**
* Free form data set via the customData18 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData18?: string;
/**
* Free form data set via the customData19 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData19?: string;
/**
* Free form data set via the customData20 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData20?: string;
/**
* Free form data set via the customData21 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData21?: string;
/**
* Free form data set via the customData22 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData22?: string;
/**
* Free form data set via the customData23 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData23?: string;
/**
* Free form data set via the customData24 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData24?: string;
/**
* Free form data set via the customData25 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData25?: string;
/**
* Free form data set via the customData26 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData26?: string;
/**
* Free form data set via the customData27 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData27?: string;
/**
* Free form data set via the customData28 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData28?: string;
/**
* Free form data set via the customData29 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData29?: string;
/**
* Free form data set via the customData30 field in the analytics collector configuration
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customData30?: string;
/**
* Custom user ID
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public customUserId?: string;
/**
* Deal id
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public dealId?: string;
/**
* Type of device (Desktop, Phone, Tablet)
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public deviceClass?: string;
/**
* Type of the device detected via User Agent
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public deviceType?: string;
/**
* Domain the player was loaded on (.www is stripped away)
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public domain?: string;
/**
* Error code
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public errorCode?: number;
/**
* Error data
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public errorData?: string;
/**
* Error message
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public errorMessage?: string;
/**
* Error percentage
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public errorPercentage?: number;
/**
* Error position
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public errorPosition?: number;
/**
* Exit position
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public exitPosition?: number;
/**
* A/B test experiment name
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public experimentName?: string;
/**
* IP Address of the client
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public ipAddress?: string;
/**
* The users Internet Service Provider inferred via the IP address
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public isp?: string;
/**
* Language set in the browser
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public language?: string;
/**
* Analytics license key
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public licenseKey?: string;
/**
* Manifest download time
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public manifestDownloadTime?: number;
/**
* Media path
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public mediaPath?: string;
/**
* Media server
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public mediaServer?: string;
/**
* Media url
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public mediaUrl?: string;
/**
* Midpoint
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public midpoint?: number;
/**
* Minimum suggested duration
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public minSuggestedDuration?: number;
/**
* Operating system
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public operatingsystem?: string;
/**
* Operating system version major
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public operatingsystemVersionMajor?: string;
/**
* Operating system version minor
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public operatingsystemVersionMinor?: string;
/**
* Time in milliseconds the page took to load
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public pageLoadTime?: number;
/**
* Player load type. 1 = Foreground, 2 = Background
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public pageLoadType?: number;
/**
* path on the website
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public path?: string;
/**
* Percentage in viewport
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public percentageInViewport?: number;
/**
* Platform the player is running on (web, android, ios)
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public platform?: string;
/**
* Video player being used for this session
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public player?: string;
/**
* Player license key
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public playerKey?: string;
/**
* Time in milliseconds the player took to start up
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public playerStartuptime?: number;
/**
* HTML or native playback
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public playerTech?: string;
/**
* Player software version
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public playerVersion?: string;
/**
* Play percentage
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public playPercentage?: number;
/**
* Quartile 1
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public quartile1?: number;
/**
* Quartile 3
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public quartile3?: number;
/**
* Geographic region (ISO 3166-2 code)
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public region?: string;
/**
* Screen as reported by the browser
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public screenHeight?: number;
/**
* Screen as reported by the browser
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public screenWidth?: number;
/**
* Screen orientation (PORTRAIT, LANDSCAPE OR UNKNOWN)
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public screenOrientation?: string;
/**
* Video size (FULLSCREEN or WINDOW)
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public size?: string;
/**
* Skip percentage
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public skipPercentage?: number;
/**
* Skip position
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public skipPosition?: number;
/**
* Skipped
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public skipped?: number;
/**
* Started
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public started?: number;
/**
* Format of the stream (HLS, DASH, Progressive MP4)
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public streamFormat?: string;
/**
* Survey url
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public surveyUrl?: string;
/**
* Current time in milliseconds
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public time?: number;
/**
* Time in viewport
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public timeInViewport?: number;
/**
* Time played
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public timePlayed?: number;
/**
* Universal ad id registry
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public universalAdIdRegistry?: string;
/**
* Universal ad id value
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public universalAdIdValue?: string;
/**
* ID that is persisted across sessions to identify a browser
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public userId?: string;
/**
* Bitrate of the played back video rendition
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public videoBitrate?: number;
/**
* ID of the video
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public videoId?: string;
/**
* ID of related video impression
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public videoImpressionId?: string;
/**
* Free form human readable video ad title
* @type {string}
* @memberof AnalyticsAdsImpressionSample
*/
public videoTitle?: string;
/**
* Height of the video player on the page
* @type {number}
* @memberof AnalyticsAdsImpressionSample
*/
public videoWindowHeight?: number;