blob: b838a199442bc102e937da48ee397286cdd8265f (
plain) (
blame)
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
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// RatingAppsType undocumented
type RatingAppsType string
const (
// RatingAppsTypeVAllAllowed undocumented
RatingAppsTypeVAllAllowed RatingAppsType = "allAllowed"
// RatingAppsTypeVAllBlocked undocumented
RatingAppsTypeVAllBlocked RatingAppsType = "allBlocked"
// RatingAppsTypeVAgesAbove4 undocumented
RatingAppsTypeVAgesAbove4 RatingAppsType = "agesAbove4"
// RatingAppsTypeVAgesAbove9 undocumented
RatingAppsTypeVAgesAbove9 RatingAppsType = "agesAbove9"
// RatingAppsTypeVAgesAbove12 undocumented
RatingAppsTypeVAgesAbove12 RatingAppsType = "agesAbove12"
// RatingAppsTypeVAgesAbove17 undocumented
RatingAppsTypeVAgesAbove17 RatingAppsType = "agesAbove17"
)
var (
// RatingAppsTypePAllAllowed is a pointer to RatingAppsTypeVAllAllowed
RatingAppsTypePAllAllowed = &_RatingAppsTypePAllAllowed
// RatingAppsTypePAllBlocked is a pointer to RatingAppsTypeVAllBlocked
RatingAppsTypePAllBlocked = &_RatingAppsTypePAllBlocked
// RatingAppsTypePAgesAbove4 is a pointer to RatingAppsTypeVAgesAbove4
RatingAppsTypePAgesAbove4 = &_RatingAppsTypePAgesAbove4
// RatingAppsTypePAgesAbove9 is a pointer to RatingAppsTypeVAgesAbove9
RatingAppsTypePAgesAbove9 = &_RatingAppsTypePAgesAbove9
// RatingAppsTypePAgesAbove12 is a pointer to RatingAppsTypeVAgesAbove12
RatingAppsTypePAgesAbove12 = &_RatingAppsTypePAgesAbove12
// RatingAppsTypePAgesAbove17 is a pointer to RatingAppsTypeVAgesAbove17
RatingAppsTypePAgesAbove17 = &_RatingAppsTypePAgesAbove17
)
var (
_RatingAppsTypePAllAllowed = RatingAppsTypeVAllAllowed
_RatingAppsTypePAllBlocked = RatingAppsTypeVAllBlocked
_RatingAppsTypePAgesAbove4 = RatingAppsTypeVAgesAbove4
_RatingAppsTypePAgesAbove9 = RatingAppsTypeVAgesAbove9
_RatingAppsTypePAgesAbove12 = RatingAppsTypeVAgesAbove12
_RatingAppsTypePAgesAbove17 = RatingAppsTypeVAgesAbove17
)
// RatingAustraliaMoviesType undocumented
type RatingAustraliaMoviesType string
const (
// RatingAustraliaMoviesTypeVAllAllowed undocumented
RatingAustraliaMoviesTypeVAllAllowed RatingAustraliaMoviesType = "allAllowed"
// RatingAustraliaMoviesTypeVAllBlocked undocumented
RatingAustraliaMoviesTypeVAllBlocked RatingAustraliaMoviesType = "allBlocked"
// RatingAustraliaMoviesTypeVGeneral undocumented
RatingAustraliaMoviesTypeVGeneral RatingAustraliaMoviesType = "general"
// RatingAustraliaMoviesTypeVParentalGuidance undocumented
RatingAustraliaMoviesTypeVParentalGuidance RatingAustraliaMoviesType = "parentalGuidance"
// RatingAustraliaMoviesTypeVMature undocumented
RatingAustraliaMoviesTypeVMature RatingAustraliaMoviesType = "mature"
// RatingAustraliaMoviesTypeVAgesAbove15 undocumented
RatingAustraliaMoviesTypeVAgesAbove15 RatingAustraliaMoviesType = "agesAbove15"
// RatingAustraliaMoviesTypeVAgesAbove18 undocumented
RatingAustraliaMoviesTypeVAgesAbove18 RatingAustraliaMoviesType = "agesAbove18"
)
var (
// RatingAustraliaMoviesTypePAllAllowed is a pointer to RatingAustraliaMoviesTypeVAllAllowed
RatingAustraliaMoviesTypePAllAllowed = &_RatingAustraliaMoviesTypePAllAllowed
// RatingAustraliaMoviesTypePAllBlocked is a pointer to RatingAustraliaMoviesTypeVAllBlocked
RatingAustraliaMoviesTypePAllBlocked = &_RatingAustraliaMoviesTypePAllBlocked
// RatingAustraliaMoviesTypePGeneral is a pointer to RatingAustraliaMoviesTypeVGeneral
RatingAustraliaMoviesTypePGeneral = &_RatingAustraliaMoviesTypePGeneral
// RatingAustraliaMoviesTypePParentalGuidance is a pointer to RatingAustraliaMoviesTypeVParentalGuidance
RatingAustraliaMoviesTypePParentalGuidance = &_RatingAustraliaMoviesTypePParentalGuidance
// RatingAustraliaMoviesTypePMature is a pointer to RatingAustraliaMoviesTypeVMature
RatingAustraliaMoviesTypePMature = &_RatingAustraliaMoviesTypePMature
// RatingAustraliaMoviesTypePAgesAbove15 is a pointer to RatingAustraliaMoviesTypeVAgesAbove15
RatingAustraliaMoviesTypePAgesAbove15 = &_RatingAustraliaMoviesTypePAgesAbove15
// RatingAustraliaMoviesTypePAgesAbove18 is a pointer to RatingAustraliaMoviesTypeVAgesAbove18
RatingAustraliaMoviesTypePAgesAbove18 = &_RatingAustraliaMoviesTypePAgesAbove18
)
var (
_RatingAustraliaMoviesTypePAllAllowed = RatingAustraliaMoviesTypeVAllAllowed
_RatingAustraliaMoviesTypePAllBlocked = RatingAustraliaMoviesTypeVAllBlocked
_RatingAustraliaMoviesTypePGeneral = RatingAustraliaMoviesTypeVGeneral
_RatingAustraliaMoviesTypePParentalGuidance = RatingAustraliaMoviesTypeVParentalGuidance
_RatingAustraliaMoviesTypePMature = RatingAustraliaMoviesTypeVMature
_RatingAustraliaMoviesTypePAgesAbove15 = RatingAustraliaMoviesTypeVAgesAbove15
_RatingAustraliaMoviesTypePAgesAbove18 = RatingAustraliaMoviesTypeVAgesAbove18
)
// RatingAustraliaTelevisionType undocumented
type RatingAustraliaTelevisionType string
const (
// RatingAustraliaTelevisionTypeVAllAllowed undocumented
RatingAustraliaTelevisionTypeVAllAllowed RatingAustraliaTelevisionType = "allAllowed"
// RatingAustraliaTelevisionTypeVAllBlocked undocumented
RatingAustraliaTelevisionTypeVAllBlocked RatingAustraliaTelevisionType = "allBlocked"
// RatingAustraliaTelevisionTypeVPreschoolers undocumented
RatingAustraliaTelevisionTypeVPreschoolers RatingAustraliaTelevisionType = "preschoolers"
// RatingAustraliaTelevisionTypeVChildren undocumented
RatingAustraliaTelevisionTypeVChildren RatingAustraliaTelevisionType = "children"
// RatingAustraliaTelevisionTypeVGeneral undocumented
RatingAustraliaTelevisionTypeVGeneral RatingAustraliaTelevisionType = "general"
// RatingAustraliaTelevisionTypeVParentalGuidance undocumented
RatingAustraliaTelevisionTypeVParentalGuidance RatingAustraliaTelevisionType = "parentalGuidance"
// RatingAustraliaTelevisionTypeVMature undocumented
RatingAustraliaTelevisionTypeVMature RatingAustraliaTelevisionType = "mature"
// RatingAustraliaTelevisionTypeVAgesAbove15 undocumented
RatingAustraliaTelevisionTypeVAgesAbove15 RatingAustraliaTelevisionType = "agesAbove15"
// RatingAustraliaTelevisionTypeVAgesAbove15AdultViolence undocumented
RatingAustraliaTelevisionTypeVAgesAbove15AdultViolence RatingAustraliaTelevisionType = "agesAbove15AdultViolence"
)
var (
// RatingAustraliaTelevisionTypePAllAllowed is a pointer to RatingAustraliaTelevisionTypeVAllAllowed
RatingAustraliaTelevisionTypePAllAllowed = &_RatingAustraliaTelevisionTypePAllAllowed
// RatingAustraliaTelevisionTypePAllBlocked is a pointer to RatingAustraliaTelevisionTypeVAllBlocked
RatingAustraliaTelevisionTypePAllBlocked = &_RatingAustraliaTelevisionTypePAllBlocked
// RatingAustraliaTelevisionTypePPreschoolers is a pointer to RatingAustraliaTelevisionTypeVPreschoolers
RatingAustraliaTelevisionTypePPreschoolers = &_RatingAustraliaTelevisionTypePPreschoolers
// RatingAustraliaTelevisionTypePChildren is a pointer to RatingAustraliaTelevisionTypeVChildren
RatingAustraliaTelevisionTypePChildren = &_RatingAustraliaTelevisionTypePChildren
// RatingAustraliaTelevisionTypePGeneral is a pointer to RatingAustraliaTelevisionTypeVGeneral
RatingAustraliaTelevisionTypePGeneral = &_RatingAustraliaTelevisionTypePGeneral
// RatingAustraliaTelevisionTypePParentalGuidance is a pointer to RatingAustraliaTelevisionTypeVParentalGuidance
RatingAustraliaTelevisionTypePParentalGuidance = &_RatingAustraliaTelevisionTypePParentalGuidance
// RatingAustraliaTelevisionTypePMature is a pointer to RatingAustraliaTelevisionTypeVMature
RatingAustraliaTelevisionTypePMature = &_RatingAustraliaTelevisionTypePMature
// RatingAustraliaTelevisionTypePAgesAbove15 is a pointer to RatingAustraliaTelevisionTypeVAgesAbove15
RatingAustraliaTelevisionTypePAgesAbove15 = &_RatingAustraliaTelevisionTypePAgesAbove15
// RatingAustraliaTelevisionTypePAgesAbove15AdultViolence is a pointer to RatingAustraliaTelevisionTypeVAgesAbove15AdultViolence
RatingAustraliaTelevisionTypePAgesAbove15AdultViolence = &_RatingAustraliaTelevisionTypePAgesAbove15AdultViolence
)
var (
_RatingAustraliaTelevisionTypePAllAllowed = RatingAustraliaTelevisionTypeVAllAllowed
_RatingAustraliaTelevisionTypePAllBlocked = RatingAustraliaTelevisionTypeVAllBlocked
_RatingAustraliaTelevisionTypePPreschoolers = RatingAustraliaTelevisionTypeVPreschoolers
_RatingAustraliaTelevisionTypePChildren = RatingAustraliaTelevisionTypeVChildren
_RatingAustraliaTelevisionTypePGeneral = RatingAustraliaTelevisionTypeVGeneral
_RatingAustraliaTelevisionTypePParentalGuidance = RatingAustraliaTelevisionTypeVParentalGuidance
_RatingAustraliaTelevisionTypePMature = RatingAustraliaTelevisionTypeVMature
_RatingAustraliaTelevisionTypePAgesAbove15 = RatingAustraliaTelevisionTypeVAgesAbove15
_RatingAustraliaTelevisionTypePAgesAbove15AdultViolence = RatingAustraliaTelevisionTypeVAgesAbove15AdultViolence
)
// RatingCanadaMoviesType undocumented
type RatingCanadaMoviesType string
const (
// RatingCanadaMoviesTypeVAllAllowed undocumented
RatingCanadaMoviesTypeVAllAllowed RatingCanadaMoviesType = "allAllowed"
// RatingCanadaMoviesTypeVAllBlocked undocumented
RatingCanadaMoviesTypeVAllBlocked RatingCanadaMoviesType = "allBlocked"
// RatingCanadaMoviesTypeVGeneral undocumented
RatingCanadaMoviesTypeVGeneral RatingCanadaMoviesType = "general"
// RatingCanadaMoviesTypeVParentalGuidance undocumented
RatingCanadaMoviesTypeVParentalGuidance RatingCanadaMoviesType = "parentalGuidance"
// RatingCanadaMoviesTypeVAgesAbove14 undocumented
RatingCanadaMoviesTypeVAgesAbove14 RatingCanadaMoviesType = "agesAbove14"
// RatingCanadaMoviesTypeVAgesAbove18 undocumented
RatingCanadaMoviesTypeVAgesAbove18 RatingCanadaMoviesType = "agesAbove18"
// RatingCanadaMoviesTypeVRestricted undocumented
RatingCanadaMoviesTypeVRestricted RatingCanadaMoviesType = "restricted"
)
var (
// RatingCanadaMoviesTypePAllAllowed is a pointer to RatingCanadaMoviesTypeVAllAllowed
RatingCanadaMoviesTypePAllAllowed = &_RatingCanadaMoviesTypePAllAllowed
// RatingCanadaMoviesTypePAllBlocked is a pointer to RatingCanadaMoviesTypeVAllBlocked
RatingCanadaMoviesTypePAllBlocked = &_RatingCanadaMoviesTypePAllBlocked
// RatingCanadaMoviesTypePGeneral is a pointer to RatingCanadaMoviesTypeVGeneral
RatingCanadaMoviesTypePGeneral = &_RatingCanadaMoviesTypePGeneral
// RatingCanadaMoviesTypePParentalGuidance is a pointer to RatingCanadaMoviesTypeVParentalGuidance
RatingCanadaMoviesTypePParentalGuidance = &_RatingCanadaMoviesTypePParentalGuidance
// RatingCanadaMoviesTypePAgesAbove14 is a pointer to RatingCanadaMoviesTypeVAgesAbove14
RatingCanadaMoviesTypePAgesAbove14 = &_RatingCanadaMoviesTypePAgesAbove14
// RatingCanadaMoviesTypePAgesAbove18 is a pointer to RatingCanadaMoviesTypeVAgesAbove18
RatingCanadaMoviesTypePAgesAbove18 = &_RatingCanadaMoviesTypePAgesAbove18
// RatingCanadaMoviesTypePRestricted is a pointer to RatingCanadaMoviesTypeVRestricted
RatingCanadaMoviesTypePRestricted = &_RatingCanadaMoviesTypePRestricted
)
var (
_RatingCanadaMoviesTypePAllAllowed = RatingCanadaMoviesTypeVAllAllowed
_RatingCanadaMoviesTypePAllBlocked = RatingCanadaMoviesTypeVAllBlocked
_RatingCanadaMoviesTypePGeneral = RatingCanadaMoviesTypeVGeneral
_RatingCanadaMoviesTypePParentalGuidance = RatingCanadaMoviesTypeVParentalGuidance
_RatingCanadaMoviesTypePAgesAbove14 = RatingCanadaMoviesTypeVAgesAbove14
_RatingCanadaMoviesTypePAgesAbove18 = RatingCanadaMoviesTypeVAgesAbove18
_RatingCanadaMoviesTypePRestricted = RatingCanadaMoviesTypeVRestricted
)
// RatingCanadaTelevisionType undocumented
type RatingCanadaTelevisionType string
const (
// RatingCanadaTelevisionTypeVAllAllowed undocumented
RatingCanadaTelevisionTypeVAllAllowed RatingCanadaTelevisionType = "allAllowed"
// RatingCanadaTelevisionTypeVAllBlocked undocumented
RatingCanadaTelevisionTypeVAllBlocked RatingCanadaTelevisionType = "allBlocked"
// RatingCanadaTelevisionTypeVChildren undocumented
RatingCanadaTelevisionTypeVChildren RatingCanadaTelevisionType = "children"
// RatingCanadaTelevisionTypeVChildrenAbove8 undocumented
RatingCanadaTelevisionTypeVChildrenAbove8 RatingCanadaTelevisionType = "childrenAbove8"
// RatingCanadaTelevisionTypeVGeneral undocumented
RatingCanadaTelevisionTypeVGeneral RatingCanadaTelevisionType = "general"
// RatingCanadaTelevisionTypeVParentalGuidance undocumented
RatingCanadaTelevisionTypeVParentalGuidance RatingCanadaTelevisionType = "parentalGuidance"
// RatingCanadaTelevisionTypeVAgesAbove14 undocumented
RatingCanadaTelevisionTypeVAgesAbove14 RatingCanadaTelevisionType = "agesAbove14"
// RatingCanadaTelevisionTypeVAgesAbove18 undocumented
RatingCanadaTelevisionTypeVAgesAbove18 RatingCanadaTelevisionType = "agesAbove18"
)
var (
// RatingCanadaTelevisionTypePAllAllowed is a pointer to RatingCanadaTelevisionTypeVAllAllowed
RatingCanadaTelevisionTypePAllAllowed = &_RatingCanadaTelevisionTypePAllAllowed
// RatingCanadaTelevisionTypePAllBlocked is a pointer to RatingCanadaTelevisionTypeVAllBlocked
RatingCanadaTelevisionTypePAllBlocked = &_RatingCanadaTelevisionTypePAllBlocked
// RatingCanadaTelevisionTypePChildren is a pointer to RatingCanadaTelevisionTypeVChildren
RatingCanadaTelevisionTypePChildren = &_RatingCanadaTelevisionTypePChildren
// RatingCanadaTelevisionTypePChildrenAbove8 is a pointer to RatingCanadaTelevisionTypeVChildrenAbove8
RatingCanadaTelevisionTypePChildrenAbove8 = &_RatingCanadaTelevisionTypePChildrenAbove8
// RatingCanadaTelevisionTypePGeneral is a pointer to RatingCanadaTelevisionTypeVGeneral
RatingCanadaTelevisionTypePGeneral = &_RatingCanadaTelevisionTypePGeneral
// RatingCanadaTelevisionTypePParentalGuidance is a pointer to RatingCanadaTelevisionTypeVParentalGuidance
RatingCanadaTelevisionTypePParentalGuidance = &_RatingCanadaTelevisionTypePParentalGuidance
// RatingCanadaTelevisionTypePAgesAbove14 is a pointer to RatingCanadaTelevisionTypeVAgesAbove14
RatingCanadaTelevisionTypePAgesAbove14 = &_RatingCanadaTelevisionTypePAgesAbove14
// RatingCanadaTelevisionTypePAgesAbove18 is a pointer to RatingCanadaTelevisionTypeVAgesAbove18
RatingCanadaTelevisionTypePAgesAbove18 = &_RatingCanadaTelevisionTypePAgesAbove18
)
var (
_RatingCanadaTelevisionTypePAllAllowed = RatingCanadaTelevisionTypeVAllAllowed
_RatingCanadaTelevisionTypePAllBlocked = RatingCanadaTelevisionTypeVAllBlocked
_RatingCanadaTelevisionTypePChildren = RatingCanadaTelevisionTypeVChildren
_RatingCanadaTelevisionTypePChildrenAbove8 = RatingCanadaTelevisionTypeVChildrenAbove8
_RatingCanadaTelevisionTypePGeneral = RatingCanadaTelevisionTypeVGeneral
_RatingCanadaTelevisionTypePParentalGuidance = RatingCanadaTelevisionTypeVParentalGuidance
_RatingCanadaTelevisionTypePAgesAbove14 = RatingCanadaTelevisionTypeVAgesAbove14
_RatingCanadaTelevisionTypePAgesAbove18 = RatingCanadaTelevisionTypeVAgesAbove18
)
// RatingFranceMoviesType undocumented
type RatingFranceMoviesType string
const (
// RatingFranceMoviesTypeVAllAllowed undocumented
RatingFranceMoviesTypeVAllAllowed RatingFranceMoviesType = "allAllowed"
// RatingFranceMoviesTypeVAllBlocked undocumented
RatingFranceMoviesTypeVAllBlocked RatingFranceMoviesType = "allBlocked"
// RatingFranceMoviesTypeVAgesAbove10 undocumented
RatingFranceMoviesTypeVAgesAbove10 RatingFranceMoviesType = "agesAbove10"
// RatingFranceMoviesTypeVAgesAbove12 undocumented
RatingFranceMoviesTypeVAgesAbove12 RatingFranceMoviesType = "agesAbove12"
// RatingFranceMoviesTypeVAgesAbove16 undocumented
RatingFranceMoviesTypeVAgesAbove16 RatingFranceMoviesType = "agesAbove16"
// RatingFranceMoviesTypeVAgesAbove18 undocumented
RatingFranceMoviesTypeVAgesAbove18 RatingFranceMoviesType = "agesAbove18"
)
var (
// RatingFranceMoviesTypePAllAllowed is a pointer to RatingFranceMoviesTypeVAllAllowed
RatingFranceMoviesTypePAllAllowed = &_RatingFranceMoviesTypePAllAllowed
// RatingFranceMoviesTypePAllBlocked is a pointer to RatingFranceMoviesTypeVAllBlocked
RatingFranceMoviesTypePAllBlocked = &_RatingFranceMoviesTypePAllBlocked
// RatingFranceMoviesTypePAgesAbove10 is a pointer to RatingFranceMoviesTypeVAgesAbove10
RatingFranceMoviesTypePAgesAbove10 = &_RatingFranceMoviesTypePAgesAbove10
// RatingFranceMoviesTypePAgesAbove12 is a pointer to RatingFranceMoviesTypeVAgesAbove12
RatingFranceMoviesTypePAgesAbove12 = &_RatingFranceMoviesTypePAgesAbove12
// RatingFranceMoviesTypePAgesAbove16 is a pointer to RatingFranceMoviesTypeVAgesAbove16
RatingFranceMoviesTypePAgesAbove16 = &_RatingFranceMoviesTypePAgesAbove16
// RatingFranceMoviesTypePAgesAbove18 is a pointer to RatingFranceMoviesTypeVAgesAbove18
RatingFranceMoviesTypePAgesAbove18 = &_RatingFranceMoviesTypePAgesAbove18
)
var (
_RatingFranceMoviesTypePAllAllowed = RatingFranceMoviesTypeVAllAllowed
_RatingFranceMoviesTypePAllBlocked = RatingFranceMoviesTypeVAllBlocked
_RatingFranceMoviesTypePAgesAbove10 = RatingFranceMoviesTypeVAgesAbove10
_RatingFranceMoviesTypePAgesAbove12 = RatingFranceMoviesTypeVAgesAbove12
_RatingFranceMoviesTypePAgesAbove16 = RatingFranceMoviesTypeVAgesAbove16
_RatingFranceMoviesTypePAgesAbove18 = RatingFranceMoviesTypeVAgesAbove18
)
// RatingFranceTelevisionType undocumented
type RatingFranceTelevisionType string
const (
// RatingFranceTelevisionTypeVAllAllowed undocumented
RatingFranceTelevisionTypeVAllAllowed RatingFranceTelevisionType = "allAllowed"
// RatingFranceTelevisionTypeVAllBlocked undocumented
RatingFranceTelevisionTypeVAllBlocked RatingFranceTelevisionType = "allBlocked"
// RatingFranceTelevisionTypeVAgesAbove10 undocumented
RatingFranceTelevisionTypeVAgesAbove10 RatingFranceTelevisionType = "agesAbove10"
// RatingFranceTelevisionTypeVAgesAbove12 undocumented
RatingFranceTelevisionTypeVAgesAbove12 RatingFranceTelevisionType = "agesAbove12"
// RatingFranceTelevisionTypeVAgesAbove16 undocumented
RatingFranceTelevisionTypeVAgesAbove16 RatingFranceTelevisionType = "agesAbove16"
// RatingFranceTelevisionTypeVAgesAbove18 undocumented
RatingFranceTelevisionTypeVAgesAbove18 RatingFranceTelevisionType = "agesAbove18"
)
var (
// RatingFranceTelevisionTypePAllAllowed is a pointer to RatingFranceTelevisionTypeVAllAllowed
RatingFranceTelevisionTypePAllAllowed = &_RatingFranceTelevisionTypePAllAllowed
// RatingFranceTelevisionTypePAllBlocked is a pointer to RatingFranceTelevisionTypeVAllBlocked
RatingFranceTelevisionTypePAllBlocked = &_RatingFranceTelevisionTypePAllBlocked
// RatingFranceTelevisionTypePAgesAbove10 is a pointer to RatingFranceTelevisionTypeVAgesAbove10
RatingFranceTelevisionTypePAgesAbove10 = &_RatingFranceTelevisionTypePAgesAbove10
// RatingFranceTelevisionTypePAgesAbove12 is a pointer to RatingFranceTelevisionTypeVAgesAbove12
RatingFranceTelevisionTypePAgesAbove12 = &_RatingFranceTelevisionTypePAgesAbove12
// RatingFranceTelevisionTypePAgesAbove16 is a pointer to RatingFranceTelevisionTypeVAgesAbove16
RatingFranceTelevisionTypePAgesAbove16 = &_RatingFranceTelevisionTypePAgesAbove16
// RatingFranceTelevisionTypePAgesAbove18 is a pointer to RatingFranceTelevisionTypeVAgesAbove18
RatingFranceTelevisionTypePAgesAbove18 = &_RatingFranceTelevisionTypePAgesAbove18
)
var (
_RatingFranceTelevisionTypePAllAllowed = RatingFranceTelevisionTypeVAllAllowed
_RatingFranceTelevisionTypePAllBlocked = RatingFranceTelevisionTypeVAllBlocked
_RatingFranceTelevisionTypePAgesAbove10 = RatingFranceTelevisionTypeVAgesAbove10
_RatingFranceTelevisionTypePAgesAbove12 = RatingFranceTelevisionTypeVAgesAbove12
_RatingFranceTelevisionTypePAgesAbove16 = RatingFranceTelevisionTypeVAgesAbove16
_RatingFranceTelevisionTypePAgesAbove18 = RatingFranceTelevisionTypeVAgesAbove18
)
// RatingGermanyMoviesType undocumented
type RatingGermanyMoviesType string
const (
// RatingGermanyMoviesTypeVAllAllowed undocumented
RatingGermanyMoviesTypeVAllAllowed RatingGermanyMoviesType = "allAllowed"
// RatingGermanyMoviesTypeVAllBlocked undocumented
RatingGermanyMoviesTypeVAllBlocked RatingGermanyMoviesType = "allBlocked"
// RatingGermanyMoviesTypeVGeneral undocumented
RatingGermanyMoviesTypeVGeneral RatingGermanyMoviesType = "general"
// RatingGermanyMoviesTypeVAgesAbove6 undocumented
RatingGermanyMoviesTypeVAgesAbove6 RatingGermanyMoviesType = "agesAbove6"
// RatingGermanyMoviesTypeVAgesAbove12 undocumented
RatingGermanyMoviesTypeVAgesAbove12 RatingGermanyMoviesType = "agesAbove12"
// RatingGermanyMoviesTypeVAgesAbove16 undocumented
RatingGermanyMoviesTypeVAgesAbove16 RatingGermanyMoviesType = "agesAbove16"
// RatingGermanyMoviesTypeVAdults undocumented
RatingGermanyMoviesTypeVAdults RatingGermanyMoviesType = "adults"
)
var (
// RatingGermanyMoviesTypePAllAllowed is a pointer to RatingGermanyMoviesTypeVAllAllowed
RatingGermanyMoviesTypePAllAllowed = &_RatingGermanyMoviesTypePAllAllowed
// RatingGermanyMoviesTypePAllBlocked is a pointer to RatingGermanyMoviesTypeVAllBlocked
RatingGermanyMoviesTypePAllBlocked = &_RatingGermanyMoviesTypePAllBlocked
// RatingGermanyMoviesTypePGeneral is a pointer to RatingGermanyMoviesTypeVGeneral
RatingGermanyMoviesTypePGeneral = &_RatingGermanyMoviesTypePGeneral
// RatingGermanyMoviesTypePAgesAbove6 is a pointer to RatingGermanyMoviesTypeVAgesAbove6
RatingGermanyMoviesTypePAgesAbove6 = &_RatingGermanyMoviesTypePAgesAbove6
// RatingGermanyMoviesTypePAgesAbove12 is a pointer to RatingGermanyMoviesTypeVAgesAbove12
RatingGermanyMoviesTypePAgesAbove12 = &_RatingGermanyMoviesTypePAgesAbove12
// RatingGermanyMoviesTypePAgesAbove16 is a pointer to RatingGermanyMoviesTypeVAgesAbove16
RatingGermanyMoviesTypePAgesAbove16 = &_RatingGermanyMoviesTypePAgesAbove16
// RatingGermanyMoviesTypePAdults is a pointer to RatingGermanyMoviesTypeVAdults
RatingGermanyMoviesTypePAdults = &_RatingGermanyMoviesTypePAdults
)
var (
_RatingGermanyMoviesTypePAllAllowed = RatingGermanyMoviesTypeVAllAllowed
_RatingGermanyMoviesTypePAllBlocked = RatingGermanyMoviesTypeVAllBlocked
_RatingGermanyMoviesTypePGeneral = RatingGermanyMoviesTypeVGeneral
_RatingGermanyMoviesTypePAgesAbove6 = RatingGermanyMoviesTypeVAgesAbove6
_RatingGermanyMoviesTypePAgesAbove12 = RatingGermanyMoviesTypeVAgesAbove12
_RatingGermanyMoviesTypePAgesAbove16 = RatingGermanyMoviesTypeVAgesAbove16
_RatingGermanyMoviesTypePAdults = RatingGermanyMoviesTypeVAdults
)
// RatingGermanyTelevisionType undocumented
type RatingGermanyTelevisionType string
const (
// RatingGermanyTelevisionTypeVAllAllowed undocumented
RatingGermanyTelevisionTypeVAllAllowed RatingGermanyTelevisionType = "allAllowed"
// RatingGermanyTelevisionTypeVAllBlocked undocumented
RatingGermanyTelevisionTypeVAllBlocked RatingGermanyTelevisionType = "allBlocked"
// RatingGermanyTelevisionTypeVGeneral undocumented
RatingGermanyTelevisionTypeVGeneral RatingGermanyTelevisionType = "general"
// RatingGermanyTelevisionTypeVAgesAbove6 undocumented
RatingGermanyTelevisionTypeVAgesAbove6 RatingGermanyTelevisionType = "agesAbove6"
// RatingGermanyTelevisionTypeVAgesAbove12 undocumented
RatingGermanyTelevisionTypeVAgesAbove12 RatingGermanyTelevisionType = "agesAbove12"
// RatingGermanyTelevisionTypeVAgesAbove16 undocumented
RatingGermanyTelevisionTypeVAgesAbove16 RatingGermanyTelevisionType = "agesAbove16"
// RatingGermanyTelevisionTypeVAdults undocumented
RatingGermanyTelevisionTypeVAdults RatingGermanyTelevisionType = "adults"
)
var (
// RatingGermanyTelevisionTypePAllAllowed is a pointer to RatingGermanyTelevisionTypeVAllAllowed
RatingGermanyTelevisionTypePAllAllowed = &_RatingGermanyTelevisionTypePAllAllowed
// RatingGermanyTelevisionTypePAllBlocked is a pointer to RatingGermanyTelevisionTypeVAllBlocked
RatingGermanyTelevisionTypePAllBlocked = &_RatingGermanyTelevisionTypePAllBlocked
// RatingGermanyTelevisionTypePGeneral is a pointer to RatingGermanyTelevisionTypeVGeneral
RatingGermanyTelevisionTypePGeneral = &_RatingGermanyTelevisionTypePGeneral
// RatingGermanyTelevisionTypePAgesAbove6 is a pointer to RatingGermanyTelevisionTypeVAgesAbove6
RatingGermanyTelevisionTypePAgesAbove6 = &_RatingGermanyTelevisionTypePAgesAbove6
// RatingGermanyTelevisionTypePAgesAbove12 is a pointer to RatingGermanyTelevisionTypeVAgesAbove12
RatingGermanyTelevisionTypePAgesAbove12 = &_RatingGermanyTelevisionTypePAgesAbove12
// RatingGermanyTelevisionTypePAgesAbove16 is a pointer to RatingGermanyTelevisionTypeVAgesAbove16
RatingGermanyTelevisionTypePAgesAbove16 = &_RatingGermanyTelevisionTypePAgesAbove16
// RatingGermanyTelevisionTypePAdults is a pointer to RatingGermanyTelevisionTypeVAdults
RatingGermanyTelevisionTypePAdults = &_RatingGermanyTelevisionTypePAdults
)
var (
_RatingGermanyTelevisionTypePAllAllowed = RatingGermanyTelevisionTypeVAllAllowed
_RatingGermanyTelevisionTypePAllBlocked = RatingGermanyTelevisionTypeVAllBlocked
_RatingGermanyTelevisionTypePGeneral = RatingGermanyTelevisionTypeVGeneral
_RatingGermanyTelevisionTypePAgesAbove6 = RatingGermanyTelevisionTypeVAgesAbove6
_RatingGermanyTelevisionTypePAgesAbove12 = RatingGermanyTelevisionTypeVAgesAbove12
_RatingGermanyTelevisionTypePAgesAbove16 = RatingGermanyTelevisionTypeVAgesAbove16
_RatingGermanyTelevisionTypePAdults = RatingGermanyTelevisionTypeVAdults
)
// RatingIrelandMoviesType undocumented
type RatingIrelandMoviesType string
const (
// RatingIrelandMoviesTypeVAllAllowed undocumented
RatingIrelandMoviesTypeVAllAllowed RatingIrelandMoviesType = "allAllowed"
// RatingIrelandMoviesTypeVAllBlocked undocumented
RatingIrelandMoviesTypeVAllBlocked RatingIrelandMoviesType = "allBlocked"
// RatingIrelandMoviesTypeVGeneral undocumented
RatingIrelandMoviesTypeVGeneral RatingIrelandMoviesType = "general"
// RatingIrelandMoviesTypeVParentalGuidance undocumented
RatingIrelandMoviesTypeVParentalGuidance RatingIrelandMoviesType = "parentalGuidance"
// RatingIrelandMoviesTypeVAgesAbove12 undocumented
RatingIrelandMoviesTypeVAgesAbove12 RatingIrelandMoviesType = "agesAbove12"
// RatingIrelandMoviesTypeVAgesAbove15 undocumented
RatingIrelandMoviesTypeVAgesAbove15 RatingIrelandMoviesType = "agesAbove15"
// RatingIrelandMoviesTypeVAgesAbove16 undocumented
RatingIrelandMoviesTypeVAgesAbove16 RatingIrelandMoviesType = "agesAbove16"
// RatingIrelandMoviesTypeVAdults undocumented
RatingIrelandMoviesTypeVAdults RatingIrelandMoviesType = "adults"
)
var (
// RatingIrelandMoviesTypePAllAllowed is a pointer to RatingIrelandMoviesTypeVAllAllowed
RatingIrelandMoviesTypePAllAllowed = &_RatingIrelandMoviesTypePAllAllowed
// RatingIrelandMoviesTypePAllBlocked is a pointer to RatingIrelandMoviesTypeVAllBlocked
RatingIrelandMoviesTypePAllBlocked = &_RatingIrelandMoviesTypePAllBlocked
// RatingIrelandMoviesTypePGeneral is a pointer to RatingIrelandMoviesTypeVGeneral
RatingIrelandMoviesTypePGeneral = &_RatingIrelandMoviesTypePGeneral
// RatingIrelandMoviesTypePParentalGuidance is a pointer to RatingIrelandMoviesTypeVParentalGuidance
RatingIrelandMoviesTypePParentalGuidance = &_RatingIrelandMoviesTypePParentalGuidance
// RatingIrelandMoviesTypePAgesAbove12 is a pointer to RatingIrelandMoviesTypeVAgesAbove12
RatingIrelandMoviesTypePAgesAbove12 = &_RatingIrelandMoviesTypePAgesAbove12
// RatingIrelandMoviesTypePAgesAbove15 is a pointer to RatingIrelandMoviesTypeVAgesAbove15
RatingIrelandMoviesTypePAgesAbove15 = &_RatingIrelandMoviesTypePAgesAbove15
// RatingIrelandMoviesTypePAgesAbove16 is a pointer to RatingIrelandMoviesTypeVAgesAbove16
RatingIrelandMoviesTypePAgesAbove16 = &_RatingIrelandMoviesTypePAgesAbove16
// RatingIrelandMoviesTypePAdults is a pointer to RatingIrelandMoviesTypeVAdults
RatingIrelandMoviesTypePAdults = &_RatingIrelandMoviesTypePAdults
)
var (
_RatingIrelandMoviesTypePAllAllowed = RatingIrelandMoviesTypeVAllAllowed
_RatingIrelandMoviesTypePAllBlocked = RatingIrelandMoviesTypeVAllBlocked
_RatingIrelandMoviesTypePGeneral = RatingIrelandMoviesTypeVGeneral
_RatingIrelandMoviesTypePParentalGuidance = RatingIrelandMoviesTypeVParentalGuidance
_RatingIrelandMoviesTypePAgesAbove12 = RatingIrelandMoviesTypeVAgesAbove12
_RatingIrelandMoviesTypePAgesAbove15 = RatingIrelandMoviesTypeVAgesAbove15
_RatingIrelandMoviesTypePAgesAbove16 = RatingIrelandMoviesTypeVAgesAbove16
_RatingIrelandMoviesTypePAdults = RatingIrelandMoviesTypeVAdults
)
// RatingIrelandTelevisionType undocumented
type RatingIrelandTelevisionType string
const (
// RatingIrelandTelevisionTypeVAllAllowed undocumented
RatingIrelandTelevisionTypeVAllAllowed RatingIrelandTelevisionType = "allAllowed"
// RatingIrelandTelevisionTypeVAllBlocked undocumented
RatingIrelandTelevisionTypeVAllBlocked RatingIrelandTelevisionType = "allBlocked"
// RatingIrelandTelevisionTypeVGeneral undocumented
RatingIrelandTelevisionTypeVGeneral RatingIrelandTelevisionType = "general"
// RatingIrelandTelevisionTypeVChildren undocumented
RatingIrelandTelevisionTypeVChildren RatingIrelandTelevisionType = "children"
// RatingIrelandTelevisionTypeVYoungAdults undocumented
RatingIrelandTelevisionTypeVYoungAdults RatingIrelandTelevisionType = "youngAdults"
// RatingIrelandTelevisionTypeVParentalSupervision undocumented
RatingIrelandTelevisionTypeVParentalSupervision RatingIrelandTelevisionType = "parentalSupervision"
// RatingIrelandTelevisionTypeVMature undocumented
RatingIrelandTelevisionTypeVMature RatingIrelandTelevisionType = "mature"
)
var (
// RatingIrelandTelevisionTypePAllAllowed is a pointer to RatingIrelandTelevisionTypeVAllAllowed
RatingIrelandTelevisionTypePAllAllowed = &_RatingIrelandTelevisionTypePAllAllowed
// RatingIrelandTelevisionTypePAllBlocked is a pointer to RatingIrelandTelevisionTypeVAllBlocked
RatingIrelandTelevisionTypePAllBlocked = &_RatingIrelandTelevisionTypePAllBlocked
// RatingIrelandTelevisionTypePGeneral is a pointer to RatingIrelandTelevisionTypeVGeneral
RatingIrelandTelevisionTypePGeneral = &_RatingIrelandTelevisionTypePGeneral
// RatingIrelandTelevisionTypePChildren is a pointer to RatingIrelandTelevisionTypeVChildren
RatingIrelandTelevisionTypePChildren = &_RatingIrelandTelevisionTypePChildren
// RatingIrelandTelevisionTypePYoungAdults is a pointer to RatingIrelandTelevisionTypeVYoungAdults
RatingIrelandTelevisionTypePYoungAdults = &_RatingIrelandTelevisionTypePYoungAdults
// RatingIrelandTelevisionTypePParentalSupervision is a pointer to RatingIrelandTelevisionTypeVParentalSupervision
RatingIrelandTelevisionTypePParentalSupervision = &_RatingIrelandTelevisionTypePParentalSupervision
// RatingIrelandTelevisionTypePMature is a pointer to RatingIrelandTelevisionTypeVMature
RatingIrelandTelevisionTypePMature = &_RatingIrelandTelevisionTypePMature
)
var (
_RatingIrelandTelevisionTypePAllAllowed = RatingIrelandTelevisionTypeVAllAllowed
_RatingIrelandTelevisionTypePAllBlocked = RatingIrelandTelevisionTypeVAllBlocked
_RatingIrelandTelevisionTypePGeneral = RatingIrelandTelevisionTypeVGeneral
_RatingIrelandTelevisionTypePChildren = RatingIrelandTelevisionTypeVChildren
_RatingIrelandTelevisionTypePYoungAdults = RatingIrelandTelevisionTypeVYoungAdults
_RatingIrelandTelevisionTypePParentalSupervision = RatingIrelandTelevisionTypeVParentalSupervision
_RatingIrelandTelevisionTypePMature = RatingIrelandTelevisionTypeVMature
)
// RatingJapanMoviesType undocumented
type RatingJapanMoviesType string
const (
// RatingJapanMoviesTypeVAllAllowed undocumented
RatingJapanMoviesTypeVAllAllowed RatingJapanMoviesType = "allAllowed"
// RatingJapanMoviesTypeVAllBlocked undocumented
RatingJapanMoviesTypeVAllBlocked RatingJapanMoviesType = "allBlocked"
// RatingJapanMoviesTypeVGeneral undocumented
RatingJapanMoviesTypeVGeneral RatingJapanMoviesType = "general"
// RatingJapanMoviesTypeVParentalGuidance undocumented
RatingJapanMoviesTypeVParentalGuidance RatingJapanMoviesType = "parentalGuidance"
// RatingJapanMoviesTypeVAgesAbove15 undocumented
RatingJapanMoviesTypeVAgesAbove15 RatingJapanMoviesType = "agesAbove15"
// RatingJapanMoviesTypeVAgesAbove18 undocumented
RatingJapanMoviesTypeVAgesAbove18 RatingJapanMoviesType = "agesAbove18"
)
var (
// RatingJapanMoviesTypePAllAllowed is a pointer to RatingJapanMoviesTypeVAllAllowed
RatingJapanMoviesTypePAllAllowed = &_RatingJapanMoviesTypePAllAllowed
// RatingJapanMoviesTypePAllBlocked is a pointer to RatingJapanMoviesTypeVAllBlocked
RatingJapanMoviesTypePAllBlocked = &_RatingJapanMoviesTypePAllBlocked
// RatingJapanMoviesTypePGeneral is a pointer to RatingJapanMoviesTypeVGeneral
RatingJapanMoviesTypePGeneral = &_RatingJapanMoviesTypePGeneral
// RatingJapanMoviesTypePParentalGuidance is a pointer to RatingJapanMoviesTypeVParentalGuidance
RatingJapanMoviesTypePParentalGuidance = &_RatingJapanMoviesTypePParentalGuidance
// RatingJapanMoviesTypePAgesAbove15 is a pointer to RatingJapanMoviesTypeVAgesAbove15
RatingJapanMoviesTypePAgesAbove15 = &_RatingJapanMoviesTypePAgesAbove15
// RatingJapanMoviesTypePAgesAbove18 is a pointer to RatingJapanMoviesTypeVAgesAbove18
RatingJapanMoviesTypePAgesAbove18 = &_RatingJapanMoviesTypePAgesAbove18
)
var (
_RatingJapanMoviesTypePAllAllowed = RatingJapanMoviesTypeVAllAllowed
_RatingJapanMoviesTypePAllBlocked = RatingJapanMoviesTypeVAllBlocked
_RatingJapanMoviesTypePGeneral = RatingJapanMoviesTypeVGeneral
_RatingJapanMoviesTypePParentalGuidance = RatingJapanMoviesTypeVParentalGuidance
_RatingJapanMoviesTypePAgesAbove15 = RatingJapanMoviesTypeVAgesAbove15
_RatingJapanMoviesTypePAgesAbove18 = RatingJapanMoviesTypeVAgesAbove18
)
// RatingJapanTelevisionType undocumented
type RatingJapanTelevisionType string
const (
// RatingJapanTelevisionTypeVAllAllowed undocumented
RatingJapanTelevisionTypeVAllAllowed RatingJapanTelevisionType = "allAllowed"
// RatingJapanTelevisionTypeVAllBlocked undocumented
RatingJapanTelevisionTypeVAllBlocked RatingJapanTelevisionType = "allBlocked"
// RatingJapanTelevisionTypeVExplicitAllowed undocumented
RatingJapanTelevisionTypeVExplicitAllowed RatingJapanTelevisionType = "explicitAllowed"
)
var (
// RatingJapanTelevisionTypePAllAllowed is a pointer to RatingJapanTelevisionTypeVAllAllowed
RatingJapanTelevisionTypePAllAllowed = &_RatingJapanTelevisionTypePAllAllowed
// RatingJapanTelevisionTypePAllBlocked is a pointer to RatingJapanTelevisionTypeVAllBlocked
RatingJapanTelevisionTypePAllBlocked = &_RatingJapanTelevisionTypePAllBlocked
// RatingJapanTelevisionTypePExplicitAllowed is a pointer to RatingJapanTelevisionTypeVExplicitAllowed
RatingJapanTelevisionTypePExplicitAllowed = &_RatingJapanTelevisionTypePExplicitAllowed
)
var (
_RatingJapanTelevisionTypePAllAllowed = RatingJapanTelevisionTypeVAllAllowed
_RatingJapanTelevisionTypePAllBlocked = RatingJapanTelevisionTypeVAllBlocked
_RatingJapanTelevisionTypePExplicitAllowed = RatingJapanTelevisionTypeVExplicitAllowed
)
// RatingNewZealandMoviesType undocumented
type RatingNewZealandMoviesType string
const (
// RatingNewZealandMoviesTypeVAllAllowed undocumented
RatingNewZealandMoviesTypeVAllAllowed RatingNewZealandMoviesType = "allAllowed"
// RatingNewZealandMoviesTypeVAllBlocked undocumented
RatingNewZealandMoviesTypeVAllBlocked RatingNewZealandMoviesType = "allBlocked"
// RatingNewZealandMoviesTypeVGeneral undocumented
RatingNewZealandMoviesTypeVGeneral RatingNewZealandMoviesType = "general"
// RatingNewZealandMoviesTypeVParentalGuidance undocumented
RatingNewZealandMoviesTypeVParentalGuidance RatingNewZealandMoviesType = "parentalGuidance"
// RatingNewZealandMoviesTypeVMature undocumented
RatingNewZealandMoviesTypeVMature RatingNewZealandMoviesType = "mature"
// RatingNewZealandMoviesTypeVAgesAbove13 undocumented
RatingNewZealandMoviesTypeVAgesAbove13 RatingNewZealandMoviesType = "agesAbove13"
// RatingNewZealandMoviesTypeVAgesAbove15 undocumented
RatingNewZealandMoviesTypeVAgesAbove15 RatingNewZealandMoviesType = "agesAbove15"
// RatingNewZealandMoviesTypeVAgesAbove16 undocumented
RatingNewZealandMoviesTypeVAgesAbove16 RatingNewZealandMoviesType = "agesAbove16"
// RatingNewZealandMoviesTypeVAgesAbove18 undocumented
RatingNewZealandMoviesTypeVAgesAbove18 RatingNewZealandMoviesType = "agesAbove18"
// RatingNewZealandMoviesTypeVRestricted undocumented
RatingNewZealandMoviesTypeVRestricted RatingNewZealandMoviesType = "restricted"
// RatingNewZealandMoviesTypeVAgesAbove16Restricted undocumented
RatingNewZealandMoviesTypeVAgesAbove16Restricted RatingNewZealandMoviesType = "agesAbove16Restricted"
)
var (
// RatingNewZealandMoviesTypePAllAllowed is a pointer to RatingNewZealandMoviesTypeVAllAllowed
RatingNewZealandMoviesTypePAllAllowed = &_RatingNewZealandMoviesTypePAllAllowed
// RatingNewZealandMoviesTypePAllBlocked is a pointer to RatingNewZealandMoviesTypeVAllBlocked
RatingNewZealandMoviesTypePAllBlocked = &_RatingNewZealandMoviesTypePAllBlocked
// RatingNewZealandMoviesTypePGeneral is a pointer to RatingNewZealandMoviesTypeVGeneral
RatingNewZealandMoviesTypePGeneral = &_RatingNewZealandMoviesTypePGeneral
// RatingNewZealandMoviesTypePParentalGuidance is a pointer to RatingNewZealandMoviesTypeVParentalGuidance
RatingNewZealandMoviesTypePParentalGuidance = &_RatingNewZealandMoviesTypePParentalGuidance
// RatingNewZealandMoviesTypePMature is a pointer to RatingNewZealandMoviesTypeVMature
RatingNewZealandMoviesTypePMature = &_RatingNewZealandMoviesTypePMature
// RatingNewZealandMoviesTypePAgesAbove13 is a pointer to RatingNewZealandMoviesTypeVAgesAbove13
RatingNewZealandMoviesTypePAgesAbove13 = &_RatingNewZealandMoviesTypePAgesAbove13
// RatingNewZealandMoviesTypePAgesAbove15 is a pointer to RatingNewZealandMoviesTypeVAgesAbove15
RatingNewZealandMoviesTypePAgesAbove15 = &_RatingNewZealandMoviesTypePAgesAbove15
// RatingNewZealandMoviesTypePAgesAbove16 is a pointer to RatingNewZealandMoviesTypeVAgesAbove16
RatingNewZealandMoviesTypePAgesAbove16 = &_RatingNewZealandMoviesTypePAgesAbove16
// RatingNewZealandMoviesTypePAgesAbove18 is a pointer to RatingNewZealandMoviesTypeVAgesAbove18
RatingNewZealandMoviesTypePAgesAbove18 = &_RatingNewZealandMoviesTypePAgesAbove18
// RatingNewZealandMoviesTypePRestricted is a pointer to RatingNewZealandMoviesTypeVRestricted
RatingNewZealandMoviesTypePRestricted = &_RatingNewZealandMoviesTypePRestricted
// RatingNewZealandMoviesTypePAgesAbove16Restricted is a pointer to RatingNewZealandMoviesTypeVAgesAbove16Restricted
RatingNewZealandMoviesTypePAgesAbove16Restricted = &_RatingNewZealandMoviesTypePAgesAbove16Restricted
)
var (
_RatingNewZealandMoviesTypePAllAllowed = RatingNewZealandMoviesTypeVAllAllowed
_RatingNewZealandMoviesTypePAllBlocked = RatingNewZealandMoviesTypeVAllBlocked
_RatingNewZealandMoviesTypePGeneral = RatingNewZealandMoviesTypeVGeneral
_RatingNewZealandMoviesTypePParentalGuidance = RatingNewZealandMoviesTypeVParentalGuidance
_RatingNewZealandMoviesTypePMature = RatingNewZealandMoviesTypeVMature
_RatingNewZealandMoviesTypePAgesAbove13 = RatingNewZealandMoviesTypeVAgesAbove13
_RatingNewZealandMoviesTypePAgesAbove15 = RatingNewZealandMoviesTypeVAgesAbove15
_RatingNewZealandMoviesTypePAgesAbove16 = RatingNewZealandMoviesTypeVAgesAbove16
_RatingNewZealandMoviesTypePAgesAbove18 = RatingNewZealandMoviesTypeVAgesAbove18
_RatingNewZealandMoviesTypePRestricted = RatingNewZealandMoviesTypeVRestricted
_RatingNewZealandMoviesTypePAgesAbove16Restricted = RatingNewZealandMoviesTypeVAgesAbove16Restricted
)
// RatingNewZealandTelevisionType undocumented
type RatingNewZealandTelevisionType string
const (
// RatingNewZealandTelevisionTypeVAllAllowed undocumented
RatingNewZealandTelevisionTypeVAllAllowed RatingNewZealandTelevisionType = "allAllowed"
// RatingNewZealandTelevisionTypeVAllBlocked undocumented
RatingNewZealandTelevisionTypeVAllBlocked RatingNewZealandTelevisionType = "allBlocked"
// RatingNewZealandTelevisionTypeVGeneral undocumented
RatingNewZealandTelevisionTypeVGeneral RatingNewZealandTelevisionType = "general"
// RatingNewZealandTelevisionTypeVParentalGuidance undocumented
RatingNewZealandTelevisionTypeVParentalGuidance RatingNewZealandTelevisionType = "parentalGuidance"
// RatingNewZealandTelevisionTypeVAdults undocumented
RatingNewZealandTelevisionTypeVAdults RatingNewZealandTelevisionType = "adults"
)
var (
// RatingNewZealandTelevisionTypePAllAllowed is a pointer to RatingNewZealandTelevisionTypeVAllAllowed
RatingNewZealandTelevisionTypePAllAllowed = &_RatingNewZealandTelevisionTypePAllAllowed
// RatingNewZealandTelevisionTypePAllBlocked is a pointer to RatingNewZealandTelevisionTypeVAllBlocked
RatingNewZealandTelevisionTypePAllBlocked = &_RatingNewZealandTelevisionTypePAllBlocked
// RatingNewZealandTelevisionTypePGeneral is a pointer to RatingNewZealandTelevisionTypeVGeneral
RatingNewZealandTelevisionTypePGeneral = &_RatingNewZealandTelevisionTypePGeneral
// RatingNewZealandTelevisionTypePParentalGuidance is a pointer to RatingNewZealandTelevisionTypeVParentalGuidance
RatingNewZealandTelevisionTypePParentalGuidance = &_RatingNewZealandTelevisionTypePParentalGuidance
// RatingNewZealandTelevisionTypePAdults is a pointer to RatingNewZealandTelevisionTypeVAdults
RatingNewZealandTelevisionTypePAdults = &_RatingNewZealandTelevisionTypePAdults
)
var (
_RatingNewZealandTelevisionTypePAllAllowed = RatingNewZealandTelevisionTypeVAllAllowed
_RatingNewZealandTelevisionTypePAllBlocked = RatingNewZealandTelevisionTypeVAllBlocked
_RatingNewZealandTelevisionTypePGeneral = RatingNewZealandTelevisionTypeVGeneral
_RatingNewZealandTelevisionTypePParentalGuidance = RatingNewZealandTelevisionTypeVParentalGuidance
_RatingNewZealandTelevisionTypePAdults = RatingNewZealandTelevisionTypeVAdults
)
// RatingUnitedKingdomMoviesType undocumented
type RatingUnitedKingdomMoviesType string
const (
// RatingUnitedKingdomMoviesTypeVAllAllowed undocumented
RatingUnitedKingdomMoviesTypeVAllAllowed RatingUnitedKingdomMoviesType = "allAllowed"
// RatingUnitedKingdomMoviesTypeVAllBlocked undocumented
RatingUnitedKingdomMoviesTypeVAllBlocked RatingUnitedKingdomMoviesType = "allBlocked"
// RatingUnitedKingdomMoviesTypeVGeneral undocumented
RatingUnitedKingdomMoviesTypeVGeneral RatingUnitedKingdomMoviesType = "general"
// RatingUnitedKingdomMoviesTypeVUniversalChildren undocumented
RatingUnitedKingdomMoviesTypeVUniversalChildren RatingUnitedKingdomMoviesType = "universalChildren"
// RatingUnitedKingdomMoviesTypeVParentalGuidance undocumented
RatingUnitedKingdomMoviesTypeVParentalGuidance RatingUnitedKingdomMoviesType = "parentalGuidance"
// RatingUnitedKingdomMoviesTypeVAgesAbove12Video undocumented
RatingUnitedKingdomMoviesTypeVAgesAbove12Video RatingUnitedKingdomMoviesType = "agesAbove12Video"
// RatingUnitedKingdomMoviesTypeVAgesAbove12Cinema undocumented
RatingUnitedKingdomMoviesTypeVAgesAbove12Cinema RatingUnitedKingdomMoviesType = "agesAbove12Cinema"
// RatingUnitedKingdomMoviesTypeVAgesAbove15 undocumented
RatingUnitedKingdomMoviesTypeVAgesAbove15 RatingUnitedKingdomMoviesType = "agesAbove15"
// RatingUnitedKingdomMoviesTypeVAdults undocumented
RatingUnitedKingdomMoviesTypeVAdults RatingUnitedKingdomMoviesType = "adults"
)
var (
// RatingUnitedKingdomMoviesTypePAllAllowed is a pointer to RatingUnitedKingdomMoviesTypeVAllAllowed
RatingUnitedKingdomMoviesTypePAllAllowed = &_RatingUnitedKingdomMoviesTypePAllAllowed
// RatingUnitedKingdomMoviesTypePAllBlocked is a pointer to RatingUnitedKingdomMoviesTypeVAllBlocked
RatingUnitedKingdomMoviesTypePAllBlocked = &_RatingUnitedKingdomMoviesTypePAllBlocked
// RatingUnitedKingdomMoviesTypePGeneral is a pointer to RatingUnitedKingdomMoviesTypeVGeneral
RatingUnitedKingdomMoviesTypePGeneral = &_RatingUnitedKingdomMoviesTypePGeneral
// RatingUnitedKingdomMoviesTypePUniversalChildren is a pointer to RatingUnitedKingdomMoviesTypeVUniversalChildren
RatingUnitedKingdomMoviesTypePUniversalChildren = &_RatingUnitedKingdomMoviesTypePUniversalChildren
// RatingUnitedKingdomMoviesTypePParentalGuidance is a pointer to RatingUnitedKingdomMoviesTypeVParentalGuidance
RatingUnitedKingdomMoviesTypePParentalGuidance = &_RatingUnitedKingdomMoviesTypePParentalGuidance
// RatingUnitedKingdomMoviesTypePAgesAbove12Video is a pointer to RatingUnitedKingdomMoviesTypeVAgesAbove12Video
RatingUnitedKingdomMoviesTypePAgesAbove12Video = &_RatingUnitedKingdomMoviesTypePAgesAbove12Video
// RatingUnitedKingdomMoviesTypePAgesAbove12Cinema is a pointer to RatingUnitedKingdomMoviesTypeVAgesAbove12Cinema
RatingUnitedKingdomMoviesTypePAgesAbove12Cinema = &_RatingUnitedKingdomMoviesTypePAgesAbove12Cinema
// RatingUnitedKingdomMoviesTypePAgesAbove15 is a pointer to RatingUnitedKingdomMoviesTypeVAgesAbove15
RatingUnitedKingdomMoviesTypePAgesAbove15 = &_RatingUnitedKingdomMoviesTypePAgesAbove15
// RatingUnitedKingdomMoviesTypePAdults is a pointer to RatingUnitedKingdomMoviesTypeVAdults
RatingUnitedKingdomMoviesTypePAdults = &_RatingUnitedKingdomMoviesTypePAdults
)
var (
_RatingUnitedKingdomMoviesTypePAllAllowed = RatingUnitedKingdomMoviesTypeVAllAllowed
_RatingUnitedKingdomMoviesTypePAllBlocked = RatingUnitedKingdomMoviesTypeVAllBlocked
_RatingUnitedKingdomMoviesTypePGeneral = RatingUnitedKingdomMoviesTypeVGeneral
_RatingUnitedKingdomMoviesTypePUniversalChildren = RatingUnitedKingdomMoviesTypeVUniversalChildren
_RatingUnitedKingdomMoviesTypePParentalGuidance = RatingUnitedKingdomMoviesTypeVParentalGuidance
_RatingUnitedKingdomMoviesTypePAgesAbove12Video = RatingUnitedKingdomMoviesTypeVAgesAbove12Video
_RatingUnitedKingdomMoviesTypePAgesAbove12Cinema = RatingUnitedKingdomMoviesTypeVAgesAbove12Cinema
_RatingUnitedKingdomMoviesTypePAgesAbove15 = RatingUnitedKingdomMoviesTypeVAgesAbove15
_RatingUnitedKingdomMoviesTypePAdults = RatingUnitedKingdomMoviesTypeVAdults
)
// RatingUnitedKingdomTelevisionType undocumented
type RatingUnitedKingdomTelevisionType string
const (
// RatingUnitedKingdomTelevisionTypeVAllAllowed undocumented
RatingUnitedKingdomTelevisionTypeVAllAllowed RatingUnitedKingdomTelevisionType = "allAllowed"
// RatingUnitedKingdomTelevisionTypeVAllBlocked undocumented
RatingUnitedKingdomTelevisionTypeVAllBlocked RatingUnitedKingdomTelevisionType = "allBlocked"
// RatingUnitedKingdomTelevisionTypeVCaution undocumented
RatingUnitedKingdomTelevisionTypeVCaution RatingUnitedKingdomTelevisionType = "caution"
)
var (
// RatingUnitedKingdomTelevisionTypePAllAllowed is a pointer to RatingUnitedKingdomTelevisionTypeVAllAllowed
RatingUnitedKingdomTelevisionTypePAllAllowed = &_RatingUnitedKingdomTelevisionTypePAllAllowed
// RatingUnitedKingdomTelevisionTypePAllBlocked is a pointer to RatingUnitedKingdomTelevisionTypeVAllBlocked
RatingUnitedKingdomTelevisionTypePAllBlocked = &_RatingUnitedKingdomTelevisionTypePAllBlocked
// RatingUnitedKingdomTelevisionTypePCaution is a pointer to RatingUnitedKingdomTelevisionTypeVCaution
RatingUnitedKingdomTelevisionTypePCaution = &_RatingUnitedKingdomTelevisionTypePCaution
)
var (
_RatingUnitedKingdomTelevisionTypePAllAllowed = RatingUnitedKingdomTelevisionTypeVAllAllowed
_RatingUnitedKingdomTelevisionTypePAllBlocked = RatingUnitedKingdomTelevisionTypeVAllBlocked
_RatingUnitedKingdomTelevisionTypePCaution = RatingUnitedKingdomTelevisionTypeVCaution
)
// RatingUnitedStatesMoviesType undocumented
type RatingUnitedStatesMoviesType string
const (
// RatingUnitedStatesMoviesTypeVAllAllowed undocumented
RatingUnitedStatesMoviesTypeVAllAllowed RatingUnitedStatesMoviesType = "allAllowed"
// RatingUnitedStatesMoviesTypeVAllBlocked undocumented
RatingUnitedStatesMoviesTypeVAllBlocked RatingUnitedStatesMoviesType = "allBlocked"
// RatingUnitedStatesMoviesTypeVGeneral undocumented
RatingUnitedStatesMoviesTypeVGeneral RatingUnitedStatesMoviesType = "general"
// RatingUnitedStatesMoviesTypeVParentalGuidance undocumented
RatingUnitedStatesMoviesTypeVParentalGuidance RatingUnitedStatesMoviesType = "parentalGuidance"
// RatingUnitedStatesMoviesTypeVParentalGuidance13 undocumented
RatingUnitedStatesMoviesTypeVParentalGuidance13 RatingUnitedStatesMoviesType = "parentalGuidance13"
// RatingUnitedStatesMoviesTypeVRestricted undocumented
RatingUnitedStatesMoviesTypeVRestricted RatingUnitedStatesMoviesType = "restricted"
// RatingUnitedStatesMoviesTypeVAdults undocumented
RatingUnitedStatesMoviesTypeVAdults RatingUnitedStatesMoviesType = "adults"
)
var (
// RatingUnitedStatesMoviesTypePAllAllowed is a pointer to RatingUnitedStatesMoviesTypeVAllAllowed
RatingUnitedStatesMoviesTypePAllAllowed = &_RatingUnitedStatesMoviesTypePAllAllowed
// RatingUnitedStatesMoviesTypePAllBlocked is a pointer to RatingUnitedStatesMoviesTypeVAllBlocked
RatingUnitedStatesMoviesTypePAllBlocked = &_RatingUnitedStatesMoviesTypePAllBlocked
// RatingUnitedStatesMoviesTypePGeneral is a pointer to RatingUnitedStatesMoviesTypeVGeneral
RatingUnitedStatesMoviesTypePGeneral = &_RatingUnitedStatesMoviesTypePGeneral
// RatingUnitedStatesMoviesTypePParentalGuidance is a pointer to RatingUnitedStatesMoviesTypeVParentalGuidance
RatingUnitedStatesMoviesTypePParentalGuidance = &_RatingUnitedStatesMoviesTypePParentalGuidance
// RatingUnitedStatesMoviesTypePParentalGuidance13 is a pointer to RatingUnitedStatesMoviesTypeVParentalGuidance13
RatingUnitedStatesMoviesTypePParentalGuidance13 = &_RatingUnitedStatesMoviesTypePParentalGuidance13
// RatingUnitedStatesMoviesTypePRestricted is a pointer to RatingUnitedStatesMoviesTypeVRestricted
RatingUnitedStatesMoviesTypePRestricted = &_RatingUnitedStatesMoviesTypePRestricted
// RatingUnitedStatesMoviesTypePAdults is a pointer to RatingUnitedStatesMoviesTypeVAdults
RatingUnitedStatesMoviesTypePAdults = &_RatingUnitedStatesMoviesTypePAdults
)
var (
_RatingUnitedStatesMoviesTypePAllAllowed = RatingUnitedStatesMoviesTypeVAllAllowed
_RatingUnitedStatesMoviesTypePAllBlocked = RatingUnitedStatesMoviesTypeVAllBlocked
_RatingUnitedStatesMoviesTypePGeneral = RatingUnitedStatesMoviesTypeVGeneral
_RatingUnitedStatesMoviesTypePParentalGuidance = RatingUnitedStatesMoviesTypeVParentalGuidance
_RatingUnitedStatesMoviesTypePParentalGuidance13 = RatingUnitedStatesMoviesTypeVParentalGuidance13
_RatingUnitedStatesMoviesTypePRestricted = RatingUnitedStatesMoviesTypeVRestricted
_RatingUnitedStatesMoviesTypePAdults = RatingUnitedStatesMoviesTypeVAdults
)
// RatingUnitedStatesTelevisionType undocumented
type RatingUnitedStatesTelevisionType string
const (
// RatingUnitedStatesTelevisionTypeVAllAllowed undocumented
RatingUnitedStatesTelevisionTypeVAllAllowed RatingUnitedStatesTelevisionType = "allAllowed"
// RatingUnitedStatesTelevisionTypeVAllBlocked undocumented
RatingUnitedStatesTelevisionTypeVAllBlocked RatingUnitedStatesTelevisionType = "allBlocked"
// RatingUnitedStatesTelevisionTypeVChildrenAll undocumented
RatingUnitedStatesTelevisionTypeVChildrenAll RatingUnitedStatesTelevisionType = "childrenAll"
// RatingUnitedStatesTelevisionTypeVChildrenAbove7 undocumented
RatingUnitedStatesTelevisionTypeVChildrenAbove7 RatingUnitedStatesTelevisionType = "childrenAbove7"
// RatingUnitedStatesTelevisionTypeVGeneral undocumented
RatingUnitedStatesTelevisionTypeVGeneral RatingUnitedStatesTelevisionType = "general"
// RatingUnitedStatesTelevisionTypeVParentalGuidance undocumented
RatingUnitedStatesTelevisionTypeVParentalGuidance RatingUnitedStatesTelevisionType = "parentalGuidance"
// RatingUnitedStatesTelevisionTypeVChildrenAbove14 undocumented
RatingUnitedStatesTelevisionTypeVChildrenAbove14 RatingUnitedStatesTelevisionType = "childrenAbove14"
// RatingUnitedStatesTelevisionTypeVAdults undocumented
RatingUnitedStatesTelevisionTypeVAdults RatingUnitedStatesTelevisionType = "adults"
)
var (
// RatingUnitedStatesTelevisionTypePAllAllowed is a pointer to RatingUnitedStatesTelevisionTypeVAllAllowed
RatingUnitedStatesTelevisionTypePAllAllowed = &_RatingUnitedStatesTelevisionTypePAllAllowed
// RatingUnitedStatesTelevisionTypePAllBlocked is a pointer to RatingUnitedStatesTelevisionTypeVAllBlocked
RatingUnitedStatesTelevisionTypePAllBlocked = &_RatingUnitedStatesTelevisionTypePAllBlocked
// RatingUnitedStatesTelevisionTypePChildrenAll is a pointer to RatingUnitedStatesTelevisionTypeVChildrenAll
RatingUnitedStatesTelevisionTypePChildrenAll = &_RatingUnitedStatesTelevisionTypePChildrenAll
// RatingUnitedStatesTelevisionTypePChildrenAbove7 is a pointer to RatingUnitedStatesTelevisionTypeVChildrenAbove7
RatingUnitedStatesTelevisionTypePChildrenAbove7 = &_RatingUnitedStatesTelevisionTypePChildrenAbove7
// RatingUnitedStatesTelevisionTypePGeneral is a pointer to RatingUnitedStatesTelevisionTypeVGeneral
RatingUnitedStatesTelevisionTypePGeneral = &_RatingUnitedStatesTelevisionTypePGeneral
// RatingUnitedStatesTelevisionTypePParentalGuidance is a pointer to RatingUnitedStatesTelevisionTypeVParentalGuidance
RatingUnitedStatesTelevisionTypePParentalGuidance = &_RatingUnitedStatesTelevisionTypePParentalGuidance
// RatingUnitedStatesTelevisionTypePChildrenAbove14 is a pointer to RatingUnitedStatesTelevisionTypeVChildrenAbove14
RatingUnitedStatesTelevisionTypePChildrenAbove14 = &_RatingUnitedStatesTelevisionTypePChildrenAbove14
// RatingUnitedStatesTelevisionTypePAdults is a pointer to RatingUnitedStatesTelevisionTypeVAdults
RatingUnitedStatesTelevisionTypePAdults = &_RatingUnitedStatesTelevisionTypePAdults
)
var (
_RatingUnitedStatesTelevisionTypePAllAllowed = RatingUnitedStatesTelevisionTypeVAllAllowed
_RatingUnitedStatesTelevisionTypePAllBlocked = RatingUnitedStatesTelevisionTypeVAllBlocked
_RatingUnitedStatesTelevisionTypePChildrenAll = RatingUnitedStatesTelevisionTypeVChildrenAll
_RatingUnitedStatesTelevisionTypePChildrenAbove7 = RatingUnitedStatesTelevisionTypeVChildrenAbove7
_RatingUnitedStatesTelevisionTypePGeneral = RatingUnitedStatesTelevisionTypeVGeneral
_RatingUnitedStatesTelevisionTypePParentalGuidance = RatingUnitedStatesTelevisionTypeVParentalGuidance
_RatingUnitedStatesTelevisionTypePChildrenAbove14 = RatingUnitedStatesTelevisionTypeVChildrenAbove14
_RatingUnitedStatesTelevisionTypePAdults = RatingUnitedStatesTelevisionTypeVAdults
)
|