reach-api-sdk 1.0.137 → 1.0.139

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41420,6 +41420,10 @@ type TenantWebsiteSettingPatch = {
41420
41420
  * Gets or sets the website page notice.
41421
41421
  */
41422
41422
  pageNotice?: string | null;
41423
+ /**
41424
+ * Gets or sets the website name.
41425
+ */
41426
+ name?: string | null;
41423
41427
  /**
41424
41428
  * Gets or sets the website description.
41425
41429
  */
@@ -42331,6 +42335,953 @@ declare class UnsplashService {
42331
42335
  }): CancelablePromise<UnsplashSearchResponse>;
42332
42336
  }
42333
42337
 
42338
+ /**
42339
+ * Represents permissions within the Reach application.
42340
+ */
42341
+ type UserPermission = {
42342
+ /**
42343
+ * Gets or sets the entities Id.
42344
+ */
42345
+ id?: string;
42346
+ /**
42347
+ * Gets or sets the tenant Id.
42348
+ */
42349
+ tenantId: string;
42350
+ /**
42351
+ * Gets or sets the created date of this entity.
42352
+ */
42353
+ dateCreated: string;
42354
+ /**
42355
+ * Gets or sets the last modified date of this entity.
42356
+ */
42357
+ dateModified: string;
42358
+ /**
42359
+ * Gets or sets the modified by Id.
42360
+ */
42361
+ modifiedById?: string | null;
42362
+ /**
42363
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
42364
+ */
42365
+ isLive: boolean;
42366
+ /**
42367
+ * Gets or sets the user id.
42368
+ */
42369
+ userId?: string | null;
42370
+ /**
42371
+ * Gets or sets a value indicating whether a user has add activities permissions.
42372
+ */
42373
+ addActivities?: boolean;
42374
+ /**
42375
+ * Gets or sets a value indicating whether a user has add templates permissions.
42376
+ */
42377
+ addTemplates?: boolean;
42378
+ /**
42379
+ * Gets or sets a value indicating whether a user has add venues permissions.
42380
+ */
42381
+ addVenues?: boolean;
42382
+ /**
42383
+ * Gets or sets a value indicating whether a user has edit activities permissions.
42384
+ */
42385
+ editActivities?: boolean;
42386
+ /**
42387
+ * Gets or sets a value indicating whether a user has edit prices permissions.
42388
+ */
42389
+ editPrices?: boolean;
42390
+ /**
42391
+ * Gets or sets a value indicating whether a user has edit schedules permissions.
42392
+ */
42393
+ editSchedules?: boolean;
42394
+ /**
42395
+ * Gets or sets a value indicating whether a user has edit sales tax permissions.
42396
+ */
42397
+ editSalesTax?: boolean;
42398
+ /**
42399
+ * Gets or sets a value indicating whether a user has edit venues permissions.
42400
+ */
42401
+ editVenue?: boolean;
42402
+ /**
42403
+ * Gets or sets a value indicating whether a user has edit orders permissions.
42404
+ */
42405
+ editOrders?: boolean;
42406
+ /**
42407
+ * Gets or sets a value indicating whether a user has view advanced settings permissions.
42408
+ */
42409
+ viewAdvancedSettings?: boolean;
42410
+ /**
42411
+ * Gets or sets a value indicating whether a user has edit advanced settings permissions.
42412
+ */
42413
+ editAdvancedSettings?: boolean;
42414
+ /**
42415
+ * Gets or sets a value indicating whether a user can add 3rd party booking links.
42416
+ */
42417
+ allowBookingLinks?: boolean;
42418
+ };
42419
+
42420
+ type UserPermissionPage = {
42421
+ pagination: Pagination;
42422
+ readonly items: Array<UserPermission>;
42423
+ };
42424
+
42425
+ /**
42426
+ * Post model for user permission updates.
42427
+ */
42428
+ type UserPermissionPatch = {
42429
+ /**
42430
+ * Gets or sets the tenant Id.
42431
+ */
42432
+ tenantId: string;
42433
+ /**
42434
+ * Gets or sets the Id.
42435
+ */
42436
+ id: string;
42437
+ /**
42438
+ * Gets or sets a value indicating whether a user has add activities permissions.
42439
+ */
42440
+ addActivities?: boolean;
42441
+ /**
42442
+ * Gets or sets a value indicating whether a user has add templates permissions.
42443
+ */
42444
+ addTemplates?: boolean;
42445
+ /**
42446
+ * Gets or sets a value indicating whether a user has add venues permissions.
42447
+ */
42448
+ addVenues?: boolean;
42449
+ /**
42450
+ * Gets or sets a value indicating whether a user has edit activities permissions.
42451
+ */
42452
+ editActivities?: boolean;
42453
+ /**
42454
+ * Gets or sets a value indicating whether a user has edit prices permissions.
42455
+ */
42456
+ editPrices?: boolean;
42457
+ /**
42458
+ * Gets or sets a value indicating whether a user has edit schedules permissions.
42459
+ */
42460
+ editSchedules?: boolean;
42461
+ /**
42462
+ * Gets or sets a value indicating whether a user has edit sales tax permissions.
42463
+ */
42464
+ editSalesTax?: boolean;
42465
+ /**
42466
+ * Gets or sets a value indicating whether a user has edit venues permissions.
42467
+ */
42468
+ editVenue?: boolean;
42469
+ /**
42470
+ * Gets or sets a value indicating whether a user has edit orders permissions.
42471
+ */
42472
+ editOrders?: boolean;
42473
+ /**
42474
+ * Gets or sets a value indicating whether a user has view advanced settings permissions.
42475
+ */
42476
+ viewAdvancedSettings?: boolean;
42477
+ /**
42478
+ * Gets or sets a value indicating whether a user has view advanced settings permissions.
42479
+ */
42480
+ editAdvancedSettings?: boolean;
42481
+ /**
42482
+ * Gets or sets a value indicating whether a user can add 3rd party booking links.
42483
+ */
42484
+ allowBookingLinks?: boolean;
42485
+ };
42486
+
42487
+ /**
42488
+ * Post model for user permission inserts.
42489
+ */
42490
+ type UserPermissionPost = {
42491
+ /**
42492
+ * Gets or sets the tenant Id.
42493
+ */
42494
+ tenantId: string;
42495
+ };
42496
+
42497
+ declare class UserPermissionsService {
42498
+ readonly httpRequest: BaseHttpRequest;
42499
+ constructor(httpRequest: BaseHttpRequest);
42500
+ /**
42501
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
42502
+ * @returns UserPermission Success
42503
+ * @throws ApiError
42504
+ */
42505
+ post({ requestBody, }: {
42506
+ /**
42507
+ * The <typeparamref name="TObject" /> model.
42508
+ */
42509
+ requestBody?: UserPermissionPost;
42510
+ }): CancelablePromise<UserPermission>;
42511
+ /**
42512
+ * Patches the resource.
42513
+ * @returns UserPermission Success
42514
+ * @throws ApiError
42515
+ */
42516
+ patch({ requestBody, }: {
42517
+ /**
42518
+ * The <typeparamref name="TObject" /> model.
42519
+ */
42520
+ requestBody?: UserPermissionPatch;
42521
+ }): CancelablePromise<UserPermission>;
42522
+ /**
42523
+ * Inserts a list of resources.
42524
+ * @returns UserPermission Success
42525
+ * @throws ApiError
42526
+ */
42527
+ postList({ requestBody, }: {
42528
+ /**
42529
+ * The list of <typeparamref name="TObject" />.
42530
+ */
42531
+ requestBody?: Array<UserPermissionPost>;
42532
+ }): CancelablePromise<Array<UserPermission>>;
42533
+ /**
42534
+ * Patches the resource.
42535
+ * @returns UserPermission Success
42536
+ * @throws ApiError
42537
+ */
42538
+ patchWithReferences({ requestBody, }: {
42539
+ /**
42540
+ * The <typeparamref name="TObject" /> model.
42541
+ */
42542
+ requestBody?: UserPermissionPatch;
42543
+ }): CancelablePromise<UserPermission>;
42544
+ /**
42545
+ * Deletes the resource.
42546
+ * @returns any Success
42547
+ * @throws ApiError
42548
+ */
42549
+ deleteByObject({ requestBody, }: {
42550
+ /**
42551
+ * The <typeparamref name="TObject" /> model.
42552
+ */
42553
+ requestBody?: UserPermission;
42554
+ }): CancelablePromise<any>;
42555
+ /**
42556
+ * Gets a list of resources.
42557
+ * @returns UserPermissionPage Success
42558
+ * @throws ApiError
42559
+ */
42560
+ getPage({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42561
+ /**
42562
+ * Gets or sets the queryable user id.
42563
+ */
42564
+ userId?: string;
42565
+ /**
42566
+ * Gets or sets the page number for paged queries.
42567
+ */
42568
+ pageNumber?: number;
42569
+ /**
42570
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42571
+ */
42572
+ take?: number;
42573
+ /**
42574
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42575
+ */
42576
+ skip?: number;
42577
+ /**
42578
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42579
+ */
42580
+ limitListRequests?: boolean;
42581
+ /**
42582
+ * Gets or sets the Tenant Id.
42583
+ */
42584
+ tenantId?: string;
42585
+ /**
42586
+ * Gets or sets the Modifed By Id.
42587
+ */
42588
+ modifiedById?: string;
42589
+ /**
42590
+ * Gets or sets the Modifed By Ids.
42591
+ */
42592
+ modifiedByIds?: Array<string>;
42593
+ /**
42594
+ * Gets or sets the Date Created greater than equal to.
42595
+ */
42596
+ dateCreatedGte?: string;
42597
+ /**
42598
+ * Gets or sets the Date Created less than equal to.
42599
+ */
42600
+ dateCreatedLte?: string;
42601
+ /**
42602
+ * Gets or sets the queryable only is live status.
42603
+ */
42604
+ isLive?: boolean;
42605
+ /**
42606
+ * Gets or sets the sort order direction.
42607
+ */
42608
+ sortOrderDirection?: SearchSortOrderDirection;
42609
+ }): CancelablePromise<UserPermissionPage>;
42610
+ /**
42611
+ * Deletes the resource.
42612
+ * @returns any Success
42613
+ * @throws ApiError
42614
+ */
42615
+ deleteById({ id, }: {
42616
+ /**
42617
+ * The <typeparamref name="TObject" /> id.
42618
+ */
42619
+ id: string;
42620
+ }): CancelablePromise<any>;
42621
+ /**
42622
+ * Gets the resource by its Id.
42623
+ * @returns UserPermission Success
42624
+ * @throws ApiError
42625
+ */
42626
+ getObject({ id, }: {
42627
+ /**
42628
+ * The <typeparamref name="TObject" /> id.
42629
+ */
42630
+ id: string;
42631
+ }): CancelablePromise<UserPermission>;
42632
+ /**
42633
+ * Returns a value indicating whether the resource is deletable.
42634
+ * @returns boolean Success
42635
+ * @throws ApiError
42636
+ */
42637
+ canDelete({ id, }: {
42638
+ /**
42639
+ * The <typeparamref name="TObject" /> id.
42640
+ */
42641
+ id: string;
42642
+ }): CancelablePromise<boolean>;
42643
+ /**
42644
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
42645
+ * @returns boolean Success
42646
+ * @throws ApiError
42647
+ */
42648
+ exists({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42649
+ /**
42650
+ * Gets or sets the queryable user id.
42651
+ */
42652
+ userId?: string;
42653
+ /**
42654
+ * Gets or sets the page number for paged queries.
42655
+ */
42656
+ pageNumber?: number;
42657
+ /**
42658
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42659
+ */
42660
+ take?: number;
42661
+ /**
42662
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42663
+ */
42664
+ skip?: number;
42665
+ /**
42666
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42667
+ */
42668
+ limitListRequests?: boolean;
42669
+ /**
42670
+ * Gets or sets the Tenant Id.
42671
+ */
42672
+ tenantId?: string;
42673
+ /**
42674
+ * Gets or sets the Modifed By Id.
42675
+ */
42676
+ modifiedById?: string;
42677
+ /**
42678
+ * Gets or sets the Modifed By Ids.
42679
+ */
42680
+ modifiedByIds?: Array<string>;
42681
+ /**
42682
+ * Gets or sets the Date Created greater than equal to.
42683
+ */
42684
+ dateCreatedGte?: string;
42685
+ /**
42686
+ * Gets or sets the Date Created less than equal to.
42687
+ */
42688
+ dateCreatedLte?: string;
42689
+ /**
42690
+ * Gets or sets the queryable only is live status.
42691
+ */
42692
+ isLive?: boolean;
42693
+ /**
42694
+ * Gets or sets the sort order direction.
42695
+ */
42696
+ sortOrderDirection?: SearchSortOrderDirection;
42697
+ }): CancelablePromise<boolean>;
42698
+ /**
42699
+ * Gets a list of resources unpaged and without references.
42700
+ * @returns UserPermission Success
42701
+ * @throws ApiError
42702
+ */
42703
+ getListWithoutReferences({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42704
+ /**
42705
+ * Gets or sets the queryable user id.
42706
+ */
42707
+ userId?: string;
42708
+ /**
42709
+ * Gets or sets the page number for paged queries.
42710
+ */
42711
+ pageNumber?: number;
42712
+ /**
42713
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42714
+ */
42715
+ take?: number;
42716
+ /**
42717
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42718
+ */
42719
+ skip?: number;
42720
+ /**
42721
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42722
+ */
42723
+ limitListRequests?: boolean;
42724
+ /**
42725
+ * Gets or sets the Tenant Id.
42726
+ */
42727
+ tenantId?: string;
42728
+ /**
42729
+ * Gets or sets the Modifed By Id.
42730
+ */
42731
+ modifiedById?: string;
42732
+ /**
42733
+ * Gets or sets the Modifed By Ids.
42734
+ */
42735
+ modifiedByIds?: Array<string>;
42736
+ /**
42737
+ * Gets or sets the Date Created greater than equal to.
42738
+ */
42739
+ dateCreatedGte?: string;
42740
+ /**
42741
+ * Gets or sets the Date Created less than equal to.
42742
+ */
42743
+ dateCreatedLte?: string;
42744
+ /**
42745
+ * Gets or sets the queryable only is live status.
42746
+ */
42747
+ isLive?: boolean;
42748
+ /**
42749
+ * Gets or sets the sort order direction.
42750
+ */
42751
+ sortOrderDirection?: SearchSortOrderDirection;
42752
+ }): CancelablePromise<Array<UserPermission>>;
42753
+ /**
42754
+ * Gets a list of resources.
42755
+ * @returns UserPermission Success
42756
+ * @throws ApiError
42757
+ */
42758
+ getListIdName({ userId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42759
+ /**
42760
+ * Gets or sets the queryable user id.
42761
+ */
42762
+ userId?: string;
42763
+ /**
42764
+ * Gets or sets the page number for paged queries.
42765
+ */
42766
+ pageNumber?: number;
42767
+ /**
42768
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
42769
+ */
42770
+ take?: number;
42771
+ /**
42772
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
42773
+ */
42774
+ skip?: number;
42775
+ /**
42776
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
42777
+ */
42778
+ limitListRequests?: boolean;
42779
+ /**
42780
+ * Gets or sets the Tenant Id.
42781
+ */
42782
+ tenantId?: string;
42783
+ /**
42784
+ * Gets or sets the Modifed By Id.
42785
+ */
42786
+ modifiedById?: string;
42787
+ /**
42788
+ * Gets or sets the Modifed By Ids.
42789
+ */
42790
+ modifiedByIds?: Array<string>;
42791
+ /**
42792
+ * Gets or sets the Date Created greater than equal to.
42793
+ */
42794
+ dateCreatedGte?: string;
42795
+ /**
42796
+ * Gets or sets the Date Created less than equal to.
42797
+ */
42798
+ dateCreatedLte?: string;
42799
+ /**
42800
+ * Gets or sets the queryable only is live status.
42801
+ */
42802
+ isLive?: boolean;
42803
+ /**
42804
+ * Gets or sets the sort order direction.
42805
+ */
42806
+ sortOrderDirection?: SearchSortOrderDirection;
42807
+ }): CancelablePromise<Array<UserPermission>>;
42808
+ }
42809
+
42810
+ /**
42811
+ * Represents a relationship between a programme and a user.
42812
+ */
42813
+ type UserProgramme = {
42814
+ /**
42815
+ * Gets or sets the entities Id.
42816
+ */
42817
+ id?: string;
42818
+ /**
42819
+ * Gets or sets the tenant Id.
42820
+ */
42821
+ tenantId: string;
42822
+ /**
42823
+ * Gets or sets the created date of this entity.
42824
+ */
42825
+ dateCreated: string;
42826
+ /**
42827
+ * Gets or sets the last modified date of this entity.
42828
+ */
42829
+ dateModified: string;
42830
+ /**
42831
+ * Gets or sets the modified by Id.
42832
+ */
42833
+ modifiedById?: string | null;
42834
+ /**
42835
+ * Gets or sets a value indicating whether the record is live and available for use within the application.
42836
+ */
42837
+ isLive: boolean;
42838
+ /**
42839
+ * Gets or sets the user id.
42840
+ */
42841
+ userId?: string | null;
42842
+ /**
42843
+ * Gets or sets the programme id.
42844
+ */
42845
+ programmeId?: string | null;
42846
+ };
42847
+
42848
+ type UserProgrammePage = {
42849
+ pagination: Pagination;
42850
+ readonly items: Array<UserProgramme>;
42851
+ };
42852
+
42853
+ /**
42854
+ * Post model for user programme updates.
42855
+ */
42856
+ type UserProgrammePatch = {
42857
+ /**
42858
+ * Gets or sets the tenant Id.
42859
+ */
42860
+ tenantId: string;
42861
+ /**
42862
+ * Gets or sets the Id.
42863
+ */
42864
+ id: string;
42865
+ /**
42866
+ * Gets or sets the user id.
42867
+ */
42868
+ userId?: string | null;
42869
+ /**
42870
+ * Gets or sets the programme id.
42871
+ */
42872
+ programmeId?: string | null;
42873
+ };
42874
+
42875
+ /**
42876
+ * Post model for user programme inserts.
42877
+ */
42878
+ type UserProgrammePost = {
42879
+ /**
42880
+ * Gets or sets the tenant Id.
42881
+ */
42882
+ tenantId: string;
42883
+ /**
42884
+ * Gets or sets the user id.
42885
+ */
42886
+ userId?: string | null;
42887
+ /**
42888
+ * Gets or sets the programme id.
42889
+ */
42890
+ programmeId?: string | null;
42891
+ };
42892
+
42893
+ declare class UserProgrammesService {
42894
+ readonly httpRequest: BaseHttpRequest;
42895
+ constructor(httpRequest: BaseHttpRequest);
42896
+ /**
42897
+ * Updates the assigned programmes for the user />.
42898
+ * @returns any Success
42899
+ * @throws ApiError
42900
+ */
42901
+ updateUserVenueAssignments({ userId, requestBody, }: {
42902
+ /**
42903
+ * The user Id.
42904
+ */
42905
+ userId: string;
42906
+ /**
42907
+ * The post model.
42908
+ */
42909
+ requestBody?: Array<UserProgrammePost>;
42910
+ }): CancelablePromise<any>;
42911
+ /**
42912
+ * Updates the assigned users for the programme />.
42913
+ * @returns any Success
42914
+ * @throws ApiError
42915
+ */
42916
+ updateVenueUserAssignments({ venueId, programmeId, requestBody, }: {
42917
+ venueId: string;
42918
+ /**
42919
+ * The programme Id.
42920
+ */
42921
+ programmeId?: string;
42922
+ /**
42923
+ * The post model.
42924
+ */
42925
+ requestBody?: Array<UserProgrammePost>;
42926
+ }): CancelablePromise<any>;
42927
+ /**
42928
+ * Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
42929
+ * @returns UserProgramme Success
42930
+ * @throws ApiError
42931
+ */
42932
+ post({ requestBody, }: {
42933
+ /**
42934
+ * The <typeparamref name="TObject" /> model.
42935
+ */
42936
+ requestBody?: UserProgrammePost;
42937
+ }): CancelablePromise<UserProgramme>;
42938
+ /**
42939
+ * Patches the resource.
42940
+ * @returns UserProgramme Success
42941
+ * @throws ApiError
42942
+ */
42943
+ patch({ requestBody, }: {
42944
+ /**
42945
+ * The <typeparamref name="TObject" /> model.
42946
+ */
42947
+ requestBody?: UserProgrammePatch;
42948
+ }): CancelablePromise<UserProgramme>;
42949
+ /**
42950
+ * Inserts a list of resources.
42951
+ * @returns UserProgramme Success
42952
+ * @throws ApiError
42953
+ */
42954
+ postList({ requestBody, }: {
42955
+ /**
42956
+ * The list of <typeparamref name="TObject" />.
42957
+ */
42958
+ requestBody?: Array<UserProgrammePost>;
42959
+ }): CancelablePromise<Array<UserProgramme>>;
42960
+ /**
42961
+ * Patches the resource.
42962
+ * @returns UserProgramme Success
42963
+ * @throws ApiError
42964
+ */
42965
+ patchWithReferences({ requestBody, }: {
42966
+ /**
42967
+ * The <typeparamref name="TObject" /> model.
42968
+ */
42969
+ requestBody?: UserProgrammePatch;
42970
+ }): CancelablePromise<UserProgramme>;
42971
+ /**
42972
+ * Deletes the resource.
42973
+ * @returns any Success
42974
+ * @throws ApiError
42975
+ */
42976
+ deleteByObject({ requestBody, }: {
42977
+ /**
42978
+ * The <typeparamref name="TObject" /> model.
42979
+ */
42980
+ requestBody?: UserProgramme;
42981
+ }): CancelablePromise<any>;
42982
+ /**
42983
+ * Gets a list of resources.
42984
+ * @returns UserProgrammePage Success
42985
+ * @throws ApiError
42986
+ */
42987
+ getPage({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
42988
+ /**
42989
+ * Gets or sets the queryable programme id.
42990
+ */
42991
+ programmeId?: string;
42992
+ /**
42993
+ * Gets or sets the queryable programme ids.
42994
+ */
42995
+ programmeIds?: Array<string>;
42996
+ /**
42997
+ * Gets or sets the queryable user id.
42998
+ */
42999
+ userId?: string;
43000
+ /**
43001
+ * Gets or sets the queryable user ids.
43002
+ */
43003
+ userIds?: Array<string>;
43004
+ /**
43005
+ * Gets or sets the page number for paged queries.
43006
+ */
43007
+ pageNumber?: number;
43008
+ /**
43009
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43010
+ */
43011
+ take?: number;
43012
+ /**
43013
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43014
+ */
43015
+ skip?: number;
43016
+ /**
43017
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43018
+ */
43019
+ limitListRequests?: boolean;
43020
+ /**
43021
+ * Gets or sets the Tenant Id.
43022
+ */
43023
+ tenantId?: string;
43024
+ /**
43025
+ * Gets or sets the Modifed By Id.
43026
+ */
43027
+ modifiedById?: string;
43028
+ /**
43029
+ * Gets or sets the Modifed By Ids.
43030
+ */
43031
+ modifiedByIds?: Array<string>;
43032
+ /**
43033
+ * Gets or sets the Date Created greater than equal to.
43034
+ */
43035
+ dateCreatedGte?: string;
43036
+ /**
43037
+ * Gets or sets the Date Created less than equal to.
43038
+ */
43039
+ dateCreatedLte?: string;
43040
+ /**
43041
+ * Gets or sets the queryable only is live status.
43042
+ */
43043
+ isLive?: boolean;
43044
+ /**
43045
+ * Gets or sets the sort order direction.
43046
+ */
43047
+ sortOrderDirection?: SearchSortOrderDirection;
43048
+ }): CancelablePromise<UserProgrammePage>;
43049
+ /**
43050
+ * Deletes the resource.
43051
+ * @returns any Success
43052
+ * @throws ApiError
43053
+ */
43054
+ deleteById({ id, }: {
43055
+ /**
43056
+ * The <typeparamref name="TObject" /> id.
43057
+ */
43058
+ id: string;
43059
+ }): CancelablePromise<any>;
43060
+ /**
43061
+ * Gets the resource by its Id.
43062
+ * @returns UserProgramme Success
43063
+ * @throws ApiError
43064
+ */
43065
+ getObject({ id, }: {
43066
+ /**
43067
+ * The <typeparamref name="TObject" /> id.
43068
+ */
43069
+ id: string;
43070
+ }): CancelablePromise<UserProgramme>;
43071
+ /**
43072
+ * Returns a value indicating whether the resource is deletable.
43073
+ * @returns boolean Success
43074
+ * @throws ApiError
43075
+ */
43076
+ canDelete({ id, }: {
43077
+ /**
43078
+ * The <typeparamref name="TObject" /> id.
43079
+ */
43080
+ id: string;
43081
+ }): CancelablePromise<boolean>;
43082
+ /**
43083
+ * Returns a value indicating whether the resource exists in the database given the provided search params.
43084
+ * @returns boolean Success
43085
+ * @throws ApiError
43086
+ */
43087
+ exists({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43088
+ /**
43089
+ * Gets or sets the queryable programme id.
43090
+ */
43091
+ programmeId?: string;
43092
+ /**
43093
+ * Gets or sets the queryable programme ids.
43094
+ */
43095
+ programmeIds?: Array<string>;
43096
+ /**
43097
+ * Gets or sets the queryable user id.
43098
+ */
43099
+ userId?: string;
43100
+ /**
43101
+ * Gets or sets the queryable user ids.
43102
+ */
43103
+ userIds?: Array<string>;
43104
+ /**
43105
+ * Gets or sets the page number for paged queries.
43106
+ */
43107
+ pageNumber?: number;
43108
+ /**
43109
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43110
+ */
43111
+ take?: number;
43112
+ /**
43113
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43114
+ */
43115
+ skip?: number;
43116
+ /**
43117
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43118
+ */
43119
+ limitListRequests?: boolean;
43120
+ /**
43121
+ * Gets or sets the Tenant Id.
43122
+ */
43123
+ tenantId?: string;
43124
+ /**
43125
+ * Gets or sets the Modifed By Id.
43126
+ */
43127
+ modifiedById?: string;
43128
+ /**
43129
+ * Gets or sets the Modifed By Ids.
43130
+ */
43131
+ modifiedByIds?: Array<string>;
43132
+ /**
43133
+ * Gets or sets the Date Created greater than equal to.
43134
+ */
43135
+ dateCreatedGte?: string;
43136
+ /**
43137
+ * Gets or sets the Date Created less than equal to.
43138
+ */
43139
+ dateCreatedLte?: string;
43140
+ /**
43141
+ * Gets or sets the queryable only is live status.
43142
+ */
43143
+ isLive?: boolean;
43144
+ /**
43145
+ * Gets or sets the sort order direction.
43146
+ */
43147
+ sortOrderDirection?: SearchSortOrderDirection;
43148
+ }): CancelablePromise<boolean>;
43149
+ /**
43150
+ * Gets a list of resources unpaged and without references.
43151
+ * @returns UserProgramme Success
43152
+ * @throws ApiError
43153
+ */
43154
+ getListWithoutReferences({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43155
+ /**
43156
+ * Gets or sets the queryable programme id.
43157
+ */
43158
+ programmeId?: string;
43159
+ /**
43160
+ * Gets or sets the queryable programme ids.
43161
+ */
43162
+ programmeIds?: Array<string>;
43163
+ /**
43164
+ * Gets or sets the queryable user id.
43165
+ */
43166
+ userId?: string;
43167
+ /**
43168
+ * Gets or sets the queryable user ids.
43169
+ */
43170
+ userIds?: Array<string>;
43171
+ /**
43172
+ * Gets or sets the page number for paged queries.
43173
+ */
43174
+ pageNumber?: number;
43175
+ /**
43176
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43177
+ */
43178
+ take?: number;
43179
+ /**
43180
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43181
+ */
43182
+ skip?: number;
43183
+ /**
43184
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43185
+ */
43186
+ limitListRequests?: boolean;
43187
+ /**
43188
+ * Gets or sets the Tenant Id.
43189
+ */
43190
+ tenantId?: string;
43191
+ /**
43192
+ * Gets or sets the Modifed By Id.
43193
+ */
43194
+ modifiedById?: string;
43195
+ /**
43196
+ * Gets or sets the Modifed By Ids.
43197
+ */
43198
+ modifiedByIds?: Array<string>;
43199
+ /**
43200
+ * Gets or sets the Date Created greater than equal to.
43201
+ */
43202
+ dateCreatedGte?: string;
43203
+ /**
43204
+ * Gets or sets the Date Created less than equal to.
43205
+ */
43206
+ dateCreatedLte?: string;
43207
+ /**
43208
+ * Gets or sets the queryable only is live status.
43209
+ */
43210
+ isLive?: boolean;
43211
+ /**
43212
+ * Gets or sets the sort order direction.
43213
+ */
43214
+ sortOrderDirection?: SearchSortOrderDirection;
43215
+ }): CancelablePromise<Array<UserProgramme>>;
43216
+ /**
43217
+ * Gets a list of resources.
43218
+ * @returns UserProgramme Success
43219
+ * @throws ApiError
43220
+ */
43221
+ getListIdName({ programmeId, programmeIds, userId, userIds, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
43222
+ /**
43223
+ * Gets or sets the queryable programme id.
43224
+ */
43225
+ programmeId?: string;
43226
+ /**
43227
+ * Gets or sets the queryable programme ids.
43228
+ */
43229
+ programmeIds?: Array<string>;
43230
+ /**
43231
+ * Gets or sets the queryable user id.
43232
+ */
43233
+ userId?: string;
43234
+ /**
43235
+ * Gets or sets the queryable user ids.
43236
+ */
43237
+ userIds?: Array<string>;
43238
+ /**
43239
+ * Gets or sets the page number for paged queries.
43240
+ */
43241
+ pageNumber?: number;
43242
+ /**
43243
+ * Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
43244
+ */
43245
+ take?: number;
43246
+ /**
43247
+ * Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
43248
+ */
43249
+ skip?: number;
43250
+ /**
43251
+ * Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
43252
+ */
43253
+ limitListRequests?: boolean;
43254
+ /**
43255
+ * Gets or sets the Tenant Id.
43256
+ */
43257
+ tenantId?: string;
43258
+ /**
43259
+ * Gets or sets the Modifed By Id.
43260
+ */
43261
+ modifiedById?: string;
43262
+ /**
43263
+ * Gets or sets the Modifed By Ids.
43264
+ */
43265
+ modifiedByIds?: Array<string>;
43266
+ /**
43267
+ * Gets or sets the Date Created greater than equal to.
43268
+ */
43269
+ dateCreatedGte?: string;
43270
+ /**
43271
+ * Gets or sets the Date Created less than equal to.
43272
+ */
43273
+ dateCreatedLte?: string;
43274
+ /**
43275
+ * Gets or sets the queryable only is live status.
43276
+ */
43277
+ isLive?: boolean;
43278
+ /**
43279
+ * Gets or sets the sort order direction.
43280
+ */
43281
+ sortOrderDirection?: SearchSortOrderDirection;
43282
+ }): CancelablePromise<Array<UserProgramme>>;
43283
+ }
43284
+
42334
43285
  type UserPage = {
42335
43286
  pagination: Pagination;
42336
43287
  readonly items: Array<User>;
@@ -47077,6 +48028,8 @@ declare class ApiClient {
47077
48028
  readonly timezone: TimezoneService;
47078
48029
  readonly totalRevenueReport: TotalRevenueReportService;
47079
48030
  readonly unsplash: UnsplashService;
48031
+ readonly userPermissions: UserPermissionsService;
48032
+ readonly userProgrammes: UserProgrammesService;
47080
48033
  readonly users: UsersService;
47081
48034
  readonly venueManagers: VenueManagersService;
47082
48035
  readonly venuePerformance: VenuePerformanceService;
@@ -47217,4 +48170,4 @@ type ValidationResultModel = {
47217
48170
  readonly errors?: Array<ValidationError> | null;
47218
48171
  };
47219
48172
 
47220
- export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPost, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };
48173
+ export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, ChoiceMessage, CompletionChoice, ContactOnConfirmation, Country, CountryService, Course, CourseBookingCutoff, CourseCreate, CourseEmailAttendeesPatch, CoursePage, CoursePatch, CoursePost, CourseSearchSortBy, CourseSession, CourseSessionPage, CourseSessionPatch, CourseSessionPost, CourseSessionReschedulePatch, CourseSessionSchedule, CourseSessionSchedulePage, CourseSessionSchedulePatch, CourseSessionSchedulePost, CourseSessionSchedulesService, CourseSessionsService, CourseStatus, CoursesService, CreateDeal, CreateEmailSettings, CreateOffer, CreateQuestion, CreateQuestionOption, CreateTemplateDetail, CreateVenue, CustomDateRange, CustomDateRangeOption, Customer, CustomerCancellationOption, CustomerEmailPatch, CustomerPage, CustomerPatch, CustomerPost, CustomerStats, CustomerType, CustomersService, DatabaseState, DayOfWeek, Deal, DealActivitiesService, DealActivity, DealActivityPage, DealActivityPatch, DealActivityPost, DealCreate, DealDiscountType, DealPage, DealPatch, DealPost, DealTarget, DealType, DealsService, DescriptionCompletionResponse, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FilestackImageMetaResponseModel, FilestackService, Gender, GenericActivity, GenericActivityPage, GenericActivityService, GeocodeResponseModel, GeocodeService, GooglePrediction, HelpersService, HereAddressDetails, HereAutoComplete, HereAutocompleteLookupService, HereLookupResults, HereMapDetails, HerePositionDetails, HttpStatusCode, IOpportunity, Image, ImageLibraryCategory, ImageLibraryCategoryService, ImageLibraryImage, ImageLibraryImageService, ImagePage, ImagePatch, ImagePost, ImageUploadHistory, ImageUploadHistoryPage, ImageUploadHistoryPatch, ImageUploadHistoryPost, ImageUploadHistoryService, ImagesService, InviteStatus, LeasingService, LoqateGeocode, LoqatePlaceResult, LoqatePlacesService, LoqatePrediction, Northeast, NotificationQueue, NotificationQueuePage, NotificationQueuePatch, NotificationQueuePost, NotificationQueueService, NotificationSetting, NotificationSettingPage, NotificationSettingPatch, NotificationSettingPost, NotificationSettingsService, NotificationType, Offer, OfferPage, OfferPatch, OfferPost, OffersService, OpenAPI, OpenAPIConfig, OpenactiveFeedIntermediate, OpenactiveFeedIntermediatePage, OpenactiveFeedIntermediatePatch, OpenactiveFeedIntermediatePost, OpenactiveFeedIntermediateService, OpenactiveFeedItem, OpenactiveFeedItemPage, OpenactiveFeedItemPatch, OpenactiveFeedItemPost, OpenactiveFeedItemService, OpportunityRegister, OpportunityRegisterPage, OpportunityRegisterPatch, OpportunityRegisterPost, OpportunityRegisterService, OpportunityRegisterStatus, OpportunityType, Order, OrderDeal, OrderEmailCustomerPatch, OrderItem, OrderItemDeal, OrderItemPage, OrderItemPatch, OrderItemPost, OrderItemReport, OrderItemReportPage, OrderItemReportPatch, OrderItemReportPost, OrderItemReportService, OrderItemStatus, OrderItemsService, OrderPage, OrderPatch, OrderPatchItem, OrderPost, OrderPostItem, OrderRefresh, OrderSource, OrderStage, OrderToken, OrderTokenPage, OrderTokenPatch, OrderTokenPost, OrderUpdateContact, OrdersService, OrgCourseUtilisation, OrgCourseUtilisationPage, OrgCourseUtilisationPatch, OrgCourseUtilisationPost, OrgCourseUtilisationService, OrganisationApplicationFeeHandling, OrganisationAvailableChannel, OrganisationRefundPolicy, OrganisationTaxMode, OrganisationType, Pagination, Payment, PaymentMethod, PaymentPage, PaymentPatch, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RescheduleLog, RescheduleLogPage, RescheduleLogPatch, RescheduleLogPost, RescheduleLogService, ScheduleStatus, ScheduledSession, ScheduledSessionEmailAttendeesPatch, ScheduledSessionPage, ScheduledSessionPatch, ScheduledSessionPost, ScheduledSessionReschedulePatch, ScheduledSessionSchedule, ScheduledSessionSchedulePage, ScheduledSessionSchedulePatch, ScheduledSessionSchedulePost, ScheduledSessionSearchSortBy, ScheduledSessionsSchedulesService, ScheduledSessionsService, SearchSortOrderDirection, Session, SessionCreate, SessionPage, SessionPatch, SessionPost, SessionType, SessionsService, Slot, SlotAvailabilityStatus, SlotOffer, SlotOfferPage, SlotOfferPatch, SlotOfferPost, SlotOffersService, SlotPage, SlotPatch, SlotPost, SlotSchedule, SlotScheduleOffer, SlotScheduleOfferPage, SlotScheduleOfferPatch, SlotScheduleOfferPost, SlotScheduleOffersService, SlotSchedulePage, SlotSchedulePatch, SlotSchedulePost, SlotSchedulesService, SlotStatus, SlotsService, Southwest, StripeAccount, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StructuredFormatting, Surface, SurfacesService, Survey, SurveyAnswer, SurveyAnswerPage, SurveyAnswerPatch, SurveyAnswerPost, SurveyAnswersService, SurveyCompletionLog, SurveyCompletionLogPage, SurveyCompletionLogPatch, SurveyCompletionLogPost, SurveyCompletionLogService, SurveyCreate, SurveyDuplicatePost, SurveyPage, SurveyPatch, SurveyPost, SurveyQuestion, SurveyQuestionOption, SurveyQuestionPage, SurveyQuestionPatch, SurveyQuestionPatchOption, SurveyQuestionPost, SurveyQuestionPostOption, SurveyQuestionType, SurveyQuestionsService, SurveyQuestionsTarget, SurveyReportExtended, SurveyReportExtendedPage, SurveyReportExtendedPatch, SurveyReportExtendedPost, SurveyReportExtendedService, SurveyResponseMode, SurveySubmissionModel, SurveySubmit, SurveySubmitAttendee, SurveySubmitQuestions, SurveyType, SurveysService, Tax, Template, TemplateCreate, TemplateDeal, TemplateDetail, TemplateDetailPage, TemplateDetailPatch, TemplateDetailPost, TemplateDetailsService, TemplateDuplicatePost, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantTier, TenantWebsiteSetting, TenantWebsiteSettingPage, TenantWebsiteSettingPatch, TenantWebsiteSettingPost, TenantWebsiteSettingsService, TenantsService, Timezone, TimezoneService, TotalRevenueReport, TotalRevenueReportPage, TotalRevenueReportPatch, TotalRevenueReportPost, TotalRevenueReportService, UnsplashSearchResponse, UnsplashService, UpdateEmailSettings, UpdateOffer, User, UserPage, UserPatch, UserPermission, UserPermissionPage, UserPermissionPatch, UserPermissionPost, UserPermissionsService, UserPost, UserProgramme, UserProgrammePage, UserProgrammePatch, UserProgrammePost, UserProgrammesService, UserRole, UsersService, ValidationError, ValidationResultModel, Venue, VenueBadmintonEnglandReport, VenueBadmintonEnglandReportPage, VenueBadmintonEnglandReportPatch, VenueBadmintonEnglandReportPost, VenueCreate, VenueManager, VenueManagerPage, VenueManagerPatch, VenueManagerPost, VenueManagersService, VenueOpeningHourUpdate, VenueOpeningHours, VenuePage, VenuePatch, VenuePerformance, VenuePerformancePage, VenuePerformancePatch, VenuePerformancePost, VenuePerformanceService, VenuePost, VenuesReport, VenuesReportPage, VenuesReportPatch, VenuesReportPost, VenuesReportService, VenuesService, WaitlistActivity, WaitlistActivityPage, WaitlistActivityPatch, WaitlistActivityPost, WaitlistActivityReport, WaitlistActivityReportPage, WaitlistActivityReportPatch, WaitlistActivityReportPost, WaitlistActivityReportService, WaitlistActivityService, WaitlistOpportunity, WaitlistOpportunityPage, WaitlistOpportunityPatch, WaitlistOpportunityPost, WaitlistOpportunityReport, WaitlistOpportunityReportPage, WaitlistOpportunityReportPatch, WaitlistOpportunityReportPost, WaitlistOpportunityReportService, WaitlistOpportunityService };