reach-api-sdk 1.0.183 → 1.0.185
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.
- package/dist/reach-sdk.d.ts +512 -7
- package/dist/reach-sdk.js +359 -2
- package/package.json +1 -1
- package/src/apiClient.ts +3 -0
- package/src/definition/swagger.yaml +2248 -885
- package/src/index.ts +5 -0
- package/src/models/CreateDeal.ts +13 -1
- package/src/models/Deal.ts +13 -1
- package/src/models/DealCreate.ts +17 -1
- package/src/models/DealPatch.ts +13 -1
- package/src/models/DealPost.ts +13 -1
- package/src/models/DiscountCodeUse.ts +46 -0
- package/src/models/DiscountCodeUsePage.ts +12 -0
- package/src/models/DiscountCodeUsePatch.ts +30 -0
- package/src/models/DiscountCodeUsePost.ts +26 -0
- package/src/services/DiscountCodeUsesService.ts +647 -0
- package/src/services/PlatformPayoutsService.ts +1 -1
package/dist/reach-sdk.d.ts
CHANGED
|
@@ -2176,7 +2176,7 @@ type Deal = {
|
|
|
2176
2176
|
/**
|
|
2177
2177
|
* Gets or sets the required items.
|
|
2178
2178
|
*/
|
|
2179
|
-
requiredItems?: number;
|
|
2179
|
+
requiredItems?: number | null;
|
|
2180
2180
|
discountType?: DealDiscountType;
|
|
2181
2181
|
/**
|
|
2182
2182
|
* Gets or sets the value of the discount applied to the deal.
|
|
@@ -2187,6 +2187,18 @@ type Deal = {
|
|
|
2187
2187
|
* Gets or sets the discount code (only used for discount codes).
|
|
2188
2188
|
*/
|
|
2189
2189
|
discountCode?: string | null;
|
|
2190
|
+
/**
|
|
2191
|
+
* Gets or sets the start date time for the promotion (only used for discount codes).
|
|
2192
|
+
*/
|
|
2193
|
+
startDateTime?: string | null;
|
|
2194
|
+
/**
|
|
2195
|
+
* Gets or sets the end date time for the promotion (only used for discount codes).
|
|
2196
|
+
*/
|
|
2197
|
+
endDateTime?: string | null;
|
|
2198
|
+
/**
|
|
2199
|
+
* Gets or sets a value indicating whether the discount is limited to one use per customer (only used for discount codes).
|
|
2200
|
+
*/
|
|
2201
|
+
singleUseOnly?: boolean | null;
|
|
2190
2202
|
target?: DealTarget;
|
|
2191
2203
|
/**
|
|
2192
2204
|
* Gets the venues shortened formatted address.
|
|
@@ -7373,7 +7385,7 @@ type CreateDeal = {
|
|
|
7373
7385
|
/**
|
|
7374
7386
|
* Gets or sets the required items.
|
|
7375
7387
|
*/
|
|
7376
|
-
requiredItems?: number;
|
|
7388
|
+
requiredItems?: number | null;
|
|
7377
7389
|
discountType?: DealDiscountType;
|
|
7378
7390
|
/**
|
|
7379
7391
|
* Gets or sets the value of the discount applied to the deal.
|
|
@@ -7384,6 +7396,18 @@ type CreateDeal = {
|
|
|
7384
7396
|
* Gets or sets the discount code (only used for discount codes).
|
|
7385
7397
|
*/
|
|
7386
7398
|
discountCode?: string | null;
|
|
7399
|
+
/**
|
|
7400
|
+
* Gets or sets the start date time for the promotion (only used for discount codes).
|
|
7401
|
+
*/
|
|
7402
|
+
startDateTime?: string | null;
|
|
7403
|
+
/**
|
|
7404
|
+
* Gets or sets the end date time for the promotion (only used for discount codes).
|
|
7405
|
+
*/
|
|
7406
|
+
endDateTime?: string | null;
|
|
7407
|
+
/**
|
|
7408
|
+
* Gets or sets a value indicating whether the discount is limited to one use per customer (only used for discount codes).
|
|
7409
|
+
*/
|
|
7410
|
+
singleUseOnly?: boolean | null;
|
|
7387
7411
|
target?: DealTarget;
|
|
7388
7412
|
/**
|
|
7389
7413
|
* Gets the venues shortened formatted address.
|
|
@@ -11116,12 +11140,28 @@ type DealCreate = {
|
|
|
11116
11140
|
/**
|
|
11117
11141
|
* Gets or sets the number of required items for the deal.
|
|
11118
11142
|
*/
|
|
11119
|
-
requiredItems
|
|
11143
|
+
requiredItems?: number | null;
|
|
11120
11144
|
discountType: DealDiscountType;
|
|
11121
11145
|
/**
|
|
11122
11146
|
* Gets or sets the value of the discount applied to the deal.
|
|
11123
11147
|
*/
|
|
11124
11148
|
discountValue: number;
|
|
11149
|
+
/**
|
|
11150
|
+
* Gets or sets the discount code (only used for discount codes).
|
|
11151
|
+
*/
|
|
11152
|
+
discountCode?: string | null;
|
|
11153
|
+
/**
|
|
11154
|
+
* Gets or sets the start date time for the promotion (only used for discount codes).
|
|
11155
|
+
*/
|
|
11156
|
+
startDateTime?: string | null;
|
|
11157
|
+
/**
|
|
11158
|
+
* Gets or sets the end date time for the promotion (only used for discount codes).
|
|
11159
|
+
*/
|
|
11160
|
+
endDateTime?: string | null;
|
|
11161
|
+
/**
|
|
11162
|
+
* Gets or sets a value indicating whether the discount is limited to one use per customer (only used for discount codes).
|
|
11163
|
+
*/
|
|
11164
|
+
singleUseOnly?: boolean | null;
|
|
11125
11165
|
target: DealTarget;
|
|
11126
11166
|
};
|
|
11127
11167
|
|
|
@@ -11150,7 +11190,7 @@ type DealPatch = {
|
|
|
11150
11190
|
/**
|
|
11151
11191
|
* Gets or sets the number of required items for the deal.
|
|
11152
11192
|
*/
|
|
11153
|
-
requiredItems?: number;
|
|
11193
|
+
requiredItems?: number | null;
|
|
11154
11194
|
discountType?: DealDiscountType;
|
|
11155
11195
|
/**
|
|
11156
11196
|
* Gets or sets the value of the discount applied to the deal.
|
|
@@ -11160,6 +11200,18 @@ type DealPatch = {
|
|
|
11160
11200
|
* Gets or sets the discount code (only used for discount codes).
|
|
11161
11201
|
*/
|
|
11162
11202
|
discountCode?: string | null;
|
|
11203
|
+
/**
|
|
11204
|
+
* Gets or sets the start date time for the promotion (only used for discount codes).
|
|
11205
|
+
*/
|
|
11206
|
+
startDateTime?: string | null;
|
|
11207
|
+
/**
|
|
11208
|
+
* Gets or sets the end date time for the promotion (only used for discount codes).
|
|
11209
|
+
*/
|
|
11210
|
+
endDateTime?: string | null;
|
|
11211
|
+
/**
|
|
11212
|
+
* Gets or sets a value indicating whether the discount is limited to one use per customer (only used for discount codes).
|
|
11213
|
+
*/
|
|
11214
|
+
singleUseOnly?: boolean | null;
|
|
11163
11215
|
target?: DealTarget;
|
|
11164
11216
|
};
|
|
11165
11217
|
|
|
@@ -11179,7 +11231,7 @@ type DealPost = {
|
|
|
11179
11231
|
/**
|
|
11180
11232
|
* Gets or sets the number of required items for the deal.
|
|
11181
11233
|
*/
|
|
11182
|
-
requiredItems?: number;
|
|
11234
|
+
requiredItems?: number | null;
|
|
11183
11235
|
discountType: DealDiscountType;
|
|
11184
11236
|
/**
|
|
11185
11237
|
* Gets or sets the value of the discount applied to the deal.
|
|
@@ -11189,6 +11241,18 @@ type DealPost = {
|
|
|
11189
11241
|
* Gets or sets the discount code (only used for discount codes).
|
|
11190
11242
|
*/
|
|
11191
11243
|
discountCode?: string | null;
|
|
11244
|
+
/**
|
|
11245
|
+
* Gets or sets the start date time for the promotion (only used for discount codes).
|
|
11246
|
+
*/
|
|
11247
|
+
startDateTime?: string | null;
|
|
11248
|
+
/**
|
|
11249
|
+
* Gets or sets the end date time for the promotion (only used for discount codes).
|
|
11250
|
+
*/
|
|
11251
|
+
endDateTime?: string | null;
|
|
11252
|
+
/**
|
|
11253
|
+
* Gets or sets a value indicating whether the discount is limited to one use per customer (only used for discount codes).
|
|
11254
|
+
*/
|
|
11255
|
+
singleUseOnly?: boolean | null;
|
|
11192
11256
|
target: DealTarget;
|
|
11193
11257
|
};
|
|
11194
11258
|
|
|
@@ -11586,6 +11650,446 @@ declare class DealsService {
|
|
|
11586
11650
|
}): CancelablePromise<Array<Deal>>;
|
|
11587
11651
|
}
|
|
11588
11652
|
|
|
11653
|
+
/**
|
|
11654
|
+
* Represents a discount code use within the Reach application.
|
|
11655
|
+
*/
|
|
11656
|
+
type DiscountCodeUse = {
|
|
11657
|
+
/**
|
|
11658
|
+
* Gets or sets the entities Id.
|
|
11659
|
+
*/
|
|
11660
|
+
id?: string;
|
|
11661
|
+
/**
|
|
11662
|
+
* Gets or sets the tenant Id.
|
|
11663
|
+
*/
|
|
11664
|
+
tenantId: string;
|
|
11665
|
+
/**
|
|
11666
|
+
* Gets or sets the created date of this entity.
|
|
11667
|
+
*/
|
|
11668
|
+
dateCreated: string;
|
|
11669
|
+
/**
|
|
11670
|
+
* Gets or sets the last modified date of this entity.
|
|
11671
|
+
*/
|
|
11672
|
+
dateModified: string;
|
|
11673
|
+
/**
|
|
11674
|
+
* Gets or sets the modified by Id.
|
|
11675
|
+
*/
|
|
11676
|
+
modifiedById?: string | null;
|
|
11677
|
+
/**
|
|
11678
|
+
* Gets or sets a value indicating whether the record is live and available for use within the application.
|
|
11679
|
+
*/
|
|
11680
|
+
isLive: boolean;
|
|
11681
|
+
/**
|
|
11682
|
+
* Gets or sets the deal id.
|
|
11683
|
+
*/
|
|
11684
|
+
dealId?: string;
|
|
11685
|
+
/**
|
|
11686
|
+
* Gets or sets the order id.
|
|
11687
|
+
*/
|
|
11688
|
+
orderId?: string;
|
|
11689
|
+
/**
|
|
11690
|
+
* Gets or sets the customer id.
|
|
11691
|
+
*/
|
|
11692
|
+
customerId?: string;
|
|
11693
|
+
};
|
|
11694
|
+
|
|
11695
|
+
type DiscountCodeUsePage = {
|
|
11696
|
+
pagination: Pagination;
|
|
11697
|
+
readonly items: Array<DiscountCodeUse>;
|
|
11698
|
+
};
|
|
11699
|
+
|
|
11700
|
+
/**
|
|
11701
|
+
* Post model for discount code use updates.
|
|
11702
|
+
*/
|
|
11703
|
+
type DiscountCodeUsePatch = {
|
|
11704
|
+
/**
|
|
11705
|
+
* Gets or sets the tenant Id.
|
|
11706
|
+
*/
|
|
11707
|
+
tenantId: string;
|
|
11708
|
+
/**
|
|
11709
|
+
* Gets or sets the Id.
|
|
11710
|
+
*/
|
|
11711
|
+
id: string;
|
|
11712
|
+
/**
|
|
11713
|
+
* Gets or sets the deal id.
|
|
11714
|
+
*/
|
|
11715
|
+
dealId: string;
|
|
11716
|
+
/**
|
|
11717
|
+
* Gets or sets the order id.
|
|
11718
|
+
*/
|
|
11719
|
+
orderId: string;
|
|
11720
|
+
/**
|
|
11721
|
+
* Gets or sets the customer id.
|
|
11722
|
+
*/
|
|
11723
|
+
customerId: string;
|
|
11724
|
+
};
|
|
11725
|
+
|
|
11726
|
+
/**
|
|
11727
|
+
* Post model for discount code use inserts.
|
|
11728
|
+
*/
|
|
11729
|
+
type DiscountCodeUsePost = {
|
|
11730
|
+
/**
|
|
11731
|
+
* Gets or sets the tenant Id.
|
|
11732
|
+
*/
|
|
11733
|
+
tenantId: string;
|
|
11734
|
+
/**
|
|
11735
|
+
* Gets or sets the deal id.
|
|
11736
|
+
*/
|
|
11737
|
+
dealId: string;
|
|
11738
|
+
/**
|
|
11739
|
+
* Gets or sets the order id.
|
|
11740
|
+
*/
|
|
11741
|
+
orderId: string;
|
|
11742
|
+
/**
|
|
11743
|
+
* Gets or sets the customer id.
|
|
11744
|
+
*/
|
|
11745
|
+
customerId: string;
|
|
11746
|
+
};
|
|
11747
|
+
|
|
11748
|
+
declare class DiscountCodeUsesService {
|
|
11749
|
+
readonly httpRequest: BaseHttpRequest;
|
|
11750
|
+
constructor(httpRequest: BaseHttpRequest);
|
|
11751
|
+
/**
|
|
11752
|
+
* Inserts a new resource. The Id will be automatically generated and will be ignored if provided.
|
|
11753
|
+
* @returns DiscountCodeUse OK
|
|
11754
|
+
* @throws ApiError
|
|
11755
|
+
*/
|
|
11756
|
+
post({ requestBody, }: {
|
|
11757
|
+
/**
|
|
11758
|
+
* The <typeparamref name="TObject" /> model.
|
|
11759
|
+
*/
|
|
11760
|
+
requestBody?: DiscountCodeUsePost;
|
|
11761
|
+
}): CancelablePromise<DiscountCodeUse>;
|
|
11762
|
+
/**
|
|
11763
|
+
* Patches the resource.
|
|
11764
|
+
* @returns DiscountCodeUse OK
|
|
11765
|
+
* @throws ApiError
|
|
11766
|
+
*/
|
|
11767
|
+
patch({ requestBody, }: {
|
|
11768
|
+
/**
|
|
11769
|
+
* The <typeparamref name="TObject" /> model.
|
|
11770
|
+
*/
|
|
11771
|
+
requestBody?: DiscountCodeUsePatch;
|
|
11772
|
+
}): CancelablePromise<DiscountCodeUse>;
|
|
11773
|
+
/**
|
|
11774
|
+
* Inserts a list of resources.
|
|
11775
|
+
* @returns DiscountCodeUse OK
|
|
11776
|
+
* @throws ApiError
|
|
11777
|
+
*/
|
|
11778
|
+
postList({ requestBody, }: {
|
|
11779
|
+
/**
|
|
11780
|
+
* The list of <typeparamref name="TObject" />.
|
|
11781
|
+
*/
|
|
11782
|
+
requestBody?: Array<DiscountCodeUsePost>;
|
|
11783
|
+
}): CancelablePromise<Array<DiscountCodeUse>>;
|
|
11784
|
+
/**
|
|
11785
|
+
* Patches the resource.
|
|
11786
|
+
* @returns DiscountCodeUse OK
|
|
11787
|
+
* @throws ApiError
|
|
11788
|
+
*/
|
|
11789
|
+
patchWithReferences({ requestBody, }: {
|
|
11790
|
+
/**
|
|
11791
|
+
* The <typeparamref name="TObject" /> model.
|
|
11792
|
+
*/
|
|
11793
|
+
requestBody?: DiscountCodeUsePatch;
|
|
11794
|
+
}): CancelablePromise<DiscountCodeUse>;
|
|
11795
|
+
/**
|
|
11796
|
+
* Deletes the resource.
|
|
11797
|
+
* @returns any OK
|
|
11798
|
+
* @throws ApiError
|
|
11799
|
+
*/
|
|
11800
|
+
deleteByObject({ requestBody, }: {
|
|
11801
|
+
/**
|
|
11802
|
+
* The <typeparamref name="TObject" /> model.
|
|
11803
|
+
*/
|
|
11804
|
+
requestBody?: DiscountCodeUse;
|
|
11805
|
+
}): CancelablePromise<any>;
|
|
11806
|
+
/**
|
|
11807
|
+
* Gets a list of resources.
|
|
11808
|
+
* @returns DiscountCodeUsePage OK
|
|
11809
|
+
* @throws ApiError
|
|
11810
|
+
*/
|
|
11811
|
+
getPage({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11812
|
+
/**
|
|
11813
|
+
* Gets or sets the deal id.
|
|
11814
|
+
*/
|
|
11815
|
+
dealId?: string;
|
|
11816
|
+
/**
|
|
11817
|
+
* Gets or sets the order id.
|
|
11818
|
+
*/
|
|
11819
|
+
orderId?: string;
|
|
11820
|
+
/**
|
|
11821
|
+
* Gets or sets the customer id.
|
|
11822
|
+
*/
|
|
11823
|
+
customerId?: string;
|
|
11824
|
+
/**
|
|
11825
|
+
* Gets or sets the page number for paged queries.
|
|
11826
|
+
*/
|
|
11827
|
+
pageNumber?: number;
|
|
11828
|
+
/**
|
|
11829
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11830
|
+
*/
|
|
11831
|
+
take?: number;
|
|
11832
|
+
/**
|
|
11833
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
11834
|
+
*/
|
|
11835
|
+
skip?: number;
|
|
11836
|
+
/**
|
|
11837
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11838
|
+
*/
|
|
11839
|
+
limitListRequests?: boolean;
|
|
11840
|
+
/**
|
|
11841
|
+
* Gets or sets the Tenant Id.
|
|
11842
|
+
*/
|
|
11843
|
+
tenantId?: string;
|
|
11844
|
+
/**
|
|
11845
|
+
* Gets or sets the Modifed By Id.
|
|
11846
|
+
*/
|
|
11847
|
+
modifiedById?: string;
|
|
11848
|
+
/**
|
|
11849
|
+
* Gets or sets the Modifed By Ids.
|
|
11850
|
+
*/
|
|
11851
|
+
modifiedByIds?: Array<string>;
|
|
11852
|
+
/**
|
|
11853
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11854
|
+
*/
|
|
11855
|
+
dateCreatedGte?: string;
|
|
11856
|
+
/**
|
|
11857
|
+
* Gets or sets the Date Created less than equal to.
|
|
11858
|
+
*/
|
|
11859
|
+
dateCreatedLte?: string;
|
|
11860
|
+
/**
|
|
11861
|
+
* Gets or sets the queryable only is live status.
|
|
11862
|
+
*/
|
|
11863
|
+
isLive?: boolean;
|
|
11864
|
+
/**
|
|
11865
|
+
* Gets or sets the sort order direction.
|
|
11866
|
+
*/
|
|
11867
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11868
|
+
}): CancelablePromise<DiscountCodeUsePage>;
|
|
11869
|
+
/**
|
|
11870
|
+
* Deletes the resource.
|
|
11871
|
+
* @returns any OK
|
|
11872
|
+
* @throws ApiError
|
|
11873
|
+
*/
|
|
11874
|
+
deleteById({ id, }: {
|
|
11875
|
+
/**
|
|
11876
|
+
* The <typeparamref name="TObject" /> id.
|
|
11877
|
+
*/
|
|
11878
|
+
id: string;
|
|
11879
|
+
}): CancelablePromise<any>;
|
|
11880
|
+
/**
|
|
11881
|
+
* Gets the resource by its Id.
|
|
11882
|
+
* @returns DiscountCodeUse OK
|
|
11883
|
+
* @throws ApiError
|
|
11884
|
+
*/
|
|
11885
|
+
getObject({ id, }: {
|
|
11886
|
+
/**
|
|
11887
|
+
* The <typeparamref name="TObject" /> id.
|
|
11888
|
+
*/
|
|
11889
|
+
id: string;
|
|
11890
|
+
}): CancelablePromise<DiscountCodeUse>;
|
|
11891
|
+
/**
|
|
11892
|
+
* Returns a value indicating whether the resource is deletable.
|
|
11893
|
+
* @returns boolean OK
|
|
11894
|
+
* @throws ApiError
|
|
11895
|
+
*/
|
|
11896
|
+
canDelete({ id, }: {
|
|
11897
|
+
/**
|
|
11898
|
+
* The <typeparamref name="TObject" /> id.
|
|
11899
|
+
*/
|
|
11900
|
+
id: string;
|
|
11901
|
+
}): CancelablePromise<boolean>;
|
|
11902
|
+
/**
|
|
11903
|
+
* Returns a value indicating whether the resource exists in the database given the provided search params.
|
|
11904
|
+
* @returns boolean OK
|
|
11905
|
+
* @throws ApiError
|
|
11906
|
+
*/
|
|
11907
|
+
exists({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11908
|
+
/**
|
|
11909
|
+
* Gets or sets the deal id.
|
|
11910
|
+
*/
|
|
11911
|
+
dealId?: string;
|
|
11912
|
+
/**
|
|
11913
|
+
* Gets or sets the order id.
|
|
11914
|
+
*/
|
|
11915
|
+
orderId?: string;
|
|
11916
|
+
/**
|
|
11917
|
+
* Gets or sets the customer id.
|
|
11918
|
+
*/
|
|
11919
|
+
customerId?: string;
|
|
11920
|
+
/**
|
|
11921
|
+
* Gets or sets the page number for paged queries.
|
|
11922
|
+
*/
|
|
11923
|
+
pageNumber?: number;
|
|
11924
|
+
/**
|
|
11925
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11926
|
+
*/
|
|
11927
|
+
take?: number;
|
|
11928
|
+
/**
|
|
11929
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
11930
|
+
*/
|
|
11931
|
+
skip?: number;
|
|
11932
|
+
/**
|
|
11933
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11934
|
+
*/
|
|
11935
|
+
limitListRequests?: boolean;
|
|
11936
|
+
/**
|
|
11937
|
+
* Gets or sets the Tenant Id.
|
|
11938
|
+
*/
|
|
11939
|
+
tenantId?: string;
|
|
11940
|
+
/**
|
|
11941
|
+
* Gets or sets the Modifed By Id.
|
|
11942
|
+
*/
|
|
11943
|
+
modifiedById?: string;
|
|
11944
|
+
/**
|
|
11945
|
+
* Gets or sets the Modifed By Ids.
|
|
11946
|
+
*/
|
|
11947
|
+
modifiedByIds?: Array<string>;
|
|
11948
|
+
/**
|
|
11949
|
+
* Gets or sets the Date Created greater than equal to.
|
|
11950
|
+
*/
|
|
11951
|
+
dateCreatedGte?: string;
|
|
11952
|
+
/**
|
|
11953
|
+
* Gets or sets the Date Created less than equal to.
|
|
11954
|
+
*/
|
|
11955
|
+
dateCreatedLte?: string;
|
|
11956
|
+
/**
|
|
11957
|
+
* Gets or sets the queryable only is live status.
|
|
11958
|
+
*/
|
|
11959
|
+
isLive?: boolean;
|
|
11960
|
+
/**
|
|
11961
|
+
* Gets or sets the sort order direction.
|
|
11962
|
+
*/
|
|
11963
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
11964
|
+
}): CancelablePromise<boolean>;
|
|
11965
|
+
/**
|
|
11966
|
+
* Gets a list of resources unpaged and without references.
|
|
11967
|
+
* @returns DiscountCodeUse OK
|
|
11968
|
+
* @throws ApiError
|
|
11969
|
+
*/
|
|
11970
|
+
getListWithoutReferences({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
11971
|
+
/**
|
|
11972
|
+
* Gets or sets the deal id.
|
|
11973
|
+
*/
|
|
11974
|
+
dealId?: string;
|
|
11975
|
+
/**
|
|
11976
|
+
* Gets or sets the order id.
|
|
11977
|
+
*/
|
|
11978
|
+
orderId?: string;
|
|
11979
|
+
/**
|
|
11980
|
+
* Gets or sets the customer id.
|
|
11981
|
+
*/
|
|
11982
|
+
customerId?: string;
|
|
11983
|
+
/**
|
|
11984
|
+
* Gets or sets the page number for paged queries.
|
|
11985
|
+
*/
|
|
11986
|
+
pageNumber?: number;
|
|
11987
|
+
/**
|
|
11988
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
11989
|
+
*/
|
|
11990
|
+
take?: number;
|
|
11991
|
+
/**
|
|
11992
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
11993
|
+
*/
|
|
11994
|
+
skip?: number;
|
|
11995
|
+
/**
|
|
11996
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
11997
|
+
*/
|
|
11998
|
+
limitListRequests?: boolean;
|
|
11999
|
+
/**
|
|
12000
|
+
* Gets or sets the Tenant Id.
|
|
12001
|
+
*/
|
|
12002
|
+
tenantId?: string;
|
|
12003
|
+
/**
|
|
12004
|
+
* Gets or sets the Modifed By Id.
|
|
12005
|
+
*/
|
|
12006
|
+
modifiedById?: string;
|
|
12007
|
+
/**
|
|
12008
|
+
* Gets or sets the Modifed By Ids.
|
|
12009
|
+
*/
|
|
12010
|
+
modifiedByIds?: Array<string>;
|
|
12011
|
+
/**
|
|
12012
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12013
|
+
*/
|
|
12014
|
+
dateCreatedGte?: string;
|
|
12015
|
+
/**
|
|
12016
|
+
* Gets or sets the Date Created less than equal to.
|
|
12017
|
+
*/
|
|
12018
|
+
dateCreatedLte?: string;
|
|
12019
|
+
/**
|
|
12020
|
+
* Gets or sets the queryable only is live status.
|
|
12021
|
+
*/
|
|
12022
|
+
isLive?: boolean;
|
|
12023
|
+
/**
|
|
12024
|
+
* Gets or sets the sort order direction.
|
|
12025
|
+
*/
|
|
12026
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12027
|
+
}): CancelablePromise<Array<DiscountCodeUse>>;
|
|
12028
|
+
/**
|
|
12029
|
+
* Gets a list of resources.
|
|
12030
|
+
* @returns DiscountCodeUse OK
|
|
12031
|
+
* @throws ApiError
|
|
12032
|
+
*/
|
|
12033
|
+
getListIdName({ dealId, orderId, customerId, pageNumber, take, skip, limitListRequests, tenantId, modifiedById, modifiedByIds, dateCreatedGte, dateCreatedLte, isLive, sortOrderDirection, }: {
|
|
12034
|
+
/**
|
|
12035
|
+
* Gets or sets the deal id.
|
|
12036
|
+
*/
|
|
12037
|
+
dealId?: string;
|
|
12038
|
+
/**
|
|
12039
|
+
* Gets or sets the order id.
|
|
12040
|
+
*/
|
|
12041
|
+
orderId?: string;
|
|
12042
|
+
/**
|
|
12043
|
+
* Gets or sets the customer id.
|
|
12044
|
+
*/
|
|
12045
|
+
customerId?: string;
|
|
12046
|
+
/**
|
|
12047
|
+
* Gets or sets the page number for paged queries.
|
|
12048
|
+
*/
|
|
12049
|
+
pageNumber?: number;
|
|
12050
|
+
/**
|
|
12051
|
+
* Gets or sets the result count limit, always applicable Paged queries, only applicable to List queries if LimitListRequests is set to true.
|
|
12052
|
+
*/
|
|
12053
|
+
take?: number;
|
|
12054
|
+
/**
|
|
12055
|
+
* Gets or sets how much items to skip from begining of db table, when this is set page is always 1.
|
|
12056
|
+
*/
|
|
12057
|
+
skip?: number;
|
|
12058
|
+
/**
|
|
12059
|
+
* Gets or sets a value indicating whether to apply a limit to the number of results returned in a GetList request.
|
|
12060
|
+
*/
|
|
12061
|
+
limitListRequests?: boolean;
|
|
12062
|
+
/**
|
|
12063
|
+
* Gets or sets the Tenant Id.
|
|
12064
|
+
*/
|
|
12065
|
+
tenantId?: string;
|
|
12066
|
+
/**
|
|
12067
|
+
* Gets or sets the Modifed By Id.
|
|
12068
|
+
*/
|
|
12069
|
+
modifiedById?: string;
|
|
12070
|
+
/**
|
|
12071
|
+
* Gets or sets the Modifed By Ids.
|
|
12072
|
+
*/
|
|
12073
|
+
modifiedByIds?: Array<string>;
|
|
12074
|
+
/**
|
|
12075
|
+
* Gets or sets the Date Created greater than equal to.
|
|
12076
|
+
*/
|
|
12077
|
+
dateCreatedGte?: string;
|
|
12078
|
+
/**
|
|
12079
|
+
* Gets or sets the Date Created less than equal to.
|
|
12080
|
+
*/
|
|
12081
|
+
dateCreatedLte?: string;
|
|
12082
|
+
/**
|
|
12083
|
+
* Gets or sets the queryable only is live status.
|
|
12084
|
+
*/
|
|
12085
|
+
isLive?: boolean;
|
|
12086
|
+
/**
|
|
12087
|
+
* Gets or sets the sort order direction.
|
|
12088
|
+
*/
|
|
12089
|
+
sortOrderDirection?: SearchSortOrderDirection;
|
|
12090
|
+
}): CancelablePromise<Array<DiscountCodeUse>>;
|
|
12091
|
+
}
|
|
12092
|
+
|
|
11589
12093
|
/**
|
|
11590
12094
|
* Represents an organisation within the Reach application.
|
|
11591
12095
|
*/
|
|
@@ -24499,7 +25003,7 @@ declare class PlatformPayoutsService {
|
|
|
24499
25003
|
readonly httpRequest: BaseHttpRequest;
|
|
24500
25004
|
constructor(httpRequest: BaseHttpRequest);
|
|
24501
25005
|
/**
|
|
24502
|
-
* Process
|
|
25006
|
+
* Process platform payouts.
|
|
24503
25007
|
* @returns any OK
|
|
24504
25008
|
* @throws ApiError
|
|
24505
25009
|
*/
|
|
@@ -54230,6 +54734,7 @@ declare class ApiClient {
|
|
|
54230
54734
|
readonly customers: CustomersService;
|
|
54231
54735
|
readonly dealActivities: DealActivitiesService;
|
|
54232
54736
|
readonly deals: DealsService;
|
|
54737
|
+
readonly discountCodeUses: DiscountCodeUsesService;
|
|
54233
54738
|
readonly emailReminderSchedules: EmailReminderSchedulesService;
|
|
54234
54739
|
readonly emailSettings: EmailSettingsService;
|
|
54235
54740
|
readonly englandGolfReport: EnglandGolfReportService;
|
|
@@ -54460,4 +54965,4 @@ type ValidationResultModel = {
|
|
|
54460
54965
|
readonly errors?: Array<ValidationError> | null;
|
|
54461
54966
|
};
|
|
54462
54967
|
|
|
54463
|
-
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, 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, CreateTemplateFieldPermission, 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, FieldPermission, 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, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, 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, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, 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, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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 };
|
|
54968
|
+
export { Activity, ActivityPerformance, ActivityPerformancePage, ActivityPerformancePatch, ActivityPerformancePost, ActivityPerformanceService, ActivityService, ActivityType, AddressComponent, AdvanceBooking, Amenity, AmenityService, AmenityType, ApiClient, ApiError, AppUserRole, ApplicationRole, Attendee, AttendeePage, AttendeePatch, AttendeePost, AttendeesService, AutoCompleteResponseModel, AvailabilityIndicator, BadEnglandReportService, BaseHttpRequest, BookingService, BookingStatus, CancelError, CancelablePromise, CancellationPoliciesService, CancellationPolicy, CancellationPolicyPage, CancellationPolicyPatch, CancellationPolicyPost, ChatService, CheckoutPlatform, 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, CreateTemplateFieldPermission, 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, DiscountCodeUse, DiscountCodeUsePage, DiscountCodeUsePatch, DiscountCodeUsePost, DiscountCodeUsesService, EmailReminderSchedule, EmailReminderSchedulePage, EmailReminderSchedulePatch, EmailReminderSchedulePost, EmailReminderSchedulesService, EmailSetting, EmailSettingPage, EmailSettingPatch, EmailSettingPost, EmailSettingsService, EnglandGolfReportService, FacilitiesService, Facility, FacilityIndividual, FacilityIndividualPage, FacilityIndividualPatch, FacilityIndividualPost, FacilityIndividualsService, FacilityIndividualsType, FacilityPage, FacilityPatch, FacilityPost, FieldPermission, 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, LocationReport, LocationReportPage, LocationReportPatch, LocationReportPost, LocationReportSummary, LocationsReportService, 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, PaymentPoliciesService, PaymentPolicy, PaymentPolicyPage, PaymentPolicyPatch, PaymentPolicyPost, PaymentPolicySplitType, PaymentPost, PaymentsService, PeriodsOfWeek, Permission, PermissionPage, PermissionPatch, PermissionPost, PermissionsService, PlaceAddress, PlaceDetailsResponseModel, PlaceGeometry, PlaceLocation, PlaceResult, PlaceViewport, PlacesService, PlatformPayout, PlatformPayoutPage, PlatformPayoutPatch, PlatformPayoutPost, PlatformPayoutsService, PlusCode, Prepayment, Programme, ProgrammePage, ProgrammePatch, ProgrammePost, ProgrammesService, Provider, ProviderCreate, ProviderPage, ProviderPatch, ProviderPost, ProviderType, ProviderTypesService, ProvidersService, PublicBookingService, PublicCoursesService, PublicCustomersService, PublicFacilitiesService, PublicFilestackWebhookService, PublicGenericActivityService, PublicHealthCheckService, PublicLeasingService, PublicNetworksService, PublicOpportunityRegisterService, PublicOrderItemsService, PublicOrderTokensService, PublicOrdersService, PublicProgrammesService, PublicProvidersService, PublicScheduledSessionsService, PublicSessionsService, PublicSlotsService, PublicStripeWebhookService, PublicSurveyCompletionLogsService, PublicSurveyQuestionsService, PublicSurveysService, PublicTenantsService, PublicVenuesService, PublicWaitlistActivityService, PublicWaitlistOpportunityService, QuestionIndex, ReachEntity, ReachError, ReachOperation, RecentOrderActivityReport, RecentOrderActivityReportPage, RecentOrderActivityReportPatch, RecentOrderActivityReportPost, RecentOrderActivityReportService, RefundSource, RefundStatus, RegisterReport, RegisterReportPage, RegisterReportPatch, RegisterReportPost, RegisterReportService, RegisterReportSummary, 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, StripeAccountLinkedEntityType, StripeAccountPage, StripeAccountPatch, StripeAccountPost, StripeAccountService, StripeSetupRequirement, StripeStatus, 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, TemplateFieldPermission, TemplateFieldPermissionPage, TemplateFieldPermissionPatch, TemplateFieldPermissionPost, TemplateFieldPermissionsService, TemplateFromPost, TemplateOffer, TemplateOfferPage, TemplateOfferPatch, TemplateOfferPost, TemplateOffersService, TemplatePage, TemplatePatch, TemplatePost, TemplateUseResponse, TemplatesService, Tenant, TenantPage, TenantPatch, TenantPost, TenantSetting, 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, UserProvider, UserProviderPage, UserProviderPatch, UserProviderPost, UserProvidersService, 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 };
|