-
Notifications
You must be signed in to change notification settings - Fork 7
/
a1_schema.py
2684 lines (2118 loc) · 140 KB
/
a1_schema.py
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
from lib import sgqlc
from lib.sgqlc import types as types
from lib.sgqlc.types import datetime as datetime
from lib.sgqlc.types import relay as relay
a1_schema = sgqlc.types.Schema()
# Unexport Node/PageInfo, let schema re-declare them
a1_schema -= sgqlc.types.relay.Node
a1_schema -= sgqlc.types.relay.PageInfo
########################################################################
# Scalars and Enumerations
########################################################################
class AppSorting(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('MANUAL', 'AUTOMATIC')
Boolean = sgqlc.types.Boolean
class ChannelKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('TV', 'RADIO')
class ChannelListKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('FULL', 'DVB', 'OPERATOR', 'SUBSCRIBER', 'DYNAMIC')
class ChannelSortingMode(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('DEFAULT', 'REPLAY_PERMISSIONS', 'ALPHABETICAL')
class ContentDeliveryKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('MULTICAST', 'HLS', 'DASH', 'DVB', 'RTSP', 'HTTP')
class ContentFolderKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('CONTINUE_WATCHING', 'FAVOURITES', 'PURCHASES', 'RECOMMENDATION', 'RECORDINGS', 'REMINDERS', 'VOD', 'EPG', 'SEARCH')
class DVBModulationKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('QAM16', 'QAM32', 'QAM64', 'QAM128', 'QAM256')
Date = sgqlc.types.datetime.Date
class DeviceType(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('NATIVE_STB', 'ANDROID_STB', 'AMAZON_FIRE_TV', 'IOS_PHONE', 'ANDROID_PHONE', 'IOS_TABLET', 'ANDROID_TABLET', 'CHROMECAST', 'MACOS', 'WINDOWS_PC', 'LINUX', 'WINDOWS_PC_EDGE', 'WINDOWS_PC_INTERNET_EXPLORER', 'WINDOWS_PC_CHROME', 'WINDOWS_PC_FIREFOX', 'MACOS_SAFARI', 'MACOS_CHROME', 'MACOS_FIREFOX', 'MACOS_EDGE', 'LINUX_CHROME', 'LINUX_FIREFOX')
class EndOfStreamBehaviour(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('TO_LIVE', 'PAUSE', 'NEXT_EVENT', 'PLAY')
class EventLoggingOption(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('ALL',)
class FavouritableItemKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('EVENT', 'NETWORK_RECORDING', 'VOD_ASSET', 'VOD_PRODUCT')
Float = sgqlc.types.Float
class GroupInfoSelectBehaviour(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('SELECT_START', 'SELECT_END', 'SELECT_NOW')
class HybridChannelDisplayBehaviour(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('ALWAYS', 'ONLY_IF_ON_DVB')
class HybridChannelPlaybackBehaviour(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('PREFER_DVB', 'FORCE_GRAPHQL_PLAYBACK_URL', 'FORCE_DVB')
ID = sgqlc.types.ID
class ImageFlavour(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('NORMAL', 'INVERTED')
Int = sgqlc.types.Int
class MessageDisplayKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('INBOX', 'NOTIFICATION')
class MessageStatus(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('NEW', 'READ')
class PageWithRecommendations(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('HOME', 'SEARCH', 'ONDEMAND', 'MYLIBRARY', 'DETAILED_TV', 'DETAILED_REC', 'DETAILED_VOD_MOVIE', 'DETAILED_VOD_PRODUCT', 'DETAILED_CHANNEL', 'DETAILED_CHANNEL_PRODUCT', 'DETAILED_TV_SERIES', 'DETAILED_REC_SERIES', 'DETAILED_VOD_SERIES', 'DETAILED_MAIN_PACKAGE', 'DETAILED_FEATURE', 'DETAILED_PROMOTION')
class PincodeKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('MASTER', 'PROFILE')
class ProductKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('RENTAL', 'PURCHASE', 'SUBSCRIPTION', 'SUBSCRIPTION_UPSELLABLE', 'FREE')
class ProductPurchaseStatus(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('NOT_SUBSCRIBED', 'IN_PROGRESS', 'SUBSCRIBED')
class ProfileKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('FAMILY', 'KIDS', 'OTHER')
class ProfileProtection(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('NONE', 'PINCODE', 'MASTERPIN')
class QuotaKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('DURATION', 'STORAGE')
class RecordingKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('NETWORK',)
class RecordingStatus(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('PLANNED', 'IN_PROGRESS', 'COMPLETED', 'INCOMPLETE', 'CONFLICT', 'FAILED')
class SearchContentType(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('EVENTS', 'RECORDINGS', 'ON_DEMAND')
class SearchPaidOrIncludedContent(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('ALL', 'PAID', 'INCLUDED')
String = sgqlc.types.String
class UpsellProductsContextKind(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('CHANNEL', 'VOD_ASSET', 'EVENT')
class VideoQuality(sgqlc.types.Enum):
__schema__ = a1_schema
__choices__ = ('SD', 'HD', 'UHD')
########################################################################
# Input Objects
########################################################################
class CancelNetworkSeriesRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'event_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
class CancelSeasonOfNetworkSeriesRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'event_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
class CancelVODTransactionInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'vod_asset_entitlement_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
vod_asset_entitlement_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodAssetEntitlementId')
class CatchupEventInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('event_id', 'replace_session_id', 'streaming_network_ip_address')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class ChangeChannelListNameInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('channel_list_id', 'name')
channel_list_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelListId')
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
class ChangeChannelPreferencesInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'channel_id', 'audio_language', 'subtitle_language')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
channel_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelId')
audio_language = sgqlc.types.Field(String, graphql_name='audioLanguage')
subtitle_language = sgqlc.types.Field(String, graphql_name='subtitleLanguage')
class ChangeDeviceDRMNetworkDeviceIdInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('drm_network_device_id',)
drm_network_device_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='drmNetworkDeviceId')
class ChangeDeviceEnablementPolicyInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('device_id', 'device_enablement_policy_id', 'enabled')
device_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='deviceId')
device_enablement_policy_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='deviceEnablementPolicyId')
enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='enabled')
class ChangeDeviceNameInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('device_id', 'name')
device_id = sgqlc.types.Field(ID, graphql_name='deviceId')
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
class ChangeDevicePreviewModeInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('enabled',)
enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='enabled')
class ChangeHouseholdCommunityInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('community_id',)
community_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='communityId')
class ChangeHouseholdOnboardingInfoInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('master_pincode_step_completed', 'community_step_completed', 'privacy_step_completed', 'replay_step_completed')
master_pincode_step_completed = sgqlc.types.Field(Boolean, graphql_name='masterPincodeStepCompleted')
community_step_completed = sgqlc.types.Field(Boolean, graphql_name='communityStepCompleted')
privacy_step_completed = sgqlc.types.Field(Boolean, graphql_name='privacyStepCompleted')
replay_step_completed = sgqlc.types.Field(Boolean, graphql_name='replayStepCompleted')
class ChangeHouseholdPreferencesInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('display_non_adult_content', 'track_viewing_behaviour', 'agreed_to_terms_and_conditions')
display_non_adult_content = sgqlc.types.Field(Boolean, graphql_name='displayNonAdultContent')
track_viewing_behaviour = sgqlc.types.Field(Boolean, graphql_name='trackViewingBehaviour')
agreed_to_terms_and_conditions = sgqlc.types.Field(Boolean, graphql_name='agreedToTermsAndConditions')
class ChangeInitialChannelListInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'channel_list_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
channel_list_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelListId')
class ChangeLanguageInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('id',)
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
class ChangeMasterPincodeInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('master_pincode',)
master_pincode = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='masterPincode')
class ChangeNetworkRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'recording_id', 'delete_protected')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
recording_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='recordingId')
delete_protected = sgqlc.types.Field(Boolean, graphql_name='deleteProtected')
class ChangeProfileOnboardingInfoInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('age_rating_step_completed',)
age_rating_step_completed = sgqlc.types.Field(Boolean, graphql_name='ageRatingStepCompleted')
class ChangeProfilePermissionsInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'parental_rating_id', 'mask_content', 'can_purchase', 'purchase_protection', 'purchase_limit', 'display_blocked_channels', 'other_profiles_content', 'edit_my_library', 'create_recordings', 'logout_pincode', 'edit_channel_lists', 'single_channel_list_id', 'access_search', 'resort_apps', 'manage_apps')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
parental_rating_id = sgqlc.types.Field(ID, graphql_name='parentalRatingId')
mask_content = sgqlc.types.Field(Boolean, graphql_name='maskContent')
can_purchase = sgqlc.types.Field(Boolean, graphql_name='canPurchase')
purchase_protection = sgqlc.types.Field(ProfileProtection, graphql_name='purchaseProtection')
purchase_limit = sgqlc.types.Field(Float, graphql_name='purchaseLimit')
display_blocked_channels = sgqlc.types.Field(Boolean, graphql_name='displayBlockedChannels')
other_profiles_content = sgqlc.types.Field(Boolean, graphql_name='otherProfilesContent')
edit_my_library = sgqlc.types.Field(Boolean, graphql_name='editMyLibrary')
create_recordings = sgqlc.types.Field(Boolean, graphql_name='createRecordings')
logout_pincode = sgqlc.types.Field(String, graphql_name='logoutPincode')
edit_channel_lists = sgqlc.types.Field(Boolean, graphql_name='editChannelLists')
single_channel_list_id = sgqlc.types.Field(ID, graphql_name='singleChannelListId')
access_search = sgqlc.types.Field(Boolean, graphql_name='accessSearch')
resort_apps = sgqlc.types.Field(Boolean, graphql_name='resortApps')
manage_apps = sgqlc.types.Field(Boolean, graphql_name='manageApps')
class ChangeProfilePincodeInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'current_pincode', 'new_pincode')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
current_pincode = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currentPincode')
new_pincode = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='newPincode')
class ChangeProfilePreferencesInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'name', 'kind', 'protection', 'first_audio_language', 'second_audio_language', 'first_subtitle_language', 'second_subtitle_language', 'hard_of_hearing', 'visually_impaired')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
name = sgqlc.types.Field(String, graphql_name='name')
kind = sgqlc.types.Field(ProfileKind, graphql_name='kind')
protection = sgqlc.types.Field(ProfileProtection, graphql_name='protection')
first_audio_language = sgqlc.types.Field(String, graphql_name='firstAudioLanguage')
second_audio_language = sgqlc.types.Field(String, graphql_name='secondAudioLanguage')
first_subtitle_language = sgqlc.types.Field(String, graphql_name='firstSubtitleLanguage')
second_subtitle_language = sgqlc.types.Field(String, graphql_name='secondSubtitleLanguage')
hard_of_hearing = sgqlc.types.Field(Boolean, graphql_name='hardOfHearing')
visually_impaired = sgqlc.types.Field(Boolean, graphql_name='visuallyImpaired')
class ChannelFilterParams(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('household_confirmed_replay_permissions_set', 'replay_enabled', 'force_return_blocked_channels')
household_confirmed_replay_permissions_set = sgqlc.types.Field(Boolean, graphql_name='householdConfirmedReplayPermissionsSet')
replay_enabled = sgqlc.types.Field(Boolean, graphql_name='replayEnabled')
force_return_blocked_channels = sgqlc.types.Field(Boolean, graphql_name='forceReturnBlockedChannels')
class ChannelSortingParams(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('mode',)
mode = sgqlc.types.Field(ChannelSortingMode, graphql_name='mode')
class CompleteVODTransactionInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'vod_asset_entitlement_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
vod_asset_entitlement_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodAssetEntitlementId')
class CreateDeviceInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('client_generated_device_id', 'device_type', 'name', 'language_id')
client_generated_device_id = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='clientGeneratedDeviceId')
device_type = sgqlc.types.Field(sgqlc.types.non_null(DeviceType), graphql_name='deviceType')
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
language_id = sgqlc.types.Field(ID, graphql_name='languageId')
class CreateNetworkRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'event_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
class CreateNetworkSeriesRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'event_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
class CreatePersonalChannelListInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'name', 'channels')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
name = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='name')
channels = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(ID)), graphql_name='channels')
class CreateProfilePincodeInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'pincode')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
pincode = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='pincode')
class DeleteDeviceInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('id',)
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
class DeleteEpisodesOfNetworkSeriesRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'event_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
class DeleteEventBookmarkInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'event_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
class DeleteProfilePincodeInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'current_pincode')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
current_pincode = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='currentPincode')
class DeleteRecordingBookmarkInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'recording_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
recording_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='recordingId')
class DeleteRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'recording_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
recording_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='recordingId')
class DeleteVODBookmarkInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'vod_asset_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
vod_asset_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodAssetId')
class FavouriteItemInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'item_id', 'item_kind')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
item_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='itemId')
item_kind = sgqlc.types.Field(sgqlc.types.non_null(FavouritableItemKind), graphql_name='itemKind')
class FullPaginationParams(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('first', 'after', 'last', 'before')
first = sgqlc.types.Field(Int, graphql_name='first')
after = sgqlc.types.Field(String, graphql_name='after')
last = sgqlc.types.Field(Int, graphql_name='last')
before = sgqlc.types.Field(String, graphql_name='before')
class HouseholdConfirmedReplayPermission(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('channel_id', 'enabled')
channel_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelId')
enabled = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='enabled')
class MessageFilterParams(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('status', 'display_kind')
status = sgqlc.types.Field(sgqlc.types.list_of(MessageStatus), graphql_name='status')
display_kind = sgqlc.types.Field(sgqlc.types.list_of(MessageDisplayKind), graphql_name='displayKind')
class PauseLiveChannelInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('channel_id', 'event_id', 'paused_at', 'replace_session_id', 'streaming_network_ip_address')
channel_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelId')
event_id = sgqlc.types.Field(ID, graphql_name='eventId')
paused_at = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='pausedAt')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class PlayChannelInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('channel_id', 'replace_session_id', 'streaming_network_ip_address')
channel_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelId')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class PlayPPVEventInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('event_id', 'replace_session_id', 'streaming_network_ip_address')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class PlayRecordingInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('recording_id', 'replace_session_id', 'streaming_network_ip_address')
recording_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='recordingId')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class PlayTrailerInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('trailer_id', 'replace_session_id', 'streaming_network_ip_address')
trailer_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='trailerId')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class PlayVODAssetInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('vod_asset_id', 'vod_asset_entitlement_id', 'replace_session_id', 'streaming_network_ip_address')
vod_asset_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodAssetId')
vod_asset_entitlement_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodAssetEntitlementId')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class PurchaseChannelProductInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('channel_product_id',)
channel_product_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelProductId')
class PurchaseUpsellProductInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'product_id', 'price_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
product_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='productId')
price_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='priceId')
class PurchaseVODProductInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'vod_product_id', 'price_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
vod_product_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodProductId')
price_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='priceId')
class RecordingsFilterParams(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('start_date', 'end_date', 'status')
start_date = sgqlc.types.Field(Date, graphql_name='startDate')
end_date = sgqlc.types.Field(Date, graphql_name='endDate')
status = sgqlc.types.Field(sgqlc.types.list_of(RecordingStatus), graphql_name='status')
class ResetProfilePreferencesInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'reset_channel_preferences')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
reset_channel_preferences = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='resetChannelPreferences')
class RestartEventInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('event_id', 'replace_session_id', 'streaming_network_ip_address')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
replace_session_id = sgqlc.types.Field(ID, graphql_name='replaceSessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class SearchContext(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'order_content_type')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
order_content_type = sgqlc.types.Field(SearchContentType, graphql_name='orderContentType')
class SearchFilter(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('audio_languages', 'subtitle_languages', 'minimum_rating', 'genre_ids', 'content_types', 'content_providers', 'paid_content')
audio_languages = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='audioLanguages')
subtitle_languages = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='subtitleLanguages')
minimum_rating = sgqlc.types.Field(Int, graphql_name='minimumRating')
genre_ids = sgqlc.types.Field(sgqlc.types.list_of(ID), graphql_name='genreIds')
content_types = sgqlc.types.Field(sgqlc.types.list_of(SearchContentType), graphql_name='contentTypes')
content_providers = sgqlc.types.Field(sgqlc.types.list_of(String), graphql_name='contentProviders')
paid_content = sgqlc.types.Field(SearchPaidOrIncludedContent, graphql_name='paidContent')
class SendPlaybackHeartbeatInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('session_id',)
session_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='sessionId')
class SetChannelListChannelsInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('channel_list_id', 'channels')
channel_list_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='channelListId')
channels = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(ID)), graphql_name='channels')
class SetEventBookmarkInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'event_id', 'position', 'audio', 'subtitle')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
position = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='position')
audio = sgqlc.types.Field(String, graphql_name='audio')
subtitle = sgqlc.types.Field(String, graphql_name='subtitle')
class SetHouseholdConfirmedReplayPermissionsInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('household_confirmed_replay_permissions',)
household_confirmed_replay_permissions = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of(HouseholdConfirmedReplayPermission)), graphql_name='householdConfirmedReplayPermissions')
class SetRecordingBookmarkInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'recording_id', 'position', 'audio', 'subtitle')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
recording_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='recordingId')
position = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='position')
audio = sgqlc.types.Field(String, graphql_name='audio')
subtitle = sgqlc.types.Field(String, graphql_name='subtitle')
class SetVODBookmarkInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'vod_asset_id', 'position', 'audio', 'subtitle')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
vod_asset_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodAssetId')
position = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='position')
audio = sgqlc.types.Field(String, graphql_name='audio')
subtitle = sgqlc.types.Field(String, graphql_name='subtitle')
class StartAndCompletePPVTransactionInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'ppv_product_id', 'event_id', 'price_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
ppv_product_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='ppvProductId')
event_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='eventId')
price_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='priceId')
class StartVODTransactionInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'vod_product_id', 'vod_asset_id', 'price_id')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
vod_product_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodProductId')
vod_asset_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='vodAssetId')
price_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='priceId')
class StopPlaybackInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('session_id', 'streaming_network_ip_address')
session_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='sessionId')
streaming_network_ip_address = sgqlc.types.Field(String, graphql_name='streamingNetworkIpAddress')
class UnfavouriteItemInput(sgqlc.types.Input):
__schema__ = a1_schema
__field_names__ = ('profile_id', 'item_id', 'item_kind')
profile_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='profileId')
item_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='itemId')
item_kind = sgqlc.types.Field(sgqlc.types.non_null(FavouritableItemKind), graphql_name='itemKind')
########################################################################
# Output Objects and Interfaces
########################################################################
class ActiveEpisodeInfo(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('edge', 'group_id')
edge = sgqlc.types.Field(sgqlc.types.non_null('ContentFolderContentItemsEdge'), graphql_name='edge')
group_id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='groupId')
class Cacheable(sgqlc.types.Interface):
__schema__ = a1_schema
__field_names__ = ('id', 'expiry')
id = sgqlc.types.Field(sgqlc.types.non_null(ID), graphql_name='id')
expiry = sgqlc.types.Field(sgqlc.types.non_null(Date), graphql_name='expiry')
class CancelNetworkSeriesRecordingPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('events', 'quota')
events = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of('Event')), graphql_name='events')
quota = sgqlc.types.Field('Quota', graphql_name='quota')
class CancelSeasonOfNetworkSeriesRecordingPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('events', 'quota')
events = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of('Event')), graphql_name='events')
quota = sgqlc.types.Field('Quota', graphql_name='quota')
class CancelVODTransactionPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('success',)
success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='success')
class Catalog(sgqlc.types.Interface):
__schema__ = a1_schema
__field_names__ = ('item_count',)
item_count = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='itemCount')
class CatchupEventPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('playback_info',)
playback_info = sgqlc.types.Field(sgqlc.types.non_null('TimeshiftPlaybackInfo'), graphql_name='playbackInfo')
class ChangeChannelListNamePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('channel_list',)
channel_list = sgqlc.types.Field(sgqlc.types.non_null('ChannelList'), graphql_name='channelList')
class ChangeChannelPreferencesPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('channel',)
channel = sgqlc.types.Field(sgqlc.types.non_null('Channel'), graphql_name='channel')
class ChangeDeviceDRMNetworkDeviceIdPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('device',)
device = sgqlc.types.Field(sgqlc.types.non_null('Device'), graphql_name='device')
class ChangeDeviceEnablementPolicyPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('device',)
device = sgqlc.types.Field(sgqlc.types.non_null('Device'), graphql_name='device')
class ChangeDeviceNamePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('device',)
device = sgqlc.types.Field(sgqlc.types.non_null('Device'), graphql_name='device')
class ChangeDevicePreviewModePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('device',)
device = sgqlc.types.Field(sgqlc.types.non_null('Device'), graphql_name='device')
class ChangeHouseholdCommunityPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('household',)
household = sgqlc.types.Field(sgqlc.types.non_null('Household'), graphql_name='household')
class ChangeHouseholdOnboardingInfoPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('onboarding_info',)
onboarding_info = sgqlc.types.Field('HouseholdOnboardingInfo', graphql_name='onboardingInfo')
class ChangeHouseholdPreferencesPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('household',)
household = sgqlc.types.Field(sgqlc.types.non_null('Household'), graphql_name='household')
class ChangeInitialChannelListPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('channel_list',)
channel_list = sgqlc.types.Field(sgqlc.types.non_null('ChannelList'), graphql_name='channelList')
class ChangeLanguagePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('device',)
device = sgqlc.types.Field(sgqlc.types.non_null('Device'), graphql_name='device')
class ChangeMasterPincodePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('household',)
household = sgqlc.types.Field(sgqlc.types.non_null('Household'), graphql_name='household')
class ChangeNetworkRecordingPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('recording',)
recording = sgqlc.types.Field(sgqlc.types.non_null('NetworkRecording'), graphql_name='recording')
class ChangeProfileOnboardingInfoPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('onboarding_info',)
onboarding_info = sgqlc.types.Field('ProfileOnboardingInfo', graphql_name='onboardingInfo')
class ChangeProfilePermissionsPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('profile',)
profile = sgqlc.types.Field(sgqlc.types.non_null('Profile'), graphql_name='profile')
class ChangeProfilePincodePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('profile',)
profile = sgqlc.types.Field(sgqlc.types.non_null('Profile'), graphql_name='profile')
class ChangeProfilePreferencesPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('profile',)
profile = sgqlc.types.Field(sgqlc.types.non_null('Profile'), graphql_name='profile')
class CompleteVODTransactionPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('asset',)
asset = sgqlc.types.Field(sgqlc.types.non_null('VODAsset'), graphql_name='asset')
class Connection(sgqlc.types.Interface):
__schema__ = a1_schema
__field_names__ = ('page_info', 'total_count')
page_info = sgqlc.types.Field(sgqlc.types.non_null('PageInfo'), graphql_name='pageInfo')
total_count = sgqlc.types.Field(Int, graphql_name='totalCount')
class CreateDevicePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('success', 'reauthenticate')
success = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='success')
reauthenticate = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='reauthenticate')
class CreateNetworkRecordingPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('recording', 'quota')
recording = sgqlc.types.Field(sgqlc.types.non_null('NetworkRecording'), graphql_name='recording')
quota = sgqlc.types.Field('Quota', graphql_name='quota')
class CreateNetworkSeriesRecordingPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('recordings', 'quota')
recordings = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of('NetworkRecording')), graphql_name='recordings')
quota = sgqlc.types.Field('Quota', graphql_name='quota')
class CreatePersonalChannelListPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('channel_list',)
channel_list = sgqlc.types.Field(sgqlc.types.non_null('ChannelList'), graphql_name='channelList')
class CreateProfilePincodePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('profile',)
profile = sgqlc.types.Field(sgqlc.types.non_null('Profile'), graphql_name='profile')
class DeleteDevicePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('household',)
household = sgqlc.types.Field(sgqlc.types.non_null('Household'), graphql_name='household')
class DeleteEpisodesOfNetworkSeriesRecordingPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('events', 'quota')
events = sgqlc.types.Field(sgqlc.types.non_null(sgqlc.types.list_of('Event')), graphql_name='events')
quota = sgqlc.types.Field('Quota', graphql_name='quota')
class DeleteEventBookmarkPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('event',)
event = sgqlc.types.Field(sgqlc.types.non_null('Event'), graphql_name='event')
class DeleteProfilePincodePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('profile',)
profile = sgqlc.types.Field(sgqlc.types.non_null('Profile'), graphql_name='profile')
class DeleteRecordingBookmarkPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('recording',)
recording = sgqlc.types.Field(sgqlc.types.non_null('Recording'), graphql_name='recording')
class DeleteRecordingPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('quota', 'event', 'recordings')
quota = sgqlc.types.Field('Quota', graphql_name='quota')
event = sgqlc.types.Field('Event', graphql_name='event')
recordings = sgqlc.types.Field(sgqlc.types.list_of('Recording'), graphql_name='recordings')
class DeleteVODBookmarkPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('vod_asset',)
vod_asset = sgqlc.types.Field(sgqlc.types.non_null('VODAsset'), graphql_name='vodAsset')
class Edge(sgqlc.types.Interface):
__schema__ = a1_schema
__field_names__ = ('cursor', 'location_indicator')
cursor = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='cursor')
location_indicator = sgqlc.types.Field(Int, graphql_name='locationIndicator')
class FavouriteItemPayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('item',)
item = sgqlc.types.Field(sgqlc.types.non_null('FavouritableItem'), graphql_name='item')
class GraphQLHeartbeat(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('interval',)
interval = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='interval')
class HttpHeartbeat(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('url', 'interval', 'include_auth_headers')
url = sgqlc.types.Field(sgqlc.types.non_null(String), graphql_name='url')
interval = sgqlc.types.Field(sgqlc.types.non_null(Int), graphql_name='interval')
include_auth_headers = sgqlc.types.Field(sgqlc.types.non_null(Boolean), graphql_name='includeAuthHeaders')
class KeepSessionAlivePayload(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('session_timeout',)
session_timeout = sgqlc.types.Field(Int, graphql_name='sessionTimeout')
class Nexx4Mutations(sgqlc.types.Type):
__schema__ = a1_schema
__field_names__ = ('notify_device_activation', 'change_household_onboarding_info', 'change_profile_onboarding_info', 'change_master_pincode', 'change_household_preferences', 'change_household_community', 'create_profile_pincode', 'change_profile_pincode', 'delete_profile_pincode', 'change_profile_preferences', 'reset_profile_preferences', 'change_profile_permissions', 'play_channel', 'restart_event', 'catchup_event', 'pause_live_channel', 'play_ppvevent', 'play_recording', 'play_vodasset', 'play_trailer', 'stop_playback', 'send_playback_heartbeat', 'create_device', 'delete_device', 'change_language', 'change_device_name', 'change_device_enablement_policy', 'change_device_preview_mode', 'change_device_drmnetwork_device_id', 'create_personal_channel_list', 'set_channel_list_channels', 'change_channel_list_name', 'move_channel_list', 'delete_channel_list', 'create_channel_list', 'add_channel', 'remove_channel', 'change_initial_channel_list', 'block_channel', 'unblock_channel', 'change_channel_preferences', 'set_household_confirmed_replay_permissions', 'set_event_bookmark', 'delete_event_bookmark', 'favourite_item', 'unfavourite_item', 'set_reminder', 'change_reminder', 'cancel_reminder', 'create_network_recording', 'change_network_recording', 'delete_recording', 'create_network_series_recording', 'cancel_season_of_network_series_recording', 'cancel_network_series_recording', 'delete_episodes_of_network_series_recording', 'purchase_channel_product', 'purchase_upsell_product', 'purchase_vodproduct', 'start_vodtransaction', 'complete_vodtransaction', 'cancel_vodtransaction', 'start_and_complete_ppvtransaction', 'set_recording_bookmark', 'delete_recording_bookmark', 'set_vodbookmark', 'delete_vodbookmark', 'keep_session_alive', 'logout')
notify_device_activation = sgqlc.types.Field(sgqlc.types.non_null('NotifyDeviceActivationPayload'), graphql_name='notifyDeviceActivation')
change_household_onboarding_info = sgqlc.types.Field(sgqlc.types.non_null(ChangeHouseholdOnboardingInfoPayload), graphql_name='changeHouseholdOnboardingInfo', args=sgqlc.types.ArgDict((
('input', sgqlc.types.Arg(sgqlc.types.non_null(ChangeHouseholdOnboardingInfoInput), graphql_name='input', default=None)),
))
)
change_profile_onboarding_info = sgqlc.types.Field(sgqlc.types.non_null(ChangeProfileOnboardingInfoPayload), graphql_name='changeProfileOnboardingInfo', args=sgqlc.types.ArgDict((
('input', sgqlc.types.Arg(sgqlc.types.non_null(ChangeProfileOnboardingInfoInput), graphql_name='input', default=None)),
))
)
change_master_pincode = sgqlc.types.Field(sgqlc.types.non_null(ChangeMasterPincodePayload), graphql_name='changeMasterPincode', args=sgqlc.types.ArgDict((
('input', sgqlc.types.Arg(sgqlc.types.non_null(ChangeMasterPincodeInput), graphql_name='input', default=None)),
))
)
change_household_preferences = sgqlc.types.Field(sgqlc.types.non_null(ChangeHouseholdPreferencesPayload), graphql_name='changeHouseholdPreferences', args=sgqlc.types.ArgDict((
('input', sgqlc.types.Arg(sgqlc.types.non_null(ChangeHouseholdPreferencesInput), graphql_name='input', default=None)),
))
)
change_household_community = sgqlc.types.Field(sgqlc.types.non_null(ChangeHouseholdCommunityPayload), graphql_name='changeHouseholdCommunity', args=sgqlc.types.ArgDict((
('input', sgqlc.types.Arg(sgqlc.types.non_null(ChangeHouseholdCommunityInput), graphql_name='input', default=None)),
))
)
create_profile_pincode = sgqlc.types.Field(sgqlc.types.non_null(CreateProfilePincodePayload), graphql_name='createProfilePincode', args=sgqlc.types.ArgDict((
('input', sgqlc.types.Arg(sgqlc.types.non_null(CreateProfilePincodeInput), graphql_name='input', default=None)),
))
)
change_profile_pincode = sgqlc.types.Field(sgqlc.types.non_null(ChangeProfilePincodePayload), graphql_name='changeProfilePincode', args=sgqlc.types.ArgDict((
('input', sgqlc.types.Arg(sgqlc.types.non_null(ChangeProfilePincodeInput), graphql_name='input', default=None)),
))
)
delete_profile_pincode = sgqlc.types.Field(sgqlc.types.non_null(DeleteProfilePincodePayload), graphql_name='deleteProfilePincode', args=sgqlc.types.ArgDict((