rebilly-js-sdk 62.129.0 → 62.131.0
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/CHANGELOG.md +2 -2
- package/dist/rebilly-js-sdk.d.ts +2110 -60
- package/dist/rebilly-js-sdk.es.mjs +1 -1
- package/dist/rebilly-js-sdk.umd.js +1 -1
- package/package.json +1 -1
- package/scripts/type-generation/generate-sdk-types.js +7 -1
- package/scripts/type-generation/generate-sdk-types.spec.js +23 -14
- package/scripts/type-generation/generate-ts-types.js +41 -4
- package/types-generation/template.d.ts +11 -0
package/dist/rebilly-js-sdk.d.ts
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @deprecated Import types from `"rebilly-js-sdk"` directly instead of accessing them via the `rebilly` global namespace.
|
|
3
|
+
* Example: `import type { GetCustomerCollectionRequest } from "rebilly-js-sdk"`.
|
|
4
|
+
* The `rebilly` global namespace is kept for backwards compatibility and will be removed in a future major version.
|
|
5
|
+
*/
|
|
1
6
|
declare namespace rebilly {
|
|
2
7
|
type Expandable<T> = Partial<T> & { expand?: string };
|
|
3
8
|
|
|
@@ -12748,11 +12753,21 @@ export interface coreComponents {
|
|
|
12748
12753
|
id: string;
|
|
12749
12754
|
/** Items included in the quote. */
|
|
12750
12755
|
items: coreComponents["schemas"]["QuoteItem"][];
|
|
12751
|
-
/**
|
|
12752
|
-
|
|
12756
|
+
/**
|
|
12757
|
+
* How the service periods and trial state of the related order are managed when the quote is accepted.
|
|
12758
|
+
*
|
|
12759
|
+
* The `reset` and `retain` values are deprecated.
|
|
12760
|
+
* The deprecated `keepTrial` flag is ignored unless `reset` or `retain` is used.
|
|
12761
|
+
*/
|
|
12762
|
+
renewalPolicy?:
|
|
12763
|
+
| "resetToRecurring"
|
|
12764
|
+
| "retainRecurring"
|
|
12765
|
+
| "retainTrialThenRecurring"
|
|
12766
|
+
| "reset"
|
|
12767
|
+
| "retain";
|
|
12753
12768
|
/**
|
|
12754
12769
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
12755
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
12770
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring` or `retainTrialThenRecurring`,
|
|
12756
12771
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period length.
|
|
12757
12772
|
*/
|
|
12758
12773
|
prorated?: boolean;
|
|
@@ -12762,8 +12777,11 @@ export interface coreComponents {
|
|
|
12762
12777
|
*/
|
|
12763
12778
|
effectiveTime?: string | null;
|
|
12764
12779
|
/**
|
|
12780
|
+
* Deprecated.
|
|
12781
|
+
* Use the `retainTrialThenRecurring` value of `renewalPolicy` instead.
|
|
12782
|
+
*
|
|
12765
12783
|
* Specifies if the order must retain its active trial.
|
|
12766
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
12784
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
12767
12785
|
*/
|
|
12768
12786
|
keepTrial?: boolean;
|
|
12769
12787
|
/**
|
|
@@ -14547,12 +14565,23 @@ export interface coreComponents {
|
|
|
14547
14565
|
quantity?: number;
|
|
14548
14566
|
usageLimits?: coreComponents["schemas"]["UsageLimits"];
|
|
14549
14567
|
}[];
|
|
14550
|
-
/**
|
|
14551
|
-
|
|
14568
|
+
/**
|
|
14569
|
+
* How the service periods and trial state of the subscription order are managed when its items change.
|
|
14570
|
+
*
|
|
14571
|
+
* The `reset` and `retain` values are deprecated.
|
|
14572
|
+
* The deprecated `keepTrial` and `ignoreRecurring` are ignored unless `reset` or `retain` is used.
|
|
14573
|
+
*/
|
|
14574
|
+
renewalPolicy:
|
|
14575
|
+
| "resetToRecurring"
|
|
14576
|
+
| "retainRecurring"
|
|
14577
|
+
| "retainTrialThenRecurring"
|
|
14578
|
+
| "retainTrialOnly"
|
|
14579
|
+
| "reset"
|
|
14580
|
+
| "retain";
|
|
14552
14581
|
/**
|
|
14553
14582
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
14554
14583
|
*
|
|
14555
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
14584
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring`, `retainTrialThenRecurring` or `retainTrialOnly`,
|
|
14556
14585
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period size.
|
|
14557
14586
|
*/
|
|
14558
14587
|
prorated: boolean;
|
|
@@ -14567,14 +14596,20 @@ export interface coreComponents {
|
|
|
14567
14596
|
*/
|
|
14568
14597
|
preview?: boolean;
|
|
14569
14598
|
/**
|
|
14570
|
-
*
|
|
14571
|
-
*
|
|
14599
|
+
* Deprecated.
|
|
14600
|
+
* Use the `retainTrialThenRecurring` or `retainTrialOnly` value of `renewalPolicy` instead.
|
|
14601
|
+
*
|
|
14602
|
+
* Specifies if the order must retain its active trial.
|
|
14603
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
14572
14604
|
*/
|
|
14573
14605
|
keepTrial?: boolean;
|
|
14574
14606
|
/**
|
|
14575
|
-
*
|
|
14576
|
-
*
|
|
14577
|
-
*
|
|
14607
|
+
* Deprecated.
|
|
14608
|
+
* Use the `retainTrialOnly` value of `renewalPolicy` instead.
|
|
14609
|
+
*
|
|
14610
|
+
* Specifies if the order must ignore the recurring settings of its items.
|
|
14611
|
+
* This field is only applicable if the order is trial-only and the `keepTrial` value is `true`.
|
|
14612
|
+
* For more information, see [Trial-only order](https://www.rebilly.com/docs/dev-docs/subscriptions#trial-only-subscription).
|
|
14578
14613
|
*/
|
|
14579
14614
|
ignoreRecurring?: boolean;
|
|
14580
14615
|
};
|
|
@@ -14589,12 +14624,23 @@ export interface coreComponents {
|
|
|
14589
14624
|
quantity?: number;
|
|
14590
14625
|
usageLimits?: coreComponents["schemas"]["UsageLimits"];
|
|
14591
14626
|
}[];
|
|
14592
|
-
/**
|
|
14593
|
-
|
|
14627
|
+
/**
|
|
14628
|
+
* How the service periods and trial state of the subscription order are managed when its items change.
|
|
14629
|
+
*
|
|
14630
|
+
* The `reset` and `retain` values are deprecated.
|
|
14631
|
+
* The deprecated `keepTrial` and `ignoreRecurring` are ignored unless `reset` or `retain` is used.
|
|
14632
|
+
*/
|
|
14633
|
+
renewalPolicy:
|
|
14634
|
+
| "resetToRecurring"
|
|
14635
|
+
| "retainRecurring"
|
|
14636
|
+
| "retainTrialThenRecurring"
|
|
14637
|
+
| "retainTrialOnly"
|
|
14638
|
+
| "reset"
|
|
14639
|
+
| "retain";
|
|
14594
14640
|
/**
|
|
14595
14641
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
14596
14642
|
*
|
|
14597
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
14643
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring`, `retainTrialThenRecurring` or `retainTrialOnly`,
|
|
14598
14644
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period size.
|
|
14599
14645
|
*/
|
|
14600
14646
|
prorated: boolean;
|
|
@@ -14609,11 +14655,17 @@ export interface coreComponents {
|
|
|
14609
14655
|
*/
|
|
14610
14656
|
preview?: boolean;
|
|
14611
14657
|
/**
|
|
14658
|
+
* Deprecated.
|
|
14659
|
+
* Use the `retainTrialThenRecurring` or `retainTrialOnly` value of `renewalPolicy` instead.
|
|
14660
|
+
*
|
|
14612
14661
|
* Specifies if the order must retain its active trial.
|
|
14613
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
14662
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
14614
14663
|
*/
|
|
14615
14664
|
keepTrial?: boolean;
|
|
14616
14665
|
/**
|
|
14666
|
+
* Deprecated.
|
|
14667
|
+
* Use the `retainTrialOnly` value of `renewalPolicy` instead.
|
|
14668
|
+
*
|
|
14617
14669
|
* Specifies if the order must ignore the recurring settings of its items.
|
|
14618
14670
|
* This field is only applicable if the order is trial-only and the `keepTrial` value is `true`.
|
|
14619
14671
|
* For more information, see [Trial-only order](https://www.rebilly.com/docs/dev-docs/subscriptions#trial-only-subscription).
|
|
@@ -16495,6 +16547,8 @@ export interface coreComponents {
|
|
|
16495
16547
|
priority?: number;
|
|
16496
16548
|
/** Specifies if the deposit amount strategy is active. */
|
|
16497
16549
|
isActive?: boolean;
|
|
16550
|
+
/** Specifies if deposits created from this strategy are coin purchases that credit the coin balance instead of the cash balance. */
|
|
16551
|
+
coinPurchase?: boolean;
|
|
16498
16552
|
createdTime?: coreComponents["schemas"]["CreatedTime"];
|
|
16499
16553
|
updatedTime?: coreComponents["schemas"]["UpdatedTime"];
|
|
16500
16554
|
_links?: coreComponents["schemas"]["SelfLink"];
|
|
@@ -25917,11 +25971,21 @@ export interface coreComponents {
|
|
|
25917
25971
|
id?: string;
|
|
25918
25972
|
/** Items included in the quote. */
|
|
25919
25973
|
items?: coreComponents["schemas"]["QuoteItem"][];
|
|
25920
|
-
/**
|
|
25921
|
-
|
|
25974
|
+
/**
|
|
25975
|
+
* How the service periods and trial state of the related order are managed when the quote is accepted.
|
|
25976
|
+
*
|
|
25977
|
+
* The `reset` and `retain` values are deprecated.
|
|
25978
|
+
* The deprecated `keepTrial` flag is ignored unless `reset` or `retain` is used.
|
|
25979
|
+
*/
|
|
25980
|
+
renewalPolicy?:
|
|
25981
|
+
| "resetToRecurring"
|
|
25982
|
+
| "retainRecurring"
|
|
25983
|
+
| "retainTrialThenRecurring"
|
|
25984
|
+
| "reset"
|
|
25985
|
+
| "retain";
|
|
25922
25986
|
/**
|
|
25923
25987
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
25924
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
25988
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring` or `retainTrialThenRecurring`,
|
|
25925
25989
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period length.
|
|
25926
25990
|
*/
|
|
25927
25991
|
prorated?: boolean;
|
|
@@ -25931,8 +25995,11 @@ export interface coreComponents {
|
|
|
25931
25995
|
*/
|
|
25932
25996
|
effectiveTime?: string | null;
|
|
25933
25997
|
/**
|
|
25998
|
+
* Deprecated.
|
|
25999
|
+
* Use the `retainTrialThenRecurring` value of `renewalPolicy` instead.
|
|
26000
|
+
*
|
|
25934
26001
|
* Specifies if the order must retain its active trial.
|
|
25935
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
26002
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
25936
26003
|
*/
|
|
25937
26004
|
keepTrial?: boolean;
|
|
25938
26005
|
/**
|
|
@@ -51024,11 +51091,21 @@ export interface storefrontComponents {
|
|
|
51024
51091
|
id: string;
|
|
51025
51092
|
/** Items included in the quote. */
|
|
51026
51093
|
items: storefrontComponents["schemas"]["QuoteItem"][];
|
|
51027
|
-
/**
|
|
51028
|
-
|
|
51094
|
+
/**
|
|
51095
|
+
* How the service periods and trial state of the related order are managed when the quote is accepted.
|
|
51096
|
+
*
|
|
51097
|
+
* The `reset` and `retain` values are deprecated.
|
|
51098
|
+
* The deprecated `keepTrial` flag is ignored unless `reset` or `retain` is used.
|
|
51099
|
+
*/
|
|
51100
|
+
renewalPolicy?:
|
|
51101
|
+
| "resetToRecurring"
|
|
51102
|
+
| "retainRecurring"
|
|
51103
|
+
| "retainTrialThenRecurring"
|
|
51104
|
+
| "reset"
|
|
51105
|
+
| "retain";
|
|
51029
51106
|
/**
|
|
51030
51107
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
51031
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
51108
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring` or `retainTrialThenRecurring`,
|
|
51032
51109
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period length.
|
|
51033
51110
|
*/
|
|
51034
51111
|
prorated?: boolean;
|
|
@@ -51038,8 +51115,11 @@ export interface storefrontComponents {
|
|
|
51038
51115
|
*/
|
|
51039
51116
|
effectiveTime?: string | null;
|
|
51040
51117
|
/**
|
|
51118
|
+
* Deprecated.
|
|
51119
|
+
* Use the `retainTrialThenRecurring` value of `renewalPolicy` instead.
|
|
51120
|
+
*
|
|
51041
51121
|
* Specifies if the order must retain its active trial.
|
|
51042
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
51122
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
51043
51123
|
*/
|
|
51044
51124
|
keepTrial?: boolean;
|
|
51045
51125
|
/**
|
|
@@ -52823,12 +52903,23 @@ export interface storefrontComponents {
|
|
|
52823
52903
|
quantity?: number;
|
|
52824
52904
|
usageLimits?: storefrontComponents["schemas"]["UsageLimits"];
|
|
52825
52905
|
}[];
|
|
52826
|
-
/**
|
|
52827
|
-
|
|
52906
|
+
/**
|
|
52907
|
+
* How the service periods and trial state of the subscription order are managed when its items change.
|
|
52908
|
+
*
|
|
52909
|
+
* The `reset` and `retain` values are deprecated.
|
|
52910
|
+
* The deprecated `keepTrial` and `ignoreRecurring` are ignored unless `reset` or `retain` is used.
|
|
52911
|
+
*/
|
|
52912
|
+
renewalPolicy:
|
|
52913
|
+
| "resetToRecurring"
|
|
52914
|
+
| "retainRecurring"
|
|
52915
|
+
| "retainTrialThenRecurring"
|
|
52916
|
+
| "retainTrialOnly"
|
|
52917
|
+
| "reset"
|
|
52918
|
+
| "retain";
|
|
52828
52919
|
/**
|
|
52829
52920
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
52830
52921
|
*
|
|
52831
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
52922
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring`, `retainTrialThenRecurring` or `retainTrialOnly`,
|
|
52832
52923
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period size.
|
|
52833
52924
|
*/
|
|
52834
52925
|
prorated: boolean;
|
|
@@ -52843,14 +52934,20 @@ export interface storefrontComponents {
|
|
|
52843
52934
|
*/
|
|
52844
52935
|
preview?: boolean;
|
|
52845
52936
|
/**
|
|
52846
|
-
*
|
|
52847
|
-
*
|
|
52937
|
+
* Deprecated.
|
|
52938
|
+
* Use the `retainTrialThenRecurring` or `retainTrialOnly` value of `renewalPolicy` instead.
|
|
52939
|
+
*
|
|
52940
|
+
* Specifies if the order must retain its active trial.
|
|
52941
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
52848
52942
|
*/
|
|
52849
52943
|
keepTrial?: boolean;
|
|
52850
52944
|
/**
|
|
52851
|
-
*
|
|
52852
|
-
*
|
|
52853
|
-
*
|
|
52945
|
+
* Deprecated.
|
|
52946
|
+
* Use the `retainTrialOnly` value of `renewalPolicy` instead.
|
|
52947
|
+
*
|
|
52948
|
+
* Specifies if the order must ignore the recurring settings of its items.
|
|
52949
|
+
* This field is only applicable if the order is trial-only and the `keepTrial` value is `true`.
|
|
52950
|
+
* For more information, see [Trial-only order](https://www.rebilly.com/docs/dev-docs/subscriptions#trial-only-subscription).
|
|
52854
52951
|
*/
|
|
52855
52952
|
ignoreRecurring?: boolean;
|
|
52856
52953
|
};
|
|
@@ -52865,12 +52962,23 @@ export interface storefrontComponents {
|
|
|
52865
52962
|
quantity?: number;
|
|
52866
52963
|
usageLimits?: storefrontComponents["schemas"]["UsageLimits"];
|
|
52867
52964
|
}[];
|
|
52868
|
-
/**
|
|
52869
|
-
|
|
52965
|
+
/**
|
|
52966
|
+
* How the service periods and trial state of the subscription order are managed when its items change.
|
|
52967
|
+
*
|
|
52968
|
+
* The `reset` and `retain` values are deprecated.
|
|
52969
|
+
* The deprecated `keepTrial` and `ignoreRecurring` are ignored unless `reset` or `retain` is used.
|
|
52970
|
+
*/
|
|
52971
|
+
renewalPolicy:
|
|
52972
|
+
| "resetToRecurring"
|
|
52973
|
+
| "retainRecurring"
|
|
52974
|
+
| "retainTrialThenRecurring"
|
|
52975
|
+
| "retainTrialOnly"
|
|
52976
|
+
| "reset"
|
|
52977
|
+
| "retain";
|
|
52870
52978
|
/**
|
|
52871
52979
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
52872
52980
|
*
|
|
52873
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
52981
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring`, `retainTrialThenRecurring` or `retainTrialOnly`,
|
|
52874
52982
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period size.
|
|
52875
52983
|
*/
|
|
52876
52984
|
prorated: boolean;
|
|
@@ -52885,11 +52993,17 @@ export interface storefrontComponents {
|
|
|
52885
52993
|
*/
|
|
52886
52994
|
preview?: boolean;
|
|
52887
52995
|
/**
|
|
52996
|
+
* Deprecated.
|
|
52997
|
+
* Use the `retainTrialThenRecurring` or `retainTrialOnly` value of `renewalPolicy` instead.
|
|
52998
|
+
*
|
|
52888
52999
|
* Specifies if the order must retain its active trial.
|
|
52889
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
53000
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
52890
53001
|
*/
|
|
52891
53002
|
keepTrial?: boolean;
|
|
52892
53003
|
/**
|
|
53004
|
+
* Deprecated.
|
|
53005
|
+
* Use the `retainTrialOnly` value of `renewalPolicy` instead.
|
|
53006
|
+
*
|
|
52893
53007
|
* Specifies if the order must ignore the recurring settings of its items.
|
|
52894
53008
|
* This field is only applicable if the order is trial-only and the `keepTrial` value is `true`.
|
|
52895
53009
|
* For more information, see [Trial-only order](https://www.rebilly.com/docs/dev-docs/subscriptions#trial-only-subscription).
|
|
@@ -54771,6 +54885,8 @@ export interface storefrontComponents {
|
|
|
54771
54885
|
priority?: number;
|
|
54772
54886
|
/** Specifies if the deposit amount strategy is active. */
|
|
54773
54887
|
isActive?: boolean;
|
|
54888
|
+
/** Specifies if deposits created from this strategy are coin purchases that credit the coin balance instead of the cash balance. */
|
|
54889
|
+
coinPurchase?: boolean;
|
|
54774
54890
|
createdTime?: storefrontComponents["schemas"]["CreatedTime"];
|
|
54775
54891
|
updatedTime?: storefrontComponents["schemas"]["UpdatedTime"];
|
|
54776
54892
|
_links?: storefrontComponents["schemas"]["SelfLink"];
|
|
@@ -64193,11 +64309,21 @@ export interface storefrontComponents {
|
|
|
64193
64309
|
id?: string;
|
|
64194
64310
|
/** Items included in the quote. */
|
|
64195
64311
|
items?: storefrontComponents["schemas"]["QuoteItem"][];
|
|
64196
|
-
/**
|
|
64197
|
-
|
|
64312
|
+
/**
|
|
64313
|
+
* How the service periods and trial state of the related order are managed when the quote is accepted.
|
|
64314
|
+
*
|
|
64315
|
+
* The `reset` and `retain` values are deprecated.
|
|
64316
|
+
* The deprecated `keepTrial` flag is ignored unless `reset` or `retain` is used.
|
|
64317
|
+
*/
|
|
64318
|
+
renewalPolicy?:
|
|
64319
|
+
| "resetToRecurring"
|
|
64320
|
+
| "retainRecurring"
|
|
64321
|
+
| "retainTrialThenRecurring"
|
|
64322
|
+
| "reset"
|
|
64323
|
+
| "retain";
|
|
64198
64324
|
/**
|
|
64199
64325
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
64200
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
64326
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring` or `retainTrialThenRecurring`,
|
|
64201
64327
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period length.
|
|
64202
64328
|
*/
|
|
64203
64329
|
prorated?: boolean;
|
|
@@ -64207,8 +64333,11 @@ export interface storefrontComponents {
|
|
|
64207
64333
|
*/
|
|
64208
64334
|
effectiveTime?: string | null;
|
|
64209
64335
|
/**
|
|
64336
|
+
* Deprecated.
|
|
64337
|
+
* Use the `retainTrialThenRecurring` value of `renewalPolicy` instead.
|
|
64338
|
+
*
|
|
64210
64339
|
* Specifies if the order must retain its active trial.
|
|
64211
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
64340
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
64212
64341
|
*/
|
|
64213
64342
|
keepTrial?: boolean;
|
|
64214
64343
|
/**
|
|
@@ -76759,11 +76888,21 @@ export interface reportsComponents {
|
|
|
76759
76888
|
id: string;
|
|
76760
76889
|
/** Items included in the quote. */
|
|
76761
76890
|
items: reportsComponents["schemas"]["QuoteItem"][];
|
|
76762
|
-
/**
|
|
76763
|
-
|
|
76891
|
+
/**
|
|
76892
|
+
* How the service periods and trial state of the related order are managed when the quote is accepted.
|
|
76893
|
+
*
|
|
76894
|
+
* The `reset` and `retain` values are deprecated.
|
|
76895
|
+
* The deprecated `keepTrial` flag is ignored unless `reset` or `retain` is used.
|
|
76896
|
+
*/
|
|
76897
|
+
renewalPolicy?:
|
|
76898
|
+
| "resetToRecurring"
|
|
76899
|
+
| "retainRecurring"
|
|
76900
|
+
| "retainTrialThenRecurring"
|
|
76901
|
+
| "reset"
|
|
76902
|
+
| "retain";
|
|
76764
76903
|
/**
|
|
76765
76904
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
76766
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
76905
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring` or `retainTrialThenRecurring`,
|
|
76767
76906
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period length.
|
|
76768
76907
|
*/
|
|
76769
76908
|
prorated?: boolean;
|
|
@@ -76773,8 +76912,11 @@ export interface reportsComponents {
|
|
|
76773
76912
|
*/
|
|
76774
76913
|
effectiveTime?: string | null;
|
|
76775
76914
|
/**
|
|
76915
|
+
* Deprecated.
|
|
76916
|
+
* Use the `retainTrialThenRecurring` value of `renewalPolicy` instead.
|
|
76917
|
+
*
|
|
76776
76918
|
* Specifies if the order must retain its active trial.
|
|
76777
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
76919
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
76778
76920
|
*/
|
|
76779
76921
|
keepTrial?: boolean;
|
|
76780
76922
|
/**
|
|
@@ -78558,12 +78700,23 @@ export interface reportsComponents {
|
|
|
78558
78700
|
quantity?: number;
|
|
78559
78701
|
usageLimits?: reportsComponents["schemas"]["UsageLimits"];
|
|
78560
78702
|
}[];
|
|
78561
|
-
/**
|
|
78562
|
-
|
|
78703
|
+
/**
|
|
78704
|
+
* How the service periods and trial state of the subscription order are managed when its items change.
|
|
78705
|
+
*
|
|
78706
|
+
* The `reset` and `retain` values are deprecated.
|
|
78707
|
+
* The deprecated `keepTrial` and `ignoreRecurring` are ignored unless `reset` or `retain` is used.
|
|
78708
|
+
*/
|
|
78709
|
+
renewalPolicy:
|
|
78710
|
+
| "resetToRecurring"
|
|
78711
|
+
| "retainRecurring"
|
|
78712
|
+
| "retainTrialThenRecurring"
|
|
78713
|
+
| "retainTrialOnly"
|
|
78714
|
+
| "reset"
|
|
78715
|
+
| "retain";
|
|
78563
78716
|
/**
|
|
78564
78717
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
78565
78718
|
*
|
|
78566
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
78719
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring`, `retainTrialThenRecurring` or `retainTrialOnly`,
|
|
78567
78720
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period size.
|
|
78568
78721
|
*/
|
|
78569
78722
|
prorated: boolean;
|
|
@@ -78578,14 +78731,20 @@ export interface reportsComponents {
|
|
|
78578
78731
|
*/
|
|
78579
78732
|
preview?: boolean;
|
|
78580
78733
|
/**
|
|
78581
|
-
*
|
|
78582
|
-
*
|
|
78734
|
+
* Deprecated.
|
|
78735
|
+
* Use the `retainTrialThenRecurring` or `retainTrialOnly` value of `renewalPolicy` instead.
|
|
78736
|
+
*
|
|
78737
|
+
* Specifies if the order must retain its active trial.
|
|
78738
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
78583
78739
|
*/
|
|
78584
78740
|
keepTrial?: boolean;
|
|
78585
78741
|
/**
|
|
78586
|
-
*
|
|
78587
|
-
*
|
|
78588
|
-
*
|
|
78742
|
+
* Deprecated.
|
|
78743
|
+
* Use the `retainTrialOnly` value of `renewalPolicy` instead.
|
|
78744
|
+
*
|
|
78745
|
+
* Specifies if the order must ignore the recurring settings of its items.
|
|
78746
|
+
* This field is only applicable if the order is trial-only and the `keepTrial` value is `true`.
|
|
78747
|
+
* For more information, see [Trial-only order](https://www.rebilly.com/docs/dev-docs/subscriptions#trial-only-subscription).
|
|
78589
78748
|
*/
|
|
78590
78749
|
ignoreRecurring?: boolean;
|
|
78591
78750
|
};
|
|
@@ -78600,12 +78759,23 @@ export interface reportsComponents {
|
|
|
78600
78759
|
quantity?: number;
|
|
78601
78760
|
usageLimits?: reportsComponents["schemas"]["UsageLimits"];
|
|
78602
78761
|
}[];
|
|
78603
|
-
/**
|
|
78604
|
-
|
|
78762
|
+
/**
|
|
78763
|
+
* How the service periods and trial state of the subscription order are managed when its items change.
|
|
78764
|
+
*
|
|
78765
|
+
* The `reset` and `retain` values are deprecated.
|
|
78766
|
+
* The deprecated `keepTrial` and `ignoreRecurring` are ignored unless `reset` or `retain` is used.
|
|
78767
|
+
*/
|
|
78768
|
+
renewalPolicy:
|
|
78769
|
+
| "resetToRecurring"
|
|
78770
|
+
| "retainRecurring"
|
|
78771
|
+
| "retainTrialThenRecurring"
|
|
78772
|
+
| "retainTrialOnly"
|
|
78773
|
+
| "reset"
|
|
78774
|
+
| "retain";
|
|
78605
78775
|
/**
|
|
78606
78776
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
78607
78777
|
*
|
|
78608
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
78778
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring`, `retainTrialThenRecurring` or `retainTrialOnly`,
|
|
78609
78779
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period size.
|
|
78610
78780
|
*/
|
|
78611
78781
|
prorated: boolean;
|
|
@@ -78620,11 +78790,17 @@ export interface reportsComponents {
|
|
|
78620
78790
|
*/
|
|
78621
78791
|
preview?: boolean;
|
|
78622
78792
|
/**
|
|
78793
|
+
* Deprecated.
|
|
78794
|
+
* Use the `retainTrialThenRecurring` or `retainTrialOnly` value of `renewalPolicy` instead.
|
|
78795
|
+
*
|
|
78623
78796
|
* Specifies if the order must retain its active trial.
|
|
78624
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
78797
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
78625
78798
|
*/
|
|
78626
78799
|
keepTrial?: boolean;
|
|
78627
78800
|
/**
|
|
78801
|
+
* Deprecated.
|
|
78802
|
+
* Use the `retainTrialOnly` value of `renewalPolicy` instead.
|
|
78803
|
+
*
|
|
78628
78804
|
* Specifies if the order must ignore the recurring settings of its items.
|
|
78629
78805
|
* This field is only applicable if the order is trial-only and the `keepTrial` value is `true`.
|
|
78630
78806
|
* For more information, see [Trial-only order](https://www.rebilly.com/docs/dev-docs/subscriptions#trial-only-subscription).
|
|
@@ -80506,6 +80682,8 @@ export interface reportsComponents {
|
|
|
80506
80682
|
priority?: number;
|
|
80507
80683
|
/** Specifies if the deposit amount strategy is active. */
|
|
80508
80684
|
isActive?: boolean;
|
|
80685
|
+
/** Specifies if deposits created from this strategy are coin purchases that credit the coin balance instead of the cash balance. */
|
|
80686
|
+
coinPurchase?: boolean;
|
|
80509
80687
|
createdTime?: reportsComponents["schemas"]["CreatedTime"];
|
|
80510
80688
|
updatedTime?: reportsComponents["schemas"]["UpdatedTime"];
|
|
80511
80689
|
_links?: reportsComponents["schemas"]["SelfLink"];
|
|
@@ -89928,11 +90106,21 @@ export interface reportsComponents {
|
|
|
89928
90106
|
id?: string;
|
|
89929
90107
|
/** Items included in the quote. */
|
|
89930
90108
|
items?: reportsComponents["schemas"]["QuoteItem"][];
|
|
89931
|
-
/**
|
|
89932
|
-
|
|
90109
|
+
/**
|
|
90110
|
+
* How the service periods and trial state of the related order are managed when the quote is accepted.
|
|
90111
|
+
*
|
|
90112
|
+
* The `reset` and `retain` values are deprecated.
|
|
90113
|
+
* The deprecated `keepTrial` flag is ignored unless `reset` or `retain` is used.
|
|
90114
|
+
*/
|
|
90115
|
+
renewalPolicy?:
|
|
90116
|
+
| "resetToRecurring"
|
|
90117
|
+
| "retainRecurring"
|
|
90118
|
+
| "retainTrialThenRecurring"
|
|
90119
|
+
| "reset"
|
|
90120
|
+
| "retain";
|
|
89933
90121
|
/**
|
|
89934
90122
|
* Specifies whether to give a pro rata credit for the amount of time remaining between the `effectiveTime` and the end of the current period.
|
|
89935
|
-
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `
|
|
90123
|
+
* In addition, if the `renewalTime` is retained, by setting the `renewalPolicy` to `retainRecurring` or `retainTrialThenRecurring`,
|
|
89936
90124
|
* a pro rata debit occurs for the amount between the `effectiveTime` and the `renewalTime` as a percentage of the normal period length.
|
|
89937
90125
|
*/
|
|
89938
90126
|
prorated?: boolean;
|
|
@@ -89942,8 +90130,11 @@ export interface reportsComponents {
|
|
|
89942
90130
|
*/
|
|
89943
90131
|
effectiveTime?: string | null;
|
|
89944
90132
|
/**
|
|
90133
|
+
* Deprecated.
|
|
90134
|
+
* Use the `retainTrialThenRecurring` value of `renewalPolicy` instead.
|
|
90135
|
+
*
|
|
89945
90136
|
* Specifies if the order must retain its active trial.
|
|
89946
|
-
* This field is only applicable if `renewalPolicy` is set to `retain`.
|
|
90137
|
+
* This field is only applicable if `renewalPolicy` is set to the deprecated value `retain`.
|
|
89947
90138
|
*/
|
|
89948
90139
|
keepTrial?: boolean;
|
|
89949
90140
|
/**
|
|
@@ -95288,6 +95479,1865 @@ export interface operations {
|
|
|
95288
95479
|
|
|
95289
95480
|
}
|
|
95290
95481
|
|
|
95482
|
+
declare module "rebilly-js-sdk" {
|
|
95483
|
+
export type Expandable<T> = rebilly.Expandable<T>;
|
|
95484
|
+
|
|
95485
|
+
export type operations = rebilly.operations;
|
|
95486
|
+
export type corePaths = rebilly.corePaths;
|
|
95487
|
+
export type coreComponents = rebilly.coreComponents;
|
|
95488
|
+
export type storefrontPaths = rebilly.storefrontPaths;
|
|
95489
|
+
export type storefrontComponents = rebilly.storefrontComponents;
|
|
95490
|
+
export type reportsPaths = rebilly.reportsPaths;
|
|
95491
|
+
export type reportsComponents = rebilly.reportsComponents;
|
|
95492
|
+
export type GetAccountRegistrationSettingsCollectionRequest = rebilly.GetAccountRegistrationSettingsCollectionRequest;
|
|
95493
|
+
export type GetAccountRegistrationSettingsCollectionResponse = rebilly.GetAccountRegistrationSettingsCollectionResponse;
|
|
95494
|
+
export type GetAccountRegistrationSettingsCollectionResponsePromise = rebilly.GetAccountRegistrationSettingsCollectionResponsePromise;
|
|
95495
|
+
export type PostAccountRegistrationSettingsRequest = rebilly.PostAccountRegistrationSettingsRequest;
|
|
95496
|
+
export type CreateAccountRegistrationSettingsRequest = rebilly.CreateAccountRegistrationSettingsRequest;
|
|
95497
|
+
export type PostAccountRegistrationSettingsResponse = rebilly.PostAccountRegistrationSettingsResponse;
|
|
95498
|
+
export type PostAccountRegistrationSettingsResponsePromise = rebilly.PostAccountRegistrationSettingsResponsePromise;
|
|
95499
|
+
export type GetAccountRegistrationSettingsRequest = rebilly.GetAccountRegistrationSettingsRequest;
|
|
95500
|
+
export type GetAccountRegistrationSettingsResponse = rebilly.GetAccountRegistrationSettingsResponse;
|
|
95501
|
+
export type GetAccountRegistrationSettingsResponsePromise = rebilly.GetAccountRegistrationSettingsResponsePromise;
|
|
95502
|
+
export type PutAccountRegistrationSettingsRequest = rebilly.PutAccountRegistrationSettingsRequest;
|
|
95503
|
+
export type PutAccountRegistrationSettingsResponse = rebilly.PutAccountRegistrationSettingsResponse;
|
|
95504
|
+
export type PutAccountRegistrationSettingsResponsePromise = rebilly.PutAccountRegistrationSettingsResponsePromise;
|
|
95505
|
+
export type DeleteAccountRegistrationSettingsResponse = rebilly.DeleteAccountRegistrationSettingsResponse;
|
|
95506
|
+
export type DeleteAccountRegistrationSettingsResponsePromise = rebilly.DeleteAccountRegistrationSettingsResponsePromise;
|
|
95507
|
+
export type GetAmlCheckCollectionRequest = rebilly.GetAmlCheckCollectionRequest;
|
|
95508
|
+
export type GetAmlCheckCollectionResponse = rebilly.GetAmlCheckCollectionResponse;
|
|
95509
|
+
export type GetAmlCheckCollectionResponsePromise = rebilly.GetAmlCheckCollectionResponsePromise;
|
|
95510
|
+
export type GetAmlCheckRequest = rebilly.GetAmlCheckRequest;
|
|
95511
|
+
export type GetAmlCheckResponse = rebilly.GetAmlCheckResponse;
|
|
95512
|
+
export type GetAmlCheckResponsePromise = rebilly.GetAmlCheckResponsePromise;
|
|
95513
|
+
export type PostAmlCheckStartReviewResponse = rebilly.PostAmlCheckStartReviewResponse;
|
|
95514
|
+
export type PostAmlCheckStartReviewResponsePromise = rebilly.PostAmlCheckStartReviewResponsePromise;
|
|
95515
|
+
export type PostAmlCheckStopReviewResponse = rebilly.PostAmlCheckStopReviewResponse;
|
|
95516
|
+
export type PostAmlCheckStopReviewResponsePromise = rebilly.PostAmlCheckStopReviewResponsePromise;
|
|
95517
|
+
export type PostAmlCheckReviewRequest = rebilly.PostAmlCheckReviewRequest;
|
|
95518
|
+
export type CreateAmlCheckReviewRequest = rebilly.CreateAmlCheckReviewRequest;
|
|
95519
|
+
export type PostAmlCheckReviewResponse = rebilly.PostAmlCheckReviewResponse;
|
|
95520
|
+
export type PostAmlCheckReviewResponsePromise = rebilly.PostAmlCheckReviewResponsePromise;
|
|
95521
|
+
export type GetAmlSettingsResponse = rebilly.GetAmlSettingsResponse;
|
|
95522
|
+
export type GetAmlSettingsResponsePromise = rebilly.GetAmlSettingsResponsePromise;
|
|
95523
|
+
export type PutAmlSettingsRequest = rebilly.PutAmlSettingsRequest;
|
|
95524
|
+
export type PutAmlSettingsResponse = rebilly.PutAmlSettingsResponse;
|
|
95525
|
+
export type PutAmlSettingsResponsePromise = rebilly.PutAmlSettingsResponsePromise;
|
|
95526
|
+
export type GetAttachmentCollectionRequest = rebilly.GetAttachmentCollectionRequest;
|
|
95527
|
+
export type GetAttachmentCollectionResponse = rebilly.GetAttachmentCollectionResponse;
|
|
95528
|
+
export type GetAttachmentCollectionResponsePromise = rebilly.GetAttachmentCollectionResponsePromise;
|
|
95529
|
+
export type PostAttachmentRequest = rebilly.PostAttachmentRequest;
|
|
95530
|
+
export type CreateAttachmentRequest = rebilly.CreateAttachmentRequest;
|
|
95531
|
+
export type PostAttachmentResponse = rebilly.PostAttachmentResponse;
|
|
95532
|
+
export type PostAttachmentResponsePromise = rebilly.PostAttachmentResponsePromise;
|
|
95533
|
+
export type GetAttachmentRequest = rebilly.GetAttachmentRequest;
|
|
95534
|
+
export type GetAttachmentResponse = rebilly.GetAttachmentResponse;
|
|
95535
|
+
export type GetAttachmentResponsePromise = rebilly.GetAttachmentResponsePromise;
|
|
95536
|
+
export type PutAttachmentRequest = rebilly.PutAttachmentRequest;
|
|
95537
|
+
export type PutAttachmentResponse = rebilly.PutAttachmentResponse;
|
|
95538
|
+
export type PutAttachmentResponsePromise = rebilly.PutAttachmentResponsePromise;
|
|
95539
|
+
export type DeleteAttachmentResponse = rebilly.DeleteAttachmentResponse;
|
|
95540
|
+
export type DeleteAttachmentResponsePromise = rebilly.DeleteAttachmentResponsePromise;
|
|
95541
|
+
export type GetAuthenticationOptionResponse = rebilly.GetAuthenticationOptionResponse;
|
|
95542
|
+
export type GetAuthenticationOptionResponsePromise = rebilly.GetAuthenticationOptionResponsePromise;
|
|
95543
|
+
export type PutAuthenticationOptionRequest = rebilly.PutAuthenticationOptionRequest;
|
|
95544
|
+
export type PutAuthenticationOptionResponse = rebilly.PutAuthenticationOptionResponse;
|
|
95545
|
+
export type PutAuthenticationOptionResponsePromise = rebilly.PutAuthenticationOptionResponsePromise;
|
|
95546
|
+
export type GetAuthenticationTokenCollectionRequest = rebilly.GetAuthenticationTokenCollectionRequest;
|
|
95547
|
+
export type GetAuthenticationTokenCollectionResponse = rebilly.GetAuthenticationTokenCollectionResponse;
|
|
95548
|
+
export type GetAuthenticationTokenCollectionResponsePromise = rebilly.GetAuthenticationTokenCollectionResponsePromise;
|
|
95549
|
+
export type PostAuthenticationTokenRequest = rebilly.PostAuthenticationTokenRequest;
|
|
95550
|
+
export type CreateAuthenticationTokenRequest = rebilly.CreateAuthenticationTokenRequest;
|
|
95551
|
+
export type PostAuthenticationTokenResponse = rebilly.PostAuthenticationTokenResponse;
|
|
95552
|
+
export type PostAuthenticationTokenResponsePromise = rebilly.PostAuthenticationTokenResponsePromise;
|
|
95553
|
+
export type GetAuthenticationTokenVerificationRequest = rebilly.GetAuthenticationTokenVerificationRequest;
|
|
95554
|
+
export type GetAuthenticationTokenVerificationResponse = rebilly.GetAuthenticationTokenVerificationResponse;
|
|
95555
|
+
export type GetAuthenticationTokenVerificationResponsePromise = rebilly.GetAuthenticationTokenVerificationResponsePromise;
|
|
95556
|
+
export type DeleteAuthenticationTokenResponse = rebilly.DeleteAuthenticationTokenResponse;
|
|
95557
|
+
export type DeleteAuthenticationTokenResponsePromise = rebilly.DeleteAuthenticationTokenResponsePromise;
|
|
95558
|
+
export type PostAuthenticationTokenExchangeRequest = rebilly.PostAuthenticationTokenExchangeRequest;
|
|
95559
|
+
export type CreateAuthenticationTokenExchangeRequest = rebilly.CreateAuthenticationTokenExchangeRequest;
|
|
95560
|
+
export type PostAuthenticationTokenExchangeResponse = rebilly.PostAuthenticationTokenExchangeResponse;
|
|
95561
|
+
export type PostAuthenticationTokenExchangeResponsePromise = rebilly.PostAuthenticationTokenExchangeResponsePromise;
|
|
95562
|
+
export type GetBlocklistCollectionRequest = rebilly.GetBlocklistCollectionRequest;
|
|
95563
|
+
export type GetBlocklistCollectionResponse = rebilly.GetBlocklistCollectionResponse;
|
|
95564
|
+
export type GetBlocklistCollectionResponsePromise = rebilly.GetBlocklistCollectionResponsePromise;
|
|
95565
|
+
export type PostBlocklistRequest = rebilly.PostBlocklistRequest;
|
|
95566
|
+
export type CreateBlocklistRequest = rebilly.CreateBlocklistRequest;
|
|
95567
|
+
export type PostBlocklistResponse = rebilly.PostBlocklistResponse;
|
|
95568
|
+
export type PostBlocklistResponsePromise = rebilly.PostBlocklistResponsePromise;
|
|
95569
|
+
export type GetBlocklistRequest = rebilly.GetBlocklistRequest;
|
|
95570
|
+
export type GetBlocklistResponse = rebilly.GetBlocklistResponse;
|
|
95571
|
+
export type GetBlocklistResponsePromise = rebilly.GetBlocklistResponsePromise;
|
|
95572
|
+
export type PutBlocklistRequest = rebilly.PutBlocklistRequest;
|
|
95573
|
+
export type PutBlocklistResponse = rebilly.PutBlocklistResponse;
|
|
95574
|
+
export type PutBlocklistResponsePromise = rebilly.PutBlocklistResponsePromise;
|
|
95575
|
+
export type DeleteBlocklistResponse = rebilly.DeleteBlocklistResponse;
|
|
95576
|
+
export type DeleteBlocklistResponsePromise = rebilly.DeleteBlocklistResponsePromise;
|
|
95577
|
+
export type GetCouponRedemptionCollectionRequest = rebilly.GetCouponRedemptionCollectionRequest;
|
|
95578
|
+
export type GetCouponRedemptionCollectionResponse = rebilly.GetCouponRedemptionCollectionResponse;
|
|
95579
|
+
export type GetCouponRedemptionCollectionResponsePromise = rebilly.GetCouponRedemptionCollectionResponsePromise;
|
|
95580
|
+
export type PostCouponRedemptionRequest = rebilly.PostCouponRedemptionRequest;
|
|
95581
|
+
export type CreateCouponRedemptionRequest = rebilly.CreateCouponRedemptionRequest;
|
|
95582
|
+
export type PostCouponRedemptionResponse = rebilly.PostCouponRedemptionResponse;
|
|
95583
|
+
export type PostCouponRedemptionResponsePromise = rebilly.PostCouponRedemptionResponsePromise;
|
|
95584
|
+
export type GetCouponRedemptionRequest = rebilly.GetCouponRedemptionRequest;
|
|
95585
|
+
export type GetCouponRedemptionResponse = rebilly.GetCouponRedemptionResponse;
|
|
95586
|
+
export type GetCouponRedemptionResponsePromise = rebilly.GetCouponRedemptionResponsePromise;
|
|
95587
|
+
export type PostCouponRedemptionCancellationResponse = rebilly.PostCouponRedemptionCancellationResponse;
|
|
95588
|
+
export type PostCouponRedemptionCancellationResponsePromise = rebilly.PostCouponRedemptionCancellationResponsePromise;
|
|
95589
|
+
export type GetCouponCollectionRequest = rebilly.GetCouponCollectionRequest;
|
|
95590
|
+
export type GetCouponCollectionResponse = rebilly.GetCouponCollectionResponse;
|
|
95591
|
+
export type GetCouponCollectionResponsePromise = rebilly.GetCouponCollectionResponsePromise;
|
|
95592
|
+
export type PostCouponRequest = rebilly.PostCouponRequest;
|
|
95593
|
+
export type CreateCouponRequest = rebilly.CreateCouponRequest;
|
|
95594
|
+
export type PostCouponResponse = rebilly.PostCouponResponse;
|
|
95595
|
+
export type PostCouponResponsePromise = rebilly.PostCouponResponsePromise;
|
|
95596
|
+
export type GetCouponRequest = rebilly.GetCouponRequest;
|
|
95597
|
+
export type GetCouponResponse = rebilly.GetCouponResponse;
|
|
95598
|
+
export type GetCouponResponsePromise = rebilly.GetCouponResponsePromise;
|
|
95599
|
+
export type PutCouponRequest = rebilly.PutCouponRequest;
|
|
95600
|
+
export type PutCouponResponse = rebilly.PutCouponResponse;
|
|
95601
|
+
export type PutCouponResponsePromise = rebilly.PutCouponResponsePromise;
|
|
95602
|
+
export type PostCouponExpirationRequest = rebilly.PostCouponExpirationRequest;
|
|
95603
|
+
export type CreateCouponExpirationRequest = rebilly.CreateCouponExpirationRequest;
|
|
95604
|
+
export type PostCouponExpirationResponse = rebilly.PostCouponExpirationResponse;
|
|
95605
|
+
export type PostCouponExpirationResponsePromise = rebilly.PostCouponExpirationResponsePromise;
|
|
95606
|
+
export type GetCredentialCollectionRequest = rebilly.GetCredentialCollectionRequest;
|
|
95607
|
+
export type GetCredentialCollectionResponse = rebilly.GetCredentialCollectionResponse;
|
|
95608
|
+
export type GetCredentialCollectionResponsePromise = rebilly.GetCredentialCollectionResponsePromise;
|
|
95609
|
+
export type PostCredentialRequest = rebilly.PostCredentialRequest;
|
|
95610
|
+
export type CreateCredentialRequest = rebilly.CreateCredentialRequest;
|
|
95611
|
+
export type PostCredentialResponse = rebilly.PostCredentialResponse;
|
|
95612
|
+
export type PostCredentialResponsePromise = rebilly.PostCredentialResponsePromise;
|
|
95613
|
+
export type GetCredentialRequest = rebilly.GetCredentialRequest;
|
|
95614
|
+
export type GetCredentialResponse = rebilly.GetCredentialResponse;
|
|
95615
|
+
export type GetCredentialResponsePromise = rebilly.GetCredentialResponsePromise;
|
|
95616
|
+
export type PutCredentialRequest = rebilly.PutCredentialRequest;
|
|
95617
|
+
export type PutCredentialResponse = rebilly.PutCredentialResponse;
|
|
95618
|
+
export type PutCredentialResponsePromise = rebilly.PutCredentialResponsePromise;
|
|
95619
|
+
export type DeleteCredentialResponse = rebilly.DeleteCredentialResponse;
|
|
95620
|
+
export type DeleteCredentialResponsePromise = rebilly.DeleteCredentialResponsePromise;
|
|
95621
|
+
export type GetCustomFieldCollectionRequest = rebilly.GetCustomFieldCollectionRequest;
|
|
95622
|
+
export type GetCustomFieldCollectionResponse = rebilly.GetCustomFieldCollectionResponse;
|
|
95623
|
+
export type GetCustomFieldCollectionResponsePromise = rebilly.GetCustomFieldCollectionResponsePromise;
|
|
95624
|
+
export type GetCustomFieldRequest = rebilly.GetCustomFieldRequest;
|
|
95625
|
+
export type GetCustomFieldResponse = rebilly.GetCustomFieldResponse;
|
|
95626
|
+
export type GetCustomFieldResponsePromise = rebilly.GetCustomFieldResponsePromise;
|
|
95627
|
+
export type PutCustomFieldRequest = rebilly.PutCustomFieldRequest;
|
|
95628
|
+
export type PutCustomFieldResponse = rebilly.PutCustomFieldResponse;
|
|
95629
|
+
export type PutCustomFieldResponsePromise = rebilly.PutCustomFieldResponsePromise;
|
|
95630
|
+
export type GetCustomerCollectionRequest = rebilly.GetCustomerCollectionRequest;
|
|
95631
|
+
export type GetCustomerCollectionResponse = rebilly.GetCustomerCollectionResponse;
|
|
95632
|
+
export type GetCustomerCollectionResponsePromise = rebilly.GetCustomerCollectionResponsePromise;
|
|
95633
|
+
export type PostCustomerRequest = rebilly.PostCustomerRequest;
|
|
95634
|
+
export type CreateCustomerRequest = rebilly.CreateCustomerRequest;
|
|
95635
|
+
export type PostCustomerResponse = rebilly.PostCustomerResponse;
|
|
95636
|
+
export type PostCustomerResponsePromise = rebilly.PostCustomerResponsePromise;
|
|
95637
|
+
export type GetCustomerRequest = rebilly.GetCustomerRequest;
|
|
95638
|
+
export type GetCustomerResponse = rebilly.GetCustomerResponse;
|
|
95639
|
+
export type GetCustomerResponsePromise = rebilly.GetCustomerResponsePromise;
|
|
95640
|
+
export type PutCustomerRequest = rebilly.PutCustomerRequest;
|
|
95641
|
+
export type PutCustomerResponse = rebilly.PutCustomerResponse;
|
|
95642
|
+
export type PutCustomerResponsePromise = rebilly.PutCustomerResponsePromise;
|
|
95643
|
+
export type DeleteCustomerResponse = rebilly.DeleteCustomerResponse;
|
|
95644
|
+
export type DeleteCustomerResponsePromise = rebilly.DeleteCustomerResponsePromise;
|
|
95645
|
+
export type GetCustomerTimelineCustomEventTypeCollectionRequest = rebilly.GetCustomerTimelineCustomEventTypeCollectionRequest;
|
|
95646
|
+
export type GetCustomerTimelineCustomEventTypeCollectionResponse = rebilly.GetCustomerTimelineCustomEventTypeCollectionResponse;
|
|
95647
|
+
export type GetCustomerTimelineCustomEventTypeCollectionResponsePromise = rebilly.GetCustomerTimelineCustomEventTypeCollectionResponsePromise;
|
|
95648
|
+
export type PostCustomerTimelineCustomEventTypeRequest = rebilly.PostCustomerTimelineCustomEventTypeRequest;
|
|
95649
|
+
export type CreateCustomerTimelineCustomEventTypeRequest = rebilly.CreateCustomerTimelineCustomEventTypeRequest;
|
|
95650
|
+
export type PostCustomerTimelineCustomEventTypeResponse = rebilly.PostCustomerTimelineCustomEventTypeResponse;
|
|
95651
|
+
export type PostCustomerTimelineCustomEventTypeResponsePromise = rebilly.PostCustomerTimelineCustomEventTypeResponsePromise;
|
|
95652
|
+
export type GetCustomerTimelineCustomEventTypeRequest = rebilly.GetCustomerTimelineCustomEventTypeRequest;
|
|
95653
|
+
export type GetCustomerTimelineCustomEventTypeResponse = rebilly.GetCustomerTimelineCustomEventTypeResponse;
|
|
95654
|
+
export type GetCustomerTimelineCustomEventTypeResponsePromise = rebilly.GetCustomerTimelineCustomEventTypeResponsePromise;
|
|
95655
|
+
export type GetCustomerLeadSourceRequest = rebilly.GetCustomerLeadSourceRequest;
|
|
95656
|
+
export type GetCustomerLeadSourceResponse = rebilly.GetCustomerLeadSourceResponse;
|
|
95657
|
+
export type GetCustomerLeadSourceResponsePromise = rebilly.GetCustomerLeadSourceResponsePromise;
|
|
95658
|
+
export type PutCustomerLeadSourceRequest = rebilly.PutCustomerLeadSourceRequest;
|
|
95659
|
+
export type PutCustomerLeadSourceResponse = rebilly.PutCustomerLeadSourceResponse;
|
|
95660
|
+
export type PutCustomerLeadSourceResponsePromise = rebilly.PutCustomerLeadSourceResponsePromise;
|
|
95661
|
+
export type DeleteCustomerLeadSourceResponse = rebilly.DeleteCustomerLeadSourceResponse;
|
|
95662
|
+
export type DeleteCustomerLeadSourceResponsePromise = rebilly.DeleteCustomerLeadSourceResponsePromise;
|
|
95663
|
+
export type GetCustomerTimelineCollectionRequest = rebilly.GetCustomerTimelineCollectionRequest;
|
|
95664
|
+
export type GetCustomerTimelineCollectionResponse = rebilly.GetCustomerTimelineCollectionResponse;
|
|
95665
|
+
export type GetCustomerTimelineCollectionResponsePromise = rebilly.GetCustomerTimelineCollectionResponsePromise;
|
|
95666
|
+
export type PostCustomerTimelineRequest = rebilly.PostCustomerTimelineRequest;
|
|
95667
|
+
export type CreateCustomerTimelineRequest = rebilly.CreateCustomerTimelineRequest;
|
|
95668
|
+
export type PostCustomerTimelineResponse = rebilly.PostCustomerTimelineResponse;
|
|
95669
|
+
export type PostCustomerTimelineResponsePromise = rebilly.PostCustomerTimelineResponsePromise;
|
|
95670
|
+
export type GetCustomerTimelineRequest = rebilly.GetCustomerTimelineRequest;
|
|
95671
|
+
export type GetCustomerTimelineResponse = rebilly.GetCustomerTimelineResponse;
|
|
95672
|
+
export type GetCustomerTimelineResponsePromise = rebilly.GetCustomerTimelineResponsePromise;
|
|
95673
|
+
export type DeleteCustomerTimelineResponse = rebilly.DeleteCustomerTimelineResponse;
|
|
95674
|
+
export type DeleteCustomerTimelineResponsePromise = rebilly.DeleteCustomerTimelineResponsePromise;
|
|
95675
|
+
export type GetCustomerCreditBalanceRequest = rebilly.GetCustomerCreditBalanceRequest;
|
|
95676
|
+
export type GetCustomerCreditBalanceResponse = rebilly.GetCustomerCreditBalanceResponse;
|
|
95677
|
+
export type GetCustomerCreditBalanceResponsePromise = rebilly.GetCustomerCreditBalanceResponsePromise;
|
|
95678
|
+
export type GetDisputeCollectionRequest = rebilly.GetDisputeCollectionRequest;
|
|
95679
|
+
export type GetDisputeCollectionResponse = rebilly.GetDisputeCollectionResponse;
|
|
95680
|
+
export type GetDisputeCollectionResponsePromise = rebilly.GetDisputeCollectionResponsePromise;
|
|
95681
|
+
export type PostDisputeRequest = rebilly.PostDisputeRequest;
|
|
95682
|
+
export type CreateDisputeRequest = rebilly.CreateDisputeRequest;
|
|
95683
|
+
export type PostDisputeResponse = rebilly.PostDisputeResponse;
|
|
95684
|
+
export type PostDisputeResponsePromise = rebilly.PostDisputeResponsePromise;
|
|
95685
|
+
export type GetDisputeRequest = rebilly.GetDisputeRequest;
|
|
95686
|
+
export type GetDisputeResponse = rebilly.GetDisputeResponse;
|
|
95687
|
+
export type GetDisputeResponsePromise = rebilly.GetDisputeResponsePromise;
|
|
95688
|
+
export type PutDisputeRequest = rebilly.PutDisputeRequest;
|
|
95689
|
+
export type PutDisputeResponse = rebilly.PutDisputeResponse;
|
|
95690
|
+
export type PutDisputeResponsePromise = rebilly.PutDisputeResponsePromise;
|
|
95691
|
+
export type GetExternalIdentifierCollectionRequest = rebilly.GetExternalIdentifierCollectionRequest;
|
|
95692
|
+
export type GetExternalIdentifierCollectionResponse = rebilly.GetExternalIdentifierCollectionResponse;
|
|
95693
|
+
export type GetExternalIdentifierCollectionResponsePromise = rebilly.GetExternalIdentifierCollectionResponsePromise;
|
|
95694
|
+
export type GetExternalIdentifierRequest = rebilly.GetExternalIdentifierRequest;
|
|
95695
|
+
export type GetExternalIdentifierResponse = rebilly.GetExternalIdentifierResponse;
|
|
95696
|
+
export type GetExternalIdentifierResponsePromise = rebilly.GetExternalIdentifierResponsePromise;
|
|
95697
|
+
export type PostExternalIdentifierResponse = rebilly.PostExternalIdentifierResponse;
|
|
95698
|
+
export type PostExternalIdentifierResponsePromise = rebilly.PostExternalIdentifierResponsePromise;
|
|
95699
|
+
export type PutExternalIdentifierRequest = rebilly.PutExternalIdentifierRequest;
|
|
95700
|
+
export type PutExternalIdentifierResponse = rebilly.PutExternalIdentifierResponse;
|
|
95701
|
+
export type PutExternalIdentifierResponsePromise = rebilly.PutExternalIdentifierResponsePromise;
|
|
95702
|
+
export type DeleteExternalIdentifierResponse = rebilly.DeleteExternalIdentifierResponse;
|
|
95703
|
+
export type DeleteExternalIdentifierResponsePromise = rebilly.DeleteExternalIdentifierResponsePromise;
|
|
95704
|
+
export type GetExternalServiceSettingsResponse = rebilly.GetExternalServiceSettingsResponse;
|
|
95705
|
+
export type GetExternalServiceSettingsResponsePromise = rebilly.GetExternalServiceSettingsResponsePromise;
|
|
95706
|
+
export type PutExternalServiceSettingsRequest = rebilly.PutExternalServiceSettingsRequest;
|
|
95707
|
+
export type PutExternalServiceSettingsResponse = rebilly.PutExternalServiceSettingsResponse;
|
|
95708
|
+
export type PutExternalServiceSettingsResponsePromise = rebilly.PutExternalServiceSettingsResponsePromise;
|
|
95709
|
+
export type GetFileCollectionRequest = rebilly.GetFileCollectionRequest;
|
|
95710
|
+
export type GetFileCollectionResponse = rebilly.GetFileCollectionResponse;
|
|
95711
|
+
export type GetFileCollectionResponsePromise = rebilly.GetFileCollectionResponsePromise;
|
|
95712
|
+
export type PostFileRequest = rebilly.PostFileRequest;
|
|
95713
|
+
export type CreateFileRequest = rebilly.CreateFileRequest;
|
|
95714
|
+
export type PostFileResponse = rebilly.PostFileResponse;
|
|
95715
|
+
export type PostFileResponsePromise = rebilly.PostFileResponsePromise;
|
|
95716
|
+
export type GetFileRequest = rebilly.GetFileRequest;
|
|
95717
|
+
export type GetFileResponse = rebilly.GetFileResponse;
|
|
95718
|
+
export type GetFileResponsePromise = rebilly.GetFileResponsePromise;
|
|
95719
|
+
export type PutFileRequest = rebilly.PutFileRequest;
|
|
95720
|
+
export type PutFileResponse = rebilly.PutFileResponse;
|
|
95721
|
+
export type PutFileResponsePromise = rebilly.PutFileResponsePromise;
|
|
95722
|
+
export type DeleteFileResponse = rebilly.DeleteFileResponse;
|
|
95723
|
+
export type DeleteFileResponsePromise = rebilly.DeleteFileResponsePromise;
|
|
95724
|
+
export type GetFileDownloadRequest = rebilly.GetFileDownloadRequest;
|
|
95725
|
+
export type GetFileDownloadResponse = rebilly.GetFileDownloadResponse;
|
|
95726
|
+
export type GetFileDownloadResponsePromise = rebilly.GetFileDownloadResponsePromise;
|
|
95727
|
+
export type GetApplicationInstanceRequest = rebilly.GetApplicationInstanceRequest;
|
|
95728
|
+
export type GetApplicationInstanceResponse = rebilly.GetApplicationInstanceResponse;
|
|
95729
|
+
export type GetApplicationInstanceResponsePromise = rebilly.GetApplicationInstanceResponsePromise;
|
|
95730
|
+
export type PutApplicationInstanceRequest = rebilly.PutApplicationInstanceRequest;
|
|
95731
|
+
export type PutApplicationInstanceResponse = rebilly.PutApplicationInstanceResponse;
|
|
95732
|
+
export type PutApplicationInstanceResponsePromise = rebilly.PutApplicationInstanceResponsePromise;
|
|
95733
|
+
export type DeleteApplicationInstanceResponse = rebilly.DeleteApplicationInstanceResponse;
|
|
95734
|
+
export type DeleteApplicationInstanceResponsePromise = rebilly.DeleteApplicationInstanceResponsePromise;
|
|
95735
|
+
export type GetApplicationInstanceConfigurationRequest = rebilly.GetApplicationInstanceConfigurationRequest;
|
|
95736
|
+
export type GetApplicationInstanceConfigurationResponse = rebilly.GetApplicationInstanceConfigurationResponse;
|
|
95737
|
+
export type GetApplicationInstanceConfigurationResponsePromise = rebilly.GetApplicationInstanceConfigurationResponsePromise;
|
|
95738
|
+
export type PutApplicationInstanceConfigurationRequest = rebilly.PutApplicationInstanceConfigurationRequest;
|
|
95739
|
+
export type PutApplicationInstanceConfigurationResponse = rebilly.PutApplicationInstanceConfigurationResponse;
|
|
95740
|
+
export type PutApplicationInstanceConfigurationResponsePromise = rebilly.PutApplicationInstanceConfigurationResponsePromise;
|
|
95741
|
+
export type GetApplicationCollectionRequest = rebilly.GetApplicationCollectionRequest;
|
|
95742
|
+
export type GetApplicationCollectionResponse = rebilly.GetApplicationCollectionResponse;
|
|
95743
|
+
export type GetApplicationCollectionResponsePromise = rebilly.GetApplicationCollectionResponsePromise;
|
|
95744
|
+
export type PostApplicationRequest = rebilly.PostApplicationRequest;
|
|
95745
|
+
export type CreateApplicationRequest = rebilly.CreateApplicationRequest;
|
|
95746
|
+
export type PostApplicationResponse = rebilly.PostApplicationResponse;
|
|
95747
|
+
export type PostApplicationResponsePromise = rebilly.PostApplicationResponsePromise;
|
|
95748
|
+
export type GetApplicationRequest = rebilly.GetApplicationRequest;
|
|
95749
|
+
export type GetApplicationResponse = rebilly.GetApplicationResponse;
|
|
95750
|
+
export type GetApplicationResponsePromise = rebilly.GetApplicationResponsePromise;
|
|
95751
|
+
export type GetApplicationInstanceCollectionRequest = rebilly.GetApplicationInstanceCollectionRequest;
|
|
95752
|
+
export type GetApplicationInstanceCollectionResponse = rebilly.GetApplicationInstanceCollectionResponse;
|
|
95753
|
+
export type GetApplicationInstanceCollectionResponsePromise = rebilly.GetApplicationInstanceCollectionResponsePromise;
|
|
95754
|
+
export type GetApplicationInstanceByOrganizationRequest = rebilly.GetApplicationInstanceByOrganizationRequest;
|
|
95755
|
+
export type GetApplicationInstanceByOrganizationResponse = rebilly.GetApplicationInstanceByOrganizationResponse;
|
|
95756
|
+
export type GetApplicationInstanceByOrganizationResponsePromise = rebilly.GetApplicationInstanceByOrganizationResponsePromise;
|
|
95757
|
+
export type GetInvoiceCollectionRequest = rebilly.GetInvoiceCollectionRequest;
|
|
95758
|
+
export type GetInvoiceCollectionResponse = rebilly.GetInvoiceCollectionResponse;
|
|
95759
|
+
export type GetInvoiceCollectionResponsePromise = rebilly.GetInvoiceCollectionResponsePromise;
|
|
95760
|
+
export type PostInvoiceRequest = rebilly.PostInvoiceRequest;
|
|
95761
|
+
export type CreateInvoiceRequest = rebilly.CreateInvoiceRequest;
|
|
95762
|
+
export type PostInvoiceResponse = rebilly.PostInvoiceResponse;
|
|
95763
|
+
export type PostInvoiceResponsePromise = rebilly.PostInvoiceResponsePromise;
|
|
95764
|
+
export type GetInvoiceRequest = rebilly.GetInvoiceRequest;
|
|
95765
|
+
export type GetInvoiceResponse = rebilly.GetInvoiceResponse;
|
|
95766
|
+
export type GetInvoiceResponsePromise = rebilly.GetInvoiceResponsePromise;
|
|
95767
|
+
export type PutInvoiceRequest = rebilly.PutInvoiceRequest;
|
|
95768
|
+
export type PutInvoiceResponse = rebilly.PutInvoiceResponse;
|
|
95769
|
+
export type PutInvoiceResponsePromise = rebilly.PutInvoiceResponsePromise;
|
|
95770
|
+
export type GetInvoiceItemCollectionRequest = rebilly.GetInvoiceItemCollectionRequest;
|
|
95771
|
+
export type GetInvoiceItemCollectionResponse = rebilly.GetInvoiceItemCollectionResponse;
|
|
95772
|
+
export type GetInvoiceItemCollectionResponsePromise = rebilly.GetInvoiceItemCollectionResponsePromise;
|
|
95773
|
+
export type PostInvoiceItemRequest = rebilly.PostInvoiceItemRequest;
|
|
95774
|
+
export type CreateInvoiceItemRequest = rebilly.CreateInvoiceItemRequest;
|
|
95775
|
+
export type PostInvoiceItemResponse = rebilly.PostInvoiceItemResponse;
|
|
95776
|
+
export type PostInvoiceItemResponsePromise = rebilly.PostInvoiceItemResponsePromise;
|
|
95777
|
+
export type GetInvoiceItemRequest = rebilly.GetInvoiceItemRequest;
|
|
95778
|
+
export type GetInvoiceItemResponse = rebilly.GetInvoiceItemResponse;
|
|
95779
|
+
export type GetInvoiceItemResponsePromise = rebilly.GetInvoiceItemResponsePromise;
|
|
95780
|
+
export type PutInvoiceItemRequest = rebilly.PutInvoiceItemRequest;
|
|
95781
|
+
export type PutInvoiceItemResponse = rebilly.PutInvoiceItemResponse;
|
|
95782
|
+
export type PutInvoiceItemResponsePromise = rebilly.PutInvoiceItemResponsePromise;
|
|
95783
|
+
export type DeleteInvoiceItemResponse = rebilly.DeleteInvoiceItemResponse;
|
|
95784
|
+
export type DeleteInvoiceItemResponsePromise = rebilly.DeleteInvoiceItemResponsePromise;
|
|
95785
|
+
export type PostInvoiceIssuanceRequest = rebilly.PostInvoiceIssuanceRequest;
|
|
95786
|
+
export type CreateInvoiceIssuanceRequest = rebilly.CreateInvoiceIssuanceRequest;
|
|
95787
|
+
export type PostInvoiceIssuanceResponse = rebilly.PostInvoiceIssuanceResponse;
|
|
95788
|
+
export type PostInvoiceIssuanceResponsePromise = rebilly.PostInvoiceIssuanceResponsePromise;
|
|
95789
|
+
export type PostInvoiceAbandonmentResponse = rebilly.PostInvoiceAbandonmentResponse;
|
|
95790
|
+
export type PostInvoiceAbandonmentResponsePromise = rebilly.PostInvoiceAbandonmentResponsePromise;
|
|
95791
|
+
export type PostInvoiceVoidResponse = rebilly.PostInvoiceVoidResponse;
|
|
95792
|
+
export type PostInvoiceVoidResponsePromise = rebilly.PostInvoiceVoidResponsePromise;
|
|
95793
|
+
export type PostInvoiceRecalculationResponse = rebilly.PostInvoiceRecalculationResponse;
|
|
95794
|
+
export type PostInvoiceRecalculationResponsePromise = rebilly.PostInvoiceRecalculationResponsePromise;
|
|
95795
|
+
export type PostInvoiceReissuanceRequest = rebilly.PostInvoiceReissuanceRequest;
|
|
95796
|
+
export type CreateInvoiceReissuanceRequest = rebilly.CreateInvoiceReissuanceRequest;
|
|
95797
|
+
export type PostInvoiceReissuanceResponse = rebilly.PostInvoiceReissuanceResponse;
|
|
95798
|
+
export type PostInvoiceReissuanceResponsePromise = rebilly.PostInvoiceReissuanceResponsePromise;
|
|
95799
|
+
export type GetInvoiceTransactionAllocationCollectionRequest = rebilly.GetInvoiceTransactionAllocationCollectionRequest;
|
|
95800
|
+
export type GetInvoiceTransactionAllocationCollectionResponse = rebilly.GetInvoiceTransactionAllocationCollectionResponse;
|
|
95801
|
+
export type GetInvoiceTransactionAllocationCollectionResponsePromise = rebilly.GetInvoiceTransactionAllocationCollectionResponsePromise;
|
|
95802
|
+
export type PostInvoiceAllocateCreditBalanceRequest = rebilly.PostInvoiceAllocateCreditBalanceRequest;
|
|
95803
|
+
export type CreateInvoiceAllocateCreditBalanceRequest = rebilly.CreateInvoiceAllocateCreditBalanceRequest;
|
|
95804
|
+
export type PostInvoiceAllocateCreditBalanceResponse = rebilly.PostInvoiceAllocateCreditBalanceResponse;
|
|
95805
|
+
export type PostInvoiceAllocateCreditBalanceResponsePromise = rebilly.PostInvoiceAllocateCreditBalanceResponsePromise;
|
|
95806
|
+
export type PostInvoiceTransactionRequest = rebilly.PostInvoiceTransactionRequest;
|
|
95807
|
+
export type CreateInvoiceTransactionRequest = rebilly.CreateInvoiceTransactionRequest;
|
|
95808
|
+
export type PostInvoiceTransactionResponse = rebilly.PostInvoiceTransactionResponse;
|
|
95809
|
+
export type PostInvoiceTransactionResponsePromise = rebilly.PostInvoiceTransactionResponsePromise;
|
|
95810
|
+
export type GetInvoiceTimelineCollectionRequest = rebilly.GetInvoiceTimelineCollectionRequest;
|
|
95811
|
+
export type GetInvoiceTimelineCollectionResponse = rebilly.GetInvoiceTimelineCollectionResponse;
|
|
95812
|
+
export type GetInvoiceTimelineCollectionResponsePromise = rebilly.GetInvoiceTimelineCollectionResponsePromise;
|
|
95813
|
+
export type PostInvoiceTimelineRequest = rebilly.PostInvoiceTimelineRequest;
|
|
95814
|
+
export type CreateInvoiceTimelineRequest = rebilly.CreateInvoiceTimelineRequest;
|
|
95815
|
+
export type PostInvoiceTimelineResponse = rebilly.PostInvoiceTimelineResponse;
|
|
95816
|
+
export type PostInvoiceTimelineResponsePromise = rebilly.PostInvoiceTimelineResponsePromise;
|
|
95817
|
+
export type GetInvoiceTimelineRequest = rebilly.GetInvoiceTimelineRequest;
|
|
95818
|
+
export type GetInvoiceTimelineResponse = rebilly.GetInvoiceTimelineResponse;
|
|
95819
|
+
export type GetInvoiceTimelineResponsePromise = rebilly.GetInvoiceTimelineResponsePromise;
|
|
95820
|
+
export type DeleteInvoiceTimelineResponse = rebilly.DeleteInvoiceTimelineResponse;
|
|
95821
|
+
export type DeleteInvoiceTimelineResponsePromise = rebilly.DeleteInvoiceTimelineResponsePromise;
|
|
95822
|
+
export type GetCreditMemoCollectionRequest = rebilly.GetCreditMemoCollectionRequest;
|
|
95823
|
+
export type GetCreditMemoCollectionResponse = rebilly.GetCreditMemoCollectionResponse;
|
|
95824
|
+
export type GetCreditMemoCollectionResponsePromise = rebilly.GetCreditMemoCollectionResponsePromise;
|
|
95825
|
+
export type PostCreditMemoRequest = rebilly.PostCreditMemoRequest;
|
|
95826
|
+
export type CreateCreditMemoRequest = rebilly.CreateCreditMemoRequest;
|
|
95827
|
+
export type PostCreditMemoResponse = rebilly.PostCreditMemoResponse;
|
|
95828
|
+
export type PostCreditMemoResponsePromise = rebilly.PostCreditMemoResponsePromise;
|
|
95829
|
+
export type GetCreditMemoRequest = rebilly.GetCreditMemoRequest;
|
|
95830
|
+
export type GetCreditMemoResponse = rebilly.GetCreditMemoResponse;
|
|
95831
|
+
export type GetCreditMemoResponsePromise = rebilly.GetCreditMemoResponsePromise;
|
|
95832
|
+
export type PutCreditMemoRequest = rebilly.PutCreditMemoRequest;
|
|
95833
|
+
export type PutCreditMemoResponse = rebilly.PutCreditMemoResponse;
|
|
95834
|
+
export type PutCreditMemoResponsePromise = rebilly.PutCreditMemoResponsePromise;
|
|
95835
|
+
export type PatchCreditMemoRequest = rebilly.PatchCreditMemoRequest;
|
|
95836
|
+
export type PatchCreditMemoResponse = rebilly.PatchCreditMemoResponse;
|
|
95837
|
+
export type PatchCreditMemoResponsePromise = rebilly.PatchCreditMemoResponsePromise;
|
|
95838
|
+
export type PostCreditMemoVoidResponse = rebilly.PostCreditMemoVoidResponse;
|
|
95839
|
+
export type PostCreditMemoVoidResponsePromise = rebilly.PostCreditMemoVoidResponsePromise;
|
|
95840
|
+
export type PostCreditMemoRefundResponse = rebilly.PostCreditMemoRefundResponse;
|
|
95841
|
+
export type PostCreditMemoRefundResponsePromise = rebilly.PostCreditMemoRefundResponsePromise;
|
|
95842
|
+
export type GetCreditMemoTimelineCollectionRequest = rebilly.GetCreditMemoTimelineCollectionRequest;
|
|
95843
|
+
export type GetCreditMemoTimelineCollectionResponse = rebilly.GetCreditMemoTimelineCollectionResponse;
|
|
95844
|
+
export type GetCreditMemoTimelineCollectionResponsePromise = rebilly.GetCreditMemoTimelineCollectionResponsePromise;
|
|
95845
|
+
export type PostCreditMemoTimelineRequest = rebilly.PostCreditMemoTimelineRequest;
|
|
95846
|
+
export type CreateCreditMemoTimelineRequest = rebilly.CreateCreditMemoTimelineRequest;
|
|
95847
|
+
export type PostCreditMemoTimelineResponse = rebilly.PostCreditMemoTimelineResponse;
|
|
95848
|
+
export type PostCreditMemoTimelineResponsePromise = rebilly.PostCreditMemoTimelineResponsePromise;
|
|
95849
|
+
export type GetCreditMemoTimelineRequest = rebilly.GetCreditMemoTimelineRequest;
|
|
95850
|
+
export type GetCreditMemoTimelineResponse = rebilly.GetCreditMemoTimelineResponse;
|
|
95851
|
+
export type GetCreditMemoTimelineResponsePromise = rebilly.GetCreditMemoTimelineResponsePromise;
|
|
95852
|
+
export type DeleteCreditMemoTimelineResponse = rebilly.DeleteCreditMemoTimelineResponse;
|
|
95853
|
+
export type DeleteCreditMemoTimelineResponsePromise = rebilly.DeleteCreditMemoTimelineResponsePromise;
|
|
95854
|
+
export type GetJournalAccountCollectionRequest = rebilly.GetJournalAccountCollectionRequest;
|
|
95855
|
+
export type GetJournalAccountCollectionResponse = rebilly.GetJournalAccountCollectionResponse;
|
|
95856
|
+
export type GetJournalAccountCollectionResponsePromise = rebilly.GetJournalAccountCollectionResponsePromise;
|
|
95857
|
+
export type PostJournalAccountRequest = rebilly.PostJournalAccountRequest;
|
|
95858
|
+
export type CreateJournalAccountRequest = rebilly.CreateJournalAccountRequest;
|
|
95859
|
+
export type PostJournalAccountResponse = rebilly.PostJournalAccountResponse;
|
|
95860
|
+
export type PostJournalAccountResponsePromise = rebilly.PostJournalAccountResponsePromise;
|
|
95861
|
+
export type GetJournalAccountRequest = rebilly.GetJournalAccountRequest;
|
|
95862
|
+
export type GetJournalAccountResponse = rebilly.GetJournalAccountResponse;
|
|
95863
|
+
export type GetJournalAccountResponsePromise = rebilly.GetJournalAccountResponsePromise;
|
|
95864
|
+
export type PutJournalAccountRequest = rebilly.PutJournalAccountRequest;
|
|
95865
|
+
export type PutJournalAccountResponse = rebilly.PutJournalAccountResponse;
|
|
95866
|
+
export type PutJournalAccountResponsePromise = rebilly.PutJournalAccountResponsePromise;
|
|
95867
|
+
export type GetJournalEntryCollectionRequest = rebilly.GetJournalEntryCollectionRequest;
|
|
95868
|
+
export type GetJournalEntryCollectionResponse = rebilly.GetJournalEntryCollectionResponse;
|
|
95869
|
+
export type GetJournalEntryCollectionResponsePromise = rebilly.GetJournalEntryCollectionResponsePromise;
|
|
95870
|
+
export type PostJournalEntryRequest = rebilly.PostJournalEntryRequest;
|
|
95871
|
+
export type CreateJournalEntryRequest = rebilly.CreateJournalEntryRequest;
|
|
95872
|
+
export type PostJournalEntryResponse = rebilly.PostJournalEntryResponse;
|
|
95873
|
+
export type PostJournalEntryResponsePromise = rebilly.PostJournalEntryResponsePromise;
|
|
95874
|
+
export type GetJournalEntryRequest = rebilly.GetJournalEntryRequest;
|
|
95875
|
+
export type GetJournalEntryResponse = rebilly.GetJournalEntryResponse;
|
|
95876
|
+
export type GetJournalEntryResponsePromise = rebilly.GetJournalEntryResponsePromise;
|
|
95877
|
+
export type PutJournalEntryRequest = rebilly.PutJournalEntryRequest;
|
|
95878
|
+
export type PutJournalEntryResponse = rebilly.PutJournalEntryResponse;
|
|
95879
|
+
export type PutJournalEntryResponsePromise = rebilly.PutJournalEntryResponsePromise;
|
|
95880
|
+
export type GetJournalRecordCollectionRequest = rebilly.GetJournalRecordCollectionRequest;
|
|
95881
|
+
export type GetJournalRecordCollectionResponse = rebilly.GetJournalRecordCollectionResponse;
|
|
95882
|
+
export type GetJournalRecordCollectionResponsePromise = rebilly.GetJournalRecordCollectionResponsePromise;
|
|
95883
|
+
export type PostJournalRecordRequest = rebilly.PostJournalRecordRequest;
|
|
95884
|
+
export type CreateJournalRecordRequest = rebilly.CreateJournalRecordRequest;
|
|
95885
|
+
export type PostJournalRecordResponse = rebilly.PostJournalRecordResponse;
|
|
95886
|
+
export type PostJournalRecordResponsePromise = rebilly.PostJournalRecordResponsePromise;
|
|
95887
|
+
export type GetJournalRecordRequest = rebilly.GetJournalRecordRequest;
|
|
95888
|
+
export type GetJournalRecordResponse = rebilly.GetJournalRecordResponse;
|
|
95889
|
+
export type GetJournalRecordResponsePromise = rebilly.GetJournalRecordResponsePromise;
|
|
95890
|
+
export type PutJournalRecordRequest = rebilly.PutJournalRecordRequest;
|
|
95891
|
+
export type PutJournalRecordResponse = rebilly.PutJournalRecordResponse;
|
|
95892
|
+
export type PutJournalRecordResponsePromise = rebilly.PutJournalRecordResponsePromise;
|
|
95893
|
+
export type DeleteJournalRecordResponse = rebilly.DeleteJournalRecordResponse;
|
|
95894
|
+
export type DeleteJournalRecordResponsePromise = rebilly.DeleteJournalRecordResponsePromise;
|
|
95895
|
+
export type GetKycRequestCollectionRequest = rebilly.GetKycRequestCollectionRequest;
|
|
95896
|
+
export type GetKycRequestCollectionResponse = rebilly.GetKycRequestCollectionResponse;
|
|
95897
|
+
export type GetKycRequestCollectionResponsePromise = rebilly.GetKycRequestCollectionResponsePromise;
|
|
95898
|
+
export type PostKycRequestRequest = rebilly.PostKycRequestRequest;
|
|
95899
|
+
export type CreateKycRequestRequest = rebilly.CreateKycRequestRequest;
|
|
95900
|
+
export type PostKycRequestResponse = rebilly.PostKycRequestResponse;
|
|
95901
|
+
export type PostKycRequestResponsePromise = rebilly.PostKycRequestResponsePromise;
|
|
95902
|
+
export type GetKycRequestRequest = rebilly.GetKycRequestRequest;
|
|
95903
|
+
export type GetKycRequestResponse = rebilly.GetKycRequestResponse;
|
|
95904
|
+
export type GetKycRequestResponsePromise = rebilly.GetKycRequestResponsePromise;
|
|
95905
|
+
export type PatchKycRequestRequest = rebilly.PatchKycRequestRequest;
|
|
95906
|
+
export type PatchKycRequestResponse = rebilly.PatchKycRequestResponse;
|
|
95907
|
+
export type PatchKycRequestResponsePromise = rebilly.PatchKycRequestResponsePromise;
|
|
95908
|
+
export type DeleteKycRequestResponse = rebilly.DeleteKycRequestResponse;
|
|
95909
|
+
export type DeleteKycRequestResponsePromise = rebilly.DeleteKycRequestResponsePromise;
|
|
95910
|
+
export type GetKycDocumentCollectionRequest = rebilly.GetKycDocumentCollectionRequest;
|
|
95911
|
+
export type GetKycDocumentCollectionResponse = rebilly.GetKycDocumentCollectionResponse;
|
|
95912
|
+
export type GetKycDocumentCollectionResponsePromise = rebilly.GetKycDocumentCollectionResponsePromise;
|
|
95913
|
+
export type PostKycDocumentRequest = rebilly.PostKycDocumentRequest;
|
|
95914
|
+
export type CreateKycDocumentRequest = rebilly.CreateKycDocumentRequest;
|
|
95915
|
+
export type PostKycDocumentResponse = rebilly.PostKycDocumentResponse;
|
|
95916
|
+
export type PostKycDocumentResponsePromise = rebilly.PostKycDocumentResponsePromise;
|
|
95917
|
+
export type GetKycDocumentRequest = rebilly.GetKycDocumentRequest;
|
|
95918
|
+
export type GetKycDocumentResponse = rebilly.GetKycDocumentResponse;
|
|
95919
|
+
export type GetKycDocumentResponsePromise = rebilly.GetKycDocumentResponsePromise;
|
|
95920
|
+
export type PutKycDocumentRequest = rebilly.PutKycDocumentRequest;
|
|
95921
|
+
export type PutKycDocumentResponse = rebilly.PutKycDocumentResponse;
|
|
95922
|
+
export type PutKycDocumentResponsePromise = rebilly.PutKycDocumentResponsePromise;
|
|
95923
|
+
export type PostKycDocumentAcceptanceResponse = rebilly.PostKycDocumentAcceptanceResponse;
|
|
95924
|
+
export type PostKycDocumentAcceptanceResponsePromise = rebilly.PostKycDocumentAcceptanceResponsePromise;
|
|
95925
|
+
export type PostKycDocumentMatchesRequest = rebilly.PostKycDocumentMatchesRequest;
|
|
95926
|
+
export type CreateKycDocumentMatchesRequest = rebilly.CreateKycDocumentMatchesRequest;
|
|
95927
|
+
export type PostKycDocumentMatchesResponse = rebilly.PostKycDocumentMatchesResponse;
|
|
95928
|
+
export type PostKycDocumentMatchesResponsePromise = rebilly.PostKycDocumentMatchesResponsePromise;
|
|
95929
|
+
export type PostKycDocumentRejectionRequest = rebilly.PostKycDocumentRejectionRequest;
|
|
95930
|
+
export type CreateKycDocumentRejectionRequest = rebilly.CreateKycDocumentRejectionRequest;
|
|
95931
|
+
export type PostKycDocumentRejectionResponse = rebilly.PostKycDocumentRejectionResponse;
|
|
95932
|
+
export type PostKycDocumentRejectionResponsePromise = rebilly.PostKycDocumentRejectionResponsePromise;
|
|
95933
|
+
export type PostKycDocumentReviewResponse = rebilly.PostKycDocumentReviewResponse;
|
|
95934
|
+
export type PostKycDocumentReviewResponsePromise = rebilly.PostKycDocumentReviewResponsePromise;
|
|
95935
|
+
export type PostKycDocumentStartReviewResponse = rebilly.PostKycDocumentStartReviewResponse;
|
|
95936
|
+
export type PostKycDocumentStartReviewResponsePromise = rebilly.PostKycDocumentStartReviewResponsePromise;
|
|
95937
|
+
export type PostKycDocumentStopReviewResponse = rebilly.PostKycDocumentStopReviewResponse;
|
|
95938
|
+
export type PostKycDocumentStopReviewResponsePromise = rebilly.PostKycDocumentStopReviewResponsePromise;
|
|
95939
|
+
export type GetKycSettingsResponse = rebilly.GetKycSettingsResponse;
|
|
95940
|
+
export type GetKycSettingsResponsePromise = rebilly.GetKycSettingsResponsePromise;
|
|
95941
|
+
export type PutKycSettingsRequest = rebilly.PutKycSettingsRequest;
|
|
95942
|
+
export type PutKycSettingsResponse = rebilly.PutKycSettingsResponse;
|
|
95943
|
+
export type PutKycSettingsResponsePromise = rebilly.PutKycSettingsResponsePromise;
|
|
95944
|
+
export type GetPasswordTokenCollectionRequest = rebilly.GetPasswordTokenCollectionRequest;
|
|
95945
|
+
export type GetPasswordTokenCollectionResponse = rebilly.GetPasswordTokenCollectionResponse;
|
|
95946
|
+
export type GetPasswordTokenCollectionResponsePromise = rebilly.GetPasswordTokenCollectionResponsePromise;
|
|
95947
|
+
export type PostPasswordTokenRequest = rebilly.PostPasswordTokenRequest;
|
|
95948
|
+
export type CreatePasswordTokenRequest = rebilly.CreatePasswordTokenRequest;
|
|
95949
|
+
export type PostPasswordTokenResponse = rebilly.PostPasswordTokenResponse;
|
|
95950
|
+
export type PostPasswordTokenResponsePromise = rebilly.PostPasswordTokenResponsePromise;
|
|
95951
|
+
export type GetPasswordTokenRequest = rebilly.GetPasswordTokenRequest;
|
|
95952
|
+
export type GetPasswordTokenResponse = rebilly.GetPasswordTokenResponse;
|
|
95953
|
+
export type GetPasswordTokenResponsePromise = rebilly.GetPasswordTokenResponsePromise;
|
|
95954
|
+
export type DeletePasswordTokenResponse = rebilly.DeletePasswordTokenResponse;
|
|
95955
|
+
export type DeletePasswordTokenResponsePromise = rebilly.DeletePasswordTokenResponsePromise;
|
|
95956
|
+
export type GetPaymentInstrumentCollectionRequest = rebilly.GetPaymentInstrumentCollectionRequest;
|
|
95957
|
+
export type GetPaymentInstrumentCollectionResponse = rebilly.GetPaymentInstrumentCollectionResponse;
|
|
95958
|
+
export type GetPaymentInstrumentCollectionResponsePromise = rebilly.GetPaymentInstrumentCollectionResponsePromise;
|
|
95959
|
+
export type PostPaymentInstrumentRequest = rebilly.PostPaymentInstrumentRequest;
|
|
95960
|
+
export type CreatePaymentInstrumentRequest = rebilly.CreatePaymentInstrumentRequest;
|
|
95961
|
+
export type PostPaymentInstrumentResponse = rebilly.PostPaymentInstrumentResponse;
|
|
95962
|
+
export type PostPaymentInstrumentResponsePromise = rebilly.PostPaymentInstrumentResponsePromise;
|
|
95963
|
+
export type GetPaymentInstrumentRequest = rebilly.GetPaymentInstrumentRequest;
|
|
95964
|
+
export type GetPaymentInstrumentResponse = rebilly.GetPaymentInstrumentResponse;
|
|
95965
|
+
export type GetPaymentInstrumentResponsePromise = rebilly.GetPaymentInstrumentResponsePromise;
|
|
95966
|
+
export type PatchPaymentInstrumentRequest = rebilly.PatchPaymentInstrumentRequest;
|
|
95967
|
+
export type PatchPaymentInstrumentResponse = rebilly.PatchPaymentInstrumentResponse;
|
|
95968
|
+
export type PatchPaymentInstrumentResponsePromise = rebilly.PatchPaymentInstrumentResponsePromise;
|
|
95969
|
+
export type PostPaymentInstrumentDeactivationResponse = rebilly.PostPaymentInstrumentDeactivationResponse;
|
|
95970
|
+
export type PostPaymentInstrumentDeactivationResponsePromise = rebilly.PostPaymentInstrumentDeactivationResponsePromise;
|
|
95971
|
+
export type PostPaymentInstrumentNameInquiryRequest = rebilly.PostPaymentInstrumentNameInquiryRequest;
|
|
95972
|
+
export type CreatePaymentInstrumentNameInquiryRequest = rebilly.CreatePaymentInstrumentNameInquiryRequest;
|
|
95973
|
+
export type PostPaymentInstrumentNameInquiryResponse = rebilly.PostPaymentInstrumentNameInquiryResponse;
|
|
95974
|
+
export type PostPaymentInstrumentNameInquiryResponsePromise = rebilly.PostPaymentInstrumentNameInquiryResponsePromise;
|
|
95975
|
+
export type GetPlanCollectionRequest = rebilly.GetPlanCollectionRequest;
|
|
95976
|
+
export type GetPlanCollectionResponse = rebilly.GetPlanCollectionResponse;
|
|
95977
|
+
export type GetPlanCollectionResponsePromise = rebilly.GetPlanCollectionResponsePromise;
|
|
95978
|
+
export type PostPlanRequest = rebilly.PostPlanRequest;
|
|
95979
|
+
export type CreatePlanRequest = rebilly.CreatePlanRequest;
|
|
95980
|
+
export type PostPlanResponse = rebilly.PostPlanResponse;
|
|
95981
|
+
export type PostPlanResponsePromise = rebilly.PostPlanResponsePromise;
|
|
95982
|
+
export type GetPlanRequest = rebilly.GetPlanRequest;
|
|
95983
|
+
export type GetPlanResponse = rebilly.GetPlanResponse;
|
|
95984
|
+
export type GetPlanResponsePromise = rebilly.GetPlanResponsePromise;
|
|
95985
|
+
export type PutPlanRequest = rebilly.PutPlanRequest;
|
|
95986
|
+
export type PutPlanResponse = rebilly.PutPlanResponse;
|
|
95987
|
+
export type PutPlanResponsePromise = rebilly.PutPlanResponsePromise;
|
|
95988
|
+
export type DeletePlanResponse = rebilly.DeletePlanResponse;
|
|
95989
|
+
export type DeletePlanResponsePromise = rebilly.DeletePlanResponsePromise;
|
|
95990
|
+
export type GetProductCollectionRequest = rebilly.GetProductCollectionRequest;
|
|
95991
|
+
export type GetProductCollectionResponse = rebilly.GetProductCollectionResponse;
|
|
95992
|
+
export type GetProductCollectionResponsePromise = rebilly.GetProductCollectionResponsePromise;
|
|
95993
|
+
export type PostProductRequest = rebilly.PostProductRequest;
|
|
95994
|
+
export type CreateProductRequest = rebilly.CreateProductRequest;
|
|
95995
|
+
export type PostProductResponse = rebilly.PostProductResponse;
|
|
95996
|
+
export type PostProductResponsePromise = rebilly.PostProductResponsePromise;
|
|
95997
|
+
export type GetProductRequest = rebilly.GetProductRequest;
|
|
95998
|
+
export type GetProductResponse = rebilly.GetProductResponse;
|
|
95999
|
+
export type GetProductResponsePromise = rebilly.GetProductResponsePromise;
|
|
96000
|
+
export type PutProductRequest = rebilly.PutProductRequest;
|
|
96001
|
+
export type PutProductResponse = rebilly.PutProductResponse;
|
|
96002
|
+
export type PutProductResponsePromise = rebilly.PutProductResponsePromise;
|
|
96003
|
+
export type DeleteProductResponse = rebilly.DeleteProductResponse;
|
|
96004
|
+
export type DeleteProductResponsePromise = rebilly.DeleteProductResponsePromise;
|
|
96005
|
+
export type GetQuoteCollectionRequest = rebilly.GetQuoteCollectionRequest;
|
|
96006
|
+
export type GetQuoteCollectionResponse = rebilly.GetQuoteCollectionResponse;
|
|
96007
|
+
export type GetQuoteCollectionResponsePromise = rebilly.GetQuoteCollectionResponsePromise;
|
|
96008
|
+
export type PostQuoteRequest = rebilly.PostQuoteRequest;
|
|
96009
|
+
export type CreateQuoteRequest = rebilly.CreateQuoteRequest;
|
|
96010
|
+
export type PostQuoteResponse = rebilly.PostQuoteResponse;
|
|
96011
|
+
export type PostQuoteResponsePromise = rebilly.PostQuoteResponsePromise;
|
|
96012
|
+
export type GetQuoteRequest = rebilly.GetQuoteRequest;
|
|
96013
|
+
export type GetQuoteResponse = rebilly.GetQuoteResponse;
|
|
96014
|
+
export type GetQuoteResponsePromise = rebilly.GetQuoteResponsePromise;
|
|
96015
|
+
export type PutQuoteRequest = rebilly.PutQuoteRequest;
|
|
96016
|
+
export type PutQuoteResponse = rebilly.PutQuoteResponse;
|
|
96017
|
+
export type PutQuoteResponsePromise = rebilly.PutQuoteResponsePromise;
|
|
96018
|
+
export type PatchQuoteRequest = rebilly.PatchQuoteRequest;
|
|
96019
|
+
export type PatchQuoteResponse = rebilly.PatchQuoteResponse;
|
|
96020
|
+
export type PatchQuoteResponsePromise = rebilly.PatchQuoteResponsePromise;
|
|
96021
|
+
export type PostQuoteAcceptanceResponse = rebilly.PostQuoteAcceptanceResponse;
|
|
96022
|
+
export type PostQuoteAcceptanceResponsePromise = rebilly.PostQuoteAcceptanceResponsePromise;
|
|
96023
|
+
export type PostQuoteCancellationResponse = rebilly.PostQuoteCancellationResponse;
|
|
96024
|
+
export type PostQuoteCancellationResponsePromise = rebilly.PostQuoteCancellationResponsePromise;
|
|
96025
|
+
export type PostQuoteIssuanceResponse = rebilly.PostQuoteIssuanceResponse;
|
|
96026
|
+
export type PostQuoteIssuanceResponsePromise = rebilly.PostQuoteIssuanceResponsePromise;
|
|
96027
|
+
export type PostQuoteRecallResponse = rebilly.PostQuoteRecallResponse;
|
|
96028
|
+
export type PostQuoteRecallResponsePromise = rebilly.PostQuoteRecallResponsePromise;
|
|
96029
|
+
export type PostQuoteRejectionResponse = rebilly.PostQuoteRejectionResponse;
|
|
96030
|
+
export type PostQuoteRejectionResponsePromise = rebilly.PostQuoteRejectionResponsePromise;
|
|
96031
|
+
export type GetQuoteTimelineCollectionRequest = rebilly.GetQuoteTimelineCollectionRequest;
|
|
96032
|
+
export type GetQuoteTimelineCollectionResponse = rebilly.GetQuoteTimelineCollectionResponse;
|
|
96033
|
+
export type GetQuoteTimelineCollectionResponsePromise = rebilly.GetQuoteTimelineCollectionResponsePromise;
|
|
96034
|
+
export type PostQuoteTimelineRequest = rebilly.PostQuoteTimelineRequest;
|
|
96035
|
+
export type CreateQuoteTimelineRequest = rebilly.CreateQuoteTimelineRequest;
|
|
96036
|
+
export type PostQuoteTimelineResponse = rebilly.PostQuoteTimelineResponse;
|
|
96037
|
+
export type PostQuoteTimelineResponsePromise = rebilly.PostQuoteTimelineResponsePromise;
|
|
96038
|
+
export type GetQuoteTimelineRequest = rebilly.GetQuoteTimelineRequest;
|
|
96039
|
+
export type GetQuoteTimelineResponse = rebilly.GetQuoteTimelineResponse;
|
|
96040
|
+
export type GetQuoteTimelineResponsePromise = rebilly.GetQuoteTimelineResponsePromise;
|
|
96041
|
+
export type DeleteQuoteTimelineResponse = rebilly.DeleteQuoteTimelineResponse;
|
|
96042
|
+
export type DeleteQuoteTimelineResponsePromise = rebilly.DeleteQuoteTimelineResponsePromise;
|
|
96043
|
+
export type PostReadyToPayRequest = rebilly.PostReadyToPayRequest;
|
|
96044
|
+
export type CreateReadyToPayRequest = rebilly.CreateReadyToPayRequest;
|
|
96045
|
+
export type PostReadyToPayResponse = rebilly.PostReadyToPayResponse;
|
|
96046
|
+
export type PostReadyToPayResponsePromise = rebilly.PostReadyToPayResponsePromise;
|
|
96047
|
+
export type GetSearchRequest = rebilly.GetSearchRequest;
|
|
96048
|
+
export type GetSearchResponse = rebilly.GetSearchResponse;
|
|
96049
|
+
export type GetSearchResponsePromise = rebilly.GetSearchResponsePromise;
|
|
96050
|
+
export type GetShippingRateCollectionRequest = rebilly.GetShippingRateCollectionRequest;
|
|
96051
|
+
export type GetShippingRateCollectionResponse = rebilly.GetShippingRateCollectionResponse;
|
|
96052
|
+
export type GetShippingRateCollectionResponsePromise = rebilly.GetShippingRateCollectionResponsePromise;
|
|
96053
|
+
export type PostShippingRateRequest = rebilly.PostShippingRateRequest;
|
|
96054
|
+
export type CreateShippingRateRequest = rebilly.CreateShippingRateRequest;
|
|
96055
|
+
export type PostShippingRateResponse = rebilly.PostShippingRateResponse;
|
|
96056
|
+
export type PostShippingRateResponsePromise = rebilly.PostShippingRateResponsePromise;
|
|
96057
|
+
export type GetShippingRateRequest = rebilly.GetShippingRateRequest;
|
|
96058
|
+
export type GetShippingRateResponse = rebilly.GetShippingRateResponse;
|
|
96059
|
+
export type GetShippingRateResponsePromise = rebilly.GetShippingRateResponsePromise;
|
|
96060
|
+
export type PutShippingRateRequest = rebilly.PutShippingRateRequest;
|
|
96061
|
+
export type PutShippingRateResponse = rebilly.PutShippingRateResponse;
|
|
96062
|
+
export type PutShippingRateResponsePromise = rebilly.PutShippingRateResponsePromise;
|
|
96063
|
+
export type DeleteShippingRateResponse = rebilly.DeleteShippingRateResponse;
|
|
96064
|
+
export type DeleteShippingRateResponsePromise = rebilly.DeleteShippingRateResponsePromise;
|
|
96065
|
+
export type GetOrderCollectionRequest = rebilly.GetOrderCollectionRequest;
|
|
96066
|
+
export type GetOrderCollectionResponse = rebilly.GetOrderCollectionResponse;
|
|
96067
|
+
export type GetOrderCollectionResponsePromise = rebilly.GetOrderCollectionResponsePromise;
|
|
96068
|
+
export type PostOrderRequest = rebilly.PostOrderRequest;
|
|
96069
|
+
export type CreateOrderRequest = rebilly.CreateOrderRequest;
|
|
96070
|
+
export type PostOrderResponse = rebilly.PostOrderResponse;
|
|
96071
|
+
export type PostOrderResponsePromise = rebilly.PostOrderResponsePromise;
|
|
96072
|
+
export type GetOrderRequest = rebilly.GetOrderRequest;
|
|
96073
|
+
export type GetOrderResponse = rebilly.GetOrderResponse;
|
|
96074
|
+
export type GetOrderResponsePromise = rebilly.GetOrderResponsePromise;
|
|
96075
|
+
export type PutOrderRequest = rebilly.PutOrderRequest;
|
|
96076
|
+
export type PutOrderResponse = rebilly.PutOrderResponse;
|
|
96077
|
+
export type PutOrderResponsePromise = rebilly.PutOrderResponsePromise;
|
|
96078
|
+
export type GetOrderUpcomingInvoiceRequest = rebilly.GetOrderUpcomingInvoiceRequest;
|
|
96079
|
+
export type GetOrderUpcomingInvoiceResponse = rebilly.GetOrderUpcomingInvoiceResponse;
|
|
96080
|
+
export type GetOrderUpcomingInvoiceResponsePromise = rebilly.GetOrderUpcomingInvoiceResponsePromise;
|
|
96081
|
+
export type GetOrderPauseCollectionRequest = rebilly.GetOrderPauseCollectionRequest;
|
|
96082
|
+
export type GetOrderPauseCollectionResponse = rebilly.GetOrderPauseCollectionResponse;
|
|
96083
|
+
export type GetOrderPauseCollectionResponsePromise = rebilly.GetOrderPauseCollectionResponsePromise;
|
|
96084
|
+
export type PostOrderPauseRequest = rebilly.PostOrderPauseRequest;
|
|
96085
|
+
export type CreateOrderPauseRequest = rebilly.CreateOrderPauseRequest;
|
|
96086
|
+
export type PostOrderPauseResponse = rebilly.PostOrderPauseResponse;
|
|
96087
|
+
export type PostOrderPauseResponsePromise = rebilly.PostOrderPauseResponsePromise;
|
|
96088
|
+
export type GetOrderPauseRequest = rebilly.GetOrderPauseRequest;
|
|
96089
|
+
export type GetOrderPauseResponse = rebilly.GetOrderPauseResponse;
|
|
96090
|
+
export type GetOrderPauseResponsePromise = rebilly.GetOrderPauseResponsePromise;
|
|
96091
|
+
export type PutOrderPauseRequest = rebilly.PutOrderPauseRequest;
|
|
96092
|
+
export type PutOrderPauseResponse = rebilly.PutOrderPauseResponse;
|
|
96093
|
+
export type PutOrderPauseResponsePromise = rebilly.PutOrderPauseResponsePromise;
|
|
96094
|
+
export type DeleteOrderPauseResponse = rebilly.DeleteOrderPauseResponse;
|
|
96095
|
+
export type DeleteOrderPauseResponsePromise = rebilly.DeleteOrderPauseResponsePromise;
|
|
96096
|
+
export type GetOrderCancellationCollectionRequest = rebilly.GetOrderCancellationCollectionRequest;
|
|
96097
|
+
export type GetOrderCancellationCollectionResponse = rebilly.GetOrderCancellationCollectionResponse;
|
|
96098
|
+
export type GetOrderCancellationCollectionResponsePromise = rebilly.GetOrderCancellationCollectionResponsePromise;
|
|
96099
|
+
export type PostOrderCancellationRequest = rebilly.PostOrderCancellationRequest;
|
|
96100
|
+
export type CreateOrderCancellationRequest = rebilly.CreateOrderCancellationRequest;
|
|
96101
|
+
export type PostOrderCancellationResponse = rebilly.PostOrderCancellationResponse;
|
|
96102
|
+
export type PostOrderCancellationResponsePromise = rebilly.PostOrderCancellationResponsePromise;
|
|
96103
|
+
export type GetOrderCancellationRequest = rebilly.GetOrderCancellationRequest;
|
|
96104
|
+
export type GetOrderCancellationResponse = rebilly.GetOrderCancellationResponse;
|
|
96105
|
+
export type GetOrderCancellationResponsePromise = rebilly.GetOrderCancellationResponsePromise;
|
|
96106
|
+
export type PutOrderCancellationRequest = rebilly.PutOrderCancellationRequest;
|
|
96107
|
+
export type PutOrderCancellationResponse = rebilly.PutOrderCancellationResponse;
|
|
96108
|
+
export type PutOrderCancellationResponsePromise = rebilly.PutOrderCancellationResponsePromise;
|
|
96109
|
+
export type PatchOrderCancellationRequest = rebilly.PatchOrderCancellationRequest;
|
|
96110
|
+
export type PatchOrderCancellationResponse = rebilly.PatchOrderCancellationResponse;
|
|
96111
|
+
export type PatchOrderCancellationResponsePromise = rebilly.PatchOrderCancellationResponsePromise;
|
|
96112
|
+
export type DeleteOrderCancellationResponse = rebilly.DeleteOrderCancellationResponse;
|
|
96113
|
+
export type DeleteOrderCancellationResponsePromise = rebilly.DeleteOrderCancellationResponsePromise;
|
|
96114
|
+
export type GetOrderReactivationCollectionRequest = rebilly.GetOrderReactivationCollectionRequest;
|
|
96115
|
+
export type GetOrderReactivationCollectionResponse = rebilly.GetOrderReactivationCollectionResponse;
|
|
96116
|
+
export type GetOrderReactivationCollectionResponsePromise = rebilly.GetOrderReactivationCollectionResponsePromise;
|
|
96117
|
+
export type PostOrderReactivationRequest = rebilly.PostOrderReactivationRequest;
|
|
96118
|
+
export type CreateOrderReactivationRequest = rebilly.CreateOrderReactivationRequest;
|
|
96119
|
+
export type PostOrderReactivationResponse = rebilly.PostOrderReactivationResponse;
|
|
96120
|
+
export type PostOrderReactivationResponsePromise = rebilly.PostOrderReactivationResponsePromise;
|
|
96121
|
+
export type GetOrderReactivationRequest = rebilly.GetOrderReactivationRequest;
|
|
96122
|
+
export type GetOrderReactivationResponse = rebilly.GetOrderReactivationResponse;
|
|
96123
|
+
export type GetOrderReactivationResponsePromise = rebilly.GetOrderReactivationResponsePromise;
|
|
96124
|
+
export type GetSubscriptionCollectionRequest = rebilly.GetSubscriptionCollectionRequest;
|
|
96125
|
+
export type GetSubscriptionCollectionResponse = rebilly.GetSubscriptionCollectionResponse;
|
|
96126
|
+
export type GetSubscriptionCollectionResponsePromise = rebilly.GetSubscriptionCollectionResponsePromise;
|
|
96127
|
+
export type PostSubscriptionRequest = rebilly.PostSubscriptionRequest;
|
|
96128
|
+
export type CreateSubscriptionRequest = rebilly.CreateSubscriptionRequest;
|
|
96129
|
+
export type PostSubscriptionResponse = rebilly.PostSubscriptionResponse;
|
|
96130
|
+
export type PostSubscriptionResponsePromise = rebilly.PostSubscriptionResponsePromise;
|
|
96131
|
+
export type GetSubscriptionRequest = rebilly.GetSubscriptionRequest;
|
|
96132
|
+
export type GetSubscriptionResponse = rebilly.GetSubscriptionResponse;
|
|
96133
|
+
export type GetSubscriptionResponsePromise = rebilly.GetSubscriptionResponsePromise;
|
|
96134
|
+
export type PutSubscriptionRequest = rebilly.PutSubscriptionRequest;
|
|
96135
|
+
export type PutSubscriptionResponse = rebilly.PutSubscriptionResponse;
|
|
96136
|
+
export type PutSubscriptionResponsePromise = rebilly.PutSubscriptionResponsePromise;
|
|
96137
|
+
export type DeleteSubscriptionResponse = rebilly.DeleteSubscriptionResponse;
|
|
96138
|
+
export type DeleteSubscriptionResponsePromise = rebilly.DeleteSubscriptionResponsePromise;
|
|
96139
|
+
export type PostSubscriptionVoidResponse = rebilly.PostSubscriptionVoidResponse;
|
|
96140
|
+
export type PostSubscriptionVoidResponsePromise = rebilly.PostSubscriptionVoidResponsePromise;
|
|
96141
|
+
export type PostOrderVoidResponse = rebilly.PostOrderVoidResponse;
|
|
96142
|
+
export type PostOrderVoidResponsePromise = rebilly.PostOrderVoidResponsePromise;
|
|
96143
|
+
export type PostSubscriptionItemsChangeRequest = rebilly.PostSubscriptionItemsChangeRequest;
|
|
96144
|
+
export type CreateSubscriptionItemsChangeRequest = rebilly.CreateSubscriptionItemsChangeRequest;
|
|
96145
|
+
export type PostSubscriptionItemsChangeResponse = rebilly.PostSubscriptionItemsChangeResponse;
|
|
96146
|
+
export type PostSubscriptionItemsChangeResponsePromise = rebilly.PostSubscriptionItemsChangeResponsePromise;
|
|
96147
|
+
export type PostOrderItemsChangeRequest = rebilly.PostOrderItemsChangeRequest;
|
|
96148
|
+
export type CreateOrderItemsChangeRequest = rebilly.CreateOrderItemsChangeRequest;
|
|
96149
|
+
export type PostOrderItemsChangeResponse = rebilly.PostOrderItemsChangeResponse;
|
|
96150
|
+
export type PostOrderItemsChangeResponsePromise = rebilly.PostOrderItemsChangeResponsePromise;
|
|
96151
|
+
export type PatchSubscriptionItemRequest = rebilly.PatchSubscriptionItemRequest;
|
|
96152
|
+
export type PatchSubscriptionItemResponse = rebilly.PatchSubscriptionItemResponse;
|
|
96153
|
+
export type PatchSubscriptionItemResponsePromise = rebilly.PatchSubscriptionItemResponsePromise;
|
|
96154
|
+
export type PatchOrderItemRequest = rebilly.PatchOrderItemRequest;
|
|
96155
|
+
export type PatchOrderItemResponse = rebilly.PatchOrderItemResponse;
|
|
96156
|
+
export type PatchOrderItemResponsePromise = rebilly.PatchOrderItemResponsePromise;
|
|
96157
|
+
export type PostSubscriptionInterimInvoiceRequest = rebilly.PostSubscriptionInterimInvoiceRequest;
|
|
96158
|
+
export type CreateSubscriptionInterimInvoiceRequest = rebilly.CreateSubscriptionInterimInvoiceRequest;
|
|
96159
|
+
export type PostSubscriptionInterimInvoiceResponse = rebilly.PostSubscriptionInterimInvoiceResponse;
|
|
96160
|
+
export type PostSubscriptionInterimInvoiceResponsePromise = rebilly.PostSubscriptionInterimInvoiceResponsePromise;
|
|
96161
|
+
export type PostOrderInterimInvoiceRequest = rebilly.PostOrderInterimInvoiceRequest;
|
|
96162
|
+
export type CreateOrderInterimInvoiceRequest = rebilly.CreateOrderInterimInvoiceRequest;
|
|
96163
|
+
export type PostOrderInterimInvoiceResponse = rebilly.PostOrderInterimInvoiceResponse;
|
|
96164
|
+
export type PostOrderInterimInvoiceResponsePromise = rebilly.PostOrderInterimInvoiceResponsePromise;
|
|
96165
|
+
export type GetSubscriptionPauseCollectionRequest = rebilly.GetSubscriptionPauseCollectionRequest;
|
|
96166
|
+
export type GetSubscriptionPauseCollectionResponse = rebilly.GetSubscriptionPauseCollectionResponse;
|
|
96167
|
+
export type GetSubscriptionPauseCollectionResponsePromise = rebilly.GetSubscriptionPauseCollectionResponsePromise;
|
|
96168
|
+
export type PostSubscriptionPauseRequest = rebilly.PostSubscriptionPauseRequest;
|
|
96169
|
+
export type CreateSubscriptionPauseRequest = rebilly.CreateSubscriptionPauseRequest;
|
|
96170
|
+
export type PostSubscriptionPauseResponse = rebilly.PostSubscriptionPauseResponse;
|
|
96171
|
+
export type PostSubscriptionPauseResponsePromise = rebilly.PostSubscriptionPauseResponsePromise;
|
|
96172
|
+
export type GetSubscriptionPauseRequest = rebilly.GetSubscriptionPauseRequest;
|
|
96173
|
+
export type GetSubscriptionPauseResponse = rebilly.GetSubscriptionPauseResponse;
|
|
96174
|
+
export type GetSubscriptionPauseResponsePromise = rebilly.GetSubscriptionPauseResponsePromise;
|
|
96175
|
+
export type PutSubscriptionPauseRequest = rebilly.PutSubscriptionPauseRequest;
|
|
96176
|
+
export type PutSubscriptionPauseResponse = rebilly.PutSubscriptionPauseResponse;
|
|
96177
|
+
export type PutSubscriptionPauseResponsePromise = rebilly.PutSubscriptionPauseResponsePromise;
|
|
96178
|
+
export type DeleteSubscriptionPauseResponse = rebilly.DeleteSubscriptionPauseResponse;
|
|
96179
|
+
export type DeleteSubscriptionPauseResponsePromise = rebilly.DeleteSubscriptionPauseResponsePromise;
|
|
96180
|
+
export type GetSubscriptionCancellationCollectionRequest = rebilly.GetSubscriptionCancellationCollectionRequest;
|
|
96181
|
+
export type GetSubscriptionCancellationCollectionResponse = rebilly.GetSubscriptionCancellationCollectionResponse;
|
|
96182
|
+
export type GetSubscriptionCancellationCollectionResponsePromise = rebilly.GetSubscriptionCancellationCollectionResponsePromise;
|
|
96183
|
+
export type PostSubscriptionCancellationRequest = rebilly.PostSubscriptionCancellationRequest;
|
|
96184
|
+
export type CreateSubscriptionCancellationRequest = rebilly.CreateSubscriptionCancellationRequest;
|
|
96185
|
+
export type PostSubscriptionCancellationResponse = rebilly.PostSubscriptionCancellationResponse;
|
|
96186
|
+
export type PostSubscriptionCancellationResponsePromise = rebilly.PostSubscriptionCancellationResponsePromise;
|
|
96187
|
+
export type GetSubscriptionCancellationRequest = rebilly.GetSubscriptionCancellationRequest;
|
|
96188
|
+
export type GetSubscriptionCancellationResponse = rebilly.GetSubscriptionCancellationResponse;
|
|
96189
|
+
export type GetSubscriptionCancellationResponsePromise = rebilly.GetSubscriptionCancellationResponsePromise;
|
|
96190
|
+
export type PutSubscriptionCancellationRequest = rebilly.PutSubscriptionCancellationRequest;
|
|
96191
|
+
export type PutSubscriptionCancellationResponse = rebilly.PutSubscriptionCancellationResponse;
|
|
96192
|
+
export type PutSubscriptionCancellationResponsePromise = rebilly.PutSubscriptionCancellationResponsePromise;
|
|
96193
|
+
export type PatchSubscriptionCancellationRequest = rebilly.PatchSubscriptionCancellationRequest;
|
|
96194
|
+
export type PatchSubscriptionCancellationResponse = rebilly.PatchSubscriptionCancellationResponse;
|
|
96195
|
+
export type PatchSubscriptionCancellationResponsePromise = rebilly.PatchSubscriptionCancellationResponsePromise;
|
|
96196
|
+
export type DeleteSubscriptionCancellationResponse = rebilly.DeleteSubscriptionCancellationResponse;
|
|
96197
|
+
export type DeleteSubscriptionCancellationResponsePromise = rebilly.DeleteSubscriptionCancellationResponsePromise;
|
|
96198
|
+
export type GetSubscriptionReactivationCollectionRequest = rebilly.GetSubscriptionReactivationCollectionRequest;
|
|
96199
|
+
export type GetSubscriptionReactivationCollectionResponse = rebilly.GetSubscriptionReactivationCollectionResponse;
|
|
96200
|
+
export type GetSubscriptionReactivationCollectionResponsePromise = rebilly.GetSubscriptionReactivationCollectionResponsePromise;
|
|
96201
|
+
export type PostSubscriptionReactivationRequest = rebilly.PostSubscriptionReactivationRequest;
|
|
96202
|
+
export type CreateSubscriptionReactivationRequest = rebilly.CreateSubscriptionReactivationRequest;
|
|
96203
|
+
export type PostSubscriptionReactivationResponse = rebilly.PostSubscriptionReactivationResponse;
|
|
96204
|
+
export type PostSubscriptionReactivationResponsePromise = rebilly.PostSubscriptionReactivationResponsePromise;
|
|
96205
|
+
export type GetSubscriptionReactivationRequest = rebilly.GetSubscriptionReactivationRequest;
|
|
96206
|
+
export type GetSubscriptionReactivationResponse = rebilly.GetSubscriptionReactivationResponse;
|
|
96207
|
+
export type GetSubscriptionReactivationResponsePromise = rebilly.GetSubscriptionReactivationResponsePromise;
|
|
96208
|
+
export type GetSubscriptionUpcomingInvoiceCollectionRequest = rebilly.GetSubscriptionUpcomingInvoiceCollectionRequest;
|
|
96209
|
+
export type GetSubscriptionUpcomingInvoiceCollectionResponse = rebilly.GetSubscriptionUpcomingInvoiceCollectionResponse;
|
|
96210
|
+
export type GetSubscriptionUpcomingInvoiceCollectionResponsePromise = rebilly.GetSubscriptionUpcomingInvoiceCollectionResponsePromise;
|
|
96211
|
+
export type GetSubscriptionUpcomingInvoiceRequest = rebilly.GetSubscriptionUpcomingInvoiceRequest;
|
|
96212
|
+
export type GetSubscriptionUpcomingInvoiceResponse = rebilly.GetSubscriptionUpcomingInvoiceResponse;
|
|
96213
|
+
export type GetSubscriptionUpcomingInvoiceResponsePromise = rebilly.GetSubscriptionUpcomingInvoiceResponsePromise;
|
|
96214
|
+
export type PostSubscriptionUpcomingInvoiceIssuanceRequest = rebilly.PostSubscriptionUpcomingInvoiceIssuanceRequest;
|
|
96215
|
+
export type CreateSubscriptionUpcomingInvoiceIssuanceRequest = rebilly.CreateSubscriptionUpcomingInvoiceIssuanceRequest;
|
|
96216
|
+
export type PostSubscriptionUpcomingInvoiceIssuanceResponse = rebilly.PostSubscriptionUpcomingInvoiceIssuanceResponse;
|
|
96217
|
+
export type PostSubscriptionUpcomingInvoiceIssuanceResponsePromise = rebilly.PostSubscriptionUpcomingInvoiceIssuanceResponsePromise;
|
|
96218
|
+
export type PostOrderUpcomingInvoiceIssuanceRequest = rebilly.PostOrderUpcomingInvoiceIssuanceRequest;
|
|
96219
|
+
export type CreateOrderUpcomingInvoiceIssuanceRequest = rebilly.CreateOrderUpcomingInvoiceIssuanceRequest;
|
|
96220
|
+
export type PostOrderUpcomingInvoiceIssuanceResponse = rebilly.PostOrderUpcomingInvoiceIssuanceResponse;
|
|
96221
|
+
export type PostOrderUpcomingInvoiceIssuanceResponsePromise = rebilly.PostOrderUpcomingInvoiceIssuanceResponsePromise;
|
|
96222
|
+
export type PostUpcomingInvoiceIssuanceRequest = rebilly.PostUpcomingInvoiceIssuanceRequest;
|
|
96223
|
+
export type CreateUpcomingInvoiceIssuanceRequest = rebilly.CreateUpcomingInvoiceIssuanceRequest;
|
|
96224
|
+
export type PostUpcomingInvoiceIssuanceResponse = rebilly.PostUpcomingInvoiceIssuanceResponse;
|
|
96225
|
+
export type PostUpcomingInvoiceIssuanceResponsePromise = rebilly.PostUpcomingInvoiceIssuanceResponsePromise;
|
|
96226
|
+
export type GetSubscriptionTimelineCollectionRequest = rebilly.GetSubscriptionTimelineCollectionRequest;
|
|
96227
|
+
export type GetSubscriptionTimelineCollectionResponse = rebilly.GetSubscriptionTimelineCollectionResponse;
|
|
96228
|
+
export type GetSubscriptionTimelineCollectionResponsePromise = rebilly.GetSubscriptionTimelineCollectionResponsePromise;
|
|
96229
|
+
export type PostSubscriptionTimelineRequest = rebilly.PostSubscriptionTimelineRequest;
|
|
96230
|
+
export type CreateSubscriptionTimelineRequest = rebilly.CreateSubscriptionTimelineRequest;
|
|
96231
|
+
export type PostSubscriptionTimelineResponse = rebilly.PostSubscriptionTimelineResponse;
|
|
96232
|
+
export type PostSubscriptionTimelineResponsePromise = rebilly.PostSubscriptionTimelineResponsePromise;
|
|
96233
|
+
export type GetSubscriptionTimelineRequest = rebilly.GetSubscriptionTimelineRequest;
|
|
96234
|
+
export type GetSubscriptionTimelineResponse = rebilly.GetSubscriptionTimelineResponse;
|
|
96235
|
+
export type GetSubscriptionTimelineResponsePromise = rebilly.GetSubscriptionTimelineResponsePromise;
|
|
96236
|
+
export type DeleteSubscriptionTimelineResponse = rebilly.DeleteSubscriptionTimelineResponse;
|
|
96237
|
+
export type DeleteSubscriptionTimelineResponsePromise = rebilly.DeleteSubscriptionTimelineResponsePromise;
|
|
96238
|
+
export type GetUsageCollectionRequest = rebilly.GetUsageCollectionRequest;
|
|
96239
|
+
export type GetUsageCollectionResponse = rebilly.GetUsageCollectionResponse;
|
|
96240
|
+
export type GetUsageCollectionResponsePromise = rebilly.GetUsageCollectionResponsePromise;
|
|
96241
|
+
export type PostUsageRequest = rebilly.PostUsageRequest;
|
|
96242
|
+
export type CreateUsageRequest = rebilly.CreateUsageRequest;
|
|
96243
|
+
export type PostUsageResponse = rebilly.PostUsageResponse;
|
|
96244
|
+
export type PostUsageResponsePromise = rebilly.PostUsageResponsePromise;
|
|
96245
|
+
export type GetUsageRequest = rebilly.GetUsageRequest;
|
|
96246
|
+
export type GetUsageResponse = rebilly.GetUsageResponse;
|
|
96247
|
+
export type GetUsageResponsePromise = rebilly.GetUsageResponsePromise;
|
|
96248
|
+
export type DeleteUsageResponse = rebilly.DeleteUsageResponse;
|
|
96249
|
+
export type DeleteUsageResponsePromise = rebilly.DeleteUsageResponsePromise;
|
|
96250
|
+
export type GetTagCollectionRequest = rebilly.GetTagCollectionRequest;
|
|
96251
|
+
export type GetTagCollectionResponse = rebilly.GetTagCollectionResponse;
|
|
96252
|
+
export type GetTagCollectionResponsePromise = rebilly.GetTagCollectionResponsePromise;
|
|
96253
|
+
export type PostTagRequest = rebilly.PostTagRequest;
|
|
96254
|
+
export type CreateTagRequest = rebilly.CreateTagRequest;
|
|
96255
|
+
export type PostTagResponse = rebilly.PostTagResponse;
|
|
96256
|
+
export type PostTagResponsePromise = rebilly.PostTagResponsePromise;
|
|
96257
|
+
export type GetTagRequest = rebilly.GetTagRequest;
|
|
96258
|
+
export type GetTagResponse = rebilly.GetTagResponse;
|
|
96259
|
+
export type GetTagResponsePromise = rebilly.GetTagResponsePromise;
|
|
96260
|
+
export type PatchTagRequest = rebilly.PatchTagRequest;
|
|
96261
|
+
export type PatchTagResponse = rebilly.PatchTagResponse;
|
|
96262
|
+
export type PatchTagResponsePromise = rebilly.PatchTagResponsePromise;
|
|
96263
|
+
export type DeleteTagResponse = rebilly.DeleteTagResponse;
|
|
96264
|
+
export type DeleteTagResponsePromise = rebilly.DeleteTagResponsePromise;
|
|
96265
|
+
export type PostTagCustomerCollectionRequest = rebilly.PostTagCustomerCollectionRequest;
|
|
96266
|
+
export type CreateTagCustomerCollectionRequest = rebilly.CreateTagCustomerCollectionRequest;
|
|
96267
|
+
export type PostTagCustomerCollectionResponse = rebilly.PostTagCustomerCollectionResponse;
|
|
96268
|
+
export type PostTagCustomerCollectionResponsePromise = rebilly.PostTagCustomerCollectionResponsePromise;
|
|
96269
|
+
export type DeleteTagCustomerCollectionRequest = rebilly.DeleteTagCustomerCollectionRequest;
|
|
96270
|
+
export type DeleteTagCustomerCollectionResponse = rebilly.DeleteTagCustomerCollectionResponse;
|
|
96271
|
+
export type DeleteTagCustomerCollectionResponsePromise = rebilly.DeleteTagCustomerCollectionResponsePromise;
|
|
96272
|
+
export type PostTagCustomerResponse = rebilly.PostTagCustomerResponse;
|
|
96273
|
+
export type PostTagCustomerResponsePromise = rebilly.PostTagCustomerResponsePromise;
|
|
96274
|
+
export type DeleteTagCustomerResponse = rebilly.DeleteTagCustomerResponse;
|
|
96275
|
+
export type DeleteTagCustomerResponsePromise = rebilly.DeleteTagCustomerResponsePromise;
|
|
96276
|
+
export type PostTagKycDocumentCollectionRequest = rebilly.PostTagKycDocumentCollectionRequest;
|
|
96277
|
+
export type CreateTagKycDocumentCollectionRequest = rebilly.CreateTagKycDocumentCollectionRequest;
|
|
96278
|
+
export type PostTagKycDocumentCollectionResponse = rebilly.PostTagKycDocumentCollectionResponse;
|
|
96279
|
+
export type PostTagKycDocumentCollectionResponsePromise = rebilly.PostTagKycDocumentCollectionResponsePromise;
|
|
96280
|
+
export type DeleteTagKycDocumentCollectionRequest = rebilly.DeleteTagKycDocumentCollectionRequest;
|
|
96281
|
+
export type DeleteTagKycDocumentCollectionResponse = rebilly.DeleteTagKycDocumentCollectionResponse;
|
|
96282
|
+
export type DeleteTagKycDocumentCollectionResponsePromise = rebilly.DeleteTagKycDocumentCollectionResponsePromise;
|
|
96283
|
+
export type PostTagKycDocumentResponse = rebilly.PostTagKycDocumentResponse;
|
|
96284
|
+
export type PostTagKycDocumentResponsePromise = rebilly.PostTagKycDocumentResponsePromise;
|
|
96285
|
+
export type DeleteTagKycDocumentResponse = rebilly.DeleteTagKycDocumentResponse;
|
|
96286
|
+
export type DeleteTagKycDocumentResponsePromise = rebilly.DeleteTagKycDocumentResponsePromise;
|
|
96287
|
+
export type PostTagAmlCheckCollectionRequest = rebilly.PostTagAmlCheckCollectionRequest;
|
|
96288
|
+
export type CreateTagAmlCheckCollectionRequest = rebilly.CreateTagAmlCheckCollectionRequest;
|
|
96289
|
+
export type PostTagAmlCheckCollectionResponse = rebilly.PostTagAmlCheckCollectionResponse;
|
|
96290
|
+
export type PostTagAmlCheckCollectionResponsePromise = rebilly.PostTagAmlCheckCollectionResponsePromise;
|
|
96291
|
+
export type DeleteTagAmlCheckCollectionRequest = rebilly.DeleteTagAmlCheckCollectionRequest;
|
|
96292
|
+
export type DeleteTagAmlCheckCollectionResponse = rebilly.DeleteTagAmlCheckCollectionResponse;
|
|
96293
|
+
export type DeleteTagAmlCheckCollectionResponsePromise = rebilly.DeleteTagAmlCheckCollectionResponsePromise;
|
|
96294
|
+
export type PostTagAmlCheckResponse = rebilly.PostTagAmlCheckResponse;
|
|
96295
|
+
export type PostTagAmlCheckResponsePromise = rebilly.PostTagAmlCheckResponsePromise;
|
|
96296
|
+
export type DeleteTagAmlCheckResponse = rebilly.DeleteTagAmlCheckResponse;
|
|
96297
|
+
export type DeleteTagAmlCheckResponsePromise = rebilly.DeleteTagAmlCheckResponsePromise;
|
|
96298
|
+
export type GetTokenCollectionRequest = rebilly.GetTokenCollectionRequest;
|
|
96299
|
+
export type GetTokenCollectionResponse = rebilly.GetTokenCollectionResponse;
|
|
96300
|
+
export type GetTokenCollectionResponsePromise = rebilly.GetTokenCollectionResponsePromise;
|
|
96301
|
+
export type PostTokenRequest = rebilly.PostTokenRequest;
|
|
96302
|
+
export type CreateTokenRequest = rebilly.CreateTokenRequest;
|
|
96303
|
+
export type PostTokenResponse = rebilly.PostTokenResponse;
|
|
96304
|
+
export type PostTokenResponsePromise = rebilly.PostTokenResponsePromise;
|
|
96305
|
+
export type GetTokenRequest = rebilly.GetTokenRequest;
|
|
96306
|
+
export type GetTokenResponse = rebilly.GetTokenResponse;
|
|
96307
|
+
export type GetTokenResponsePromise = rebilly.GetTokenResponsePromise;
|
|
96308
|
+
export type PostDigitalWalletValidationRequest = rebilly.PostDigitalWalletValidationRequest;
|
|
96309
|
+
export type CreateDigitalWalletValidationRequest = rebilly.CreateDigitalWalletValidationRequest;
|
|
96310
|
+
export type PostDigitalWalletValidationResponse = rebilly.PostDigitalWalletValidationResponse;
|
|
96311
|
+
export type PostDigitalWalletValidationResponsePromise = rebilly.PostDigitalWalletValidationResponsePromise;
|
|
96312
|
+
export type GetTransactionCollectionRequest = rebilly.GetTransactionCollectionRequest;
|
|
96313
|
+
export type GetTransactionCollectionResponse = rebilly.GetTransactionCollectionResponse;
|
|
96314
|
+
export type GetTransactionCollectionResponsePromise = rebilly.GetTransactionCollectionResponsePromise;
|
|
96315
|
+
export type PostTransactionRequest = rebilly.PostTransactionRequest;
|
|
96316
|
+
export type CreateTransactionRequest = rebilly.CreateTransactionRequest;
|
|
96317
|
+
export type PostTransactionResponse = rebilly.PostTransactionResponse;
|
|
96318
|
+
export type PostTransactionResponsePromise = rebilly.PostTransactionResponsePromise;
|
|
96319
|
+
export type GetTransactionRequest = rebilly.GetTransactionRequest;
|
|
96320
|
+
export type GetTransactionResponse = rebilly.GetTransactionResponse;
|
|
96321
|
+
export type GetTransactionResponsePromise = rebilly.GetTransactionResponsePromise;
|
|
96322
|
+
export type PatchTransactionRequest = rebilly.PatchTransactionRequest;
|
|
96323
|
+
export type PatchTransactionResponse = rebilly.PatchTransactionResponse;
|
|
96324
|
+
export type PatchTransactionResponsePromise = rebilly.PatchTransactionResponsePromise;
|
|
96325
|
+
export type PostPayoutRequest = rebilly.PostPayoutRequest;
|
|
96326
|
+
export type CreatePayoutRequest = rebilly.CreatePayoutRequest;
|
|
96327
|
+
export type PostPayoutResponse = rebilly.PostPayoutResponse;
|
|
96328
|
+
export type PostPayoutResponsePromise = rebilly.PostPayoutResponsePromise;
|
|
96329
|
+
export type PostTransactionQueryResponse = rebilly.PostTransactionQueryResponse;
|
|
96330
|
+
export type PostTransactionQueryResponsePromise = rebilly.PostTransactionQueryResponsePromise;
|
|
96331
|
+
export type PostTransactionUpdateRequest = rebilly.PostTransactionUpdateRequest;
|
|
96332
|
+
export type CreateTransactionUpdateRequest = rebilly.CreateTransactionUpdateRequest;
|
|
96333
|
+
export type PostTransactionUpdateResponse = rebilly.PostTransactionUpdateResponse;
|
|
96334
|
+
export type PostTransactionUpdateResponsePromise = rebilly.PostTransactionUpdateResponsePromise;
|
|
96335
|
+
export type PostTransactionRefundRequest = rebilly.PostTransactionRefundRequest;
|
|
96336
|
+
export type CreateTransactionRefundRequest = rebilly.CreateTransactionRefundRequest;
|
|
96337
|
+
export type PostTransactionRefundResponse = rebilly.PostTransactionRefundResponse;
|
|
96338
|
+
export type PostTransactionRefundResponsePromise = rebilly.PostTransactionRefundResponsePromise;
|
|
96339
|
+
export type GetTransactionTimelineCollectionRequest = rebilly.GetTransactionTimelineCollectionRequest;
|
|
96340
|
+
export type GetTransactionTimelineCollectionResponse = rebilly.GetTransactionTimelineCollectionResponse;
|
|
96341
|
+
export type GetTransactionTimelineCollectionResponsePromise = rebilly.GetTransactionTimelineCollectionResponsePromise;
|
|
96342
|
+
export type PostTransactionTimelineRequest = rebilly.PostTransactionTimelineRequest;
|
|
96343
|
+
export type CreateTransactionTimelineRequest = rebilly.CreateTransactionTimelineRequest;
|
|
96344
|
+
export type PostTransactionTimelineResponse = rebilly.PostTransactionTimelineResponse;
|
|
96345
|
+
export type PostTransactionTimelineResponsePromise = rebilly.PostTransactionTimelineResponsePromise;
|
|
96346
|
+
export type GetTransactionTimelineRequest = rebilly.GetTransactionTimelineRequest;
|
|
96347
|
+
export type GetTransactionTimelineResponse = rebilly.GetTransactionTimelineResponse;
|
|
96348
|
+
export type GetTransactionTimelineResponsePromise = rebilly.GetTransactionTimelineResponsePromise;
|
|
96349
|
+
export type DeleteTransactionTimelineResponse = rebilly.DeleteTransactionTimelineResponse;
|
|
96350
|
+
export type DeleteTransactionTimelineResponsePromise = rebilly.DeleteTransactionTimelineResponsePromise;
|
|
96351
|
+
export type GetFeeCollectionRequest = rebilly.GetFeeCollectionRequest;
|
|
96352
|
+
export type GetFeeCollectionResponse = rebilly.GetFeeCollectionResponse;
|
|
96353
|
+
export type GetFeeCollectionResponsePromise = rebilly.GetFeeCollectionResponsePromise;
|
|
96354
|
+
export type PostFeeRequest = rebilly.PostFeeRequest;
|
|
96355
|
+
export type CreateFeeRequest = rebilly.CreateFeeRequest;
|
|
96356
|
+
export type PostFeeResponse = rebilly.PostFeeResponse;
|
|
96357
|
+
export type PostFeeResponsePromise = rebilly.PostFeeResponsePromise;
|
|
96358
|
+
export type GetFeeRequest = rebilly.GetFeeRequest;
|
|
96359
|
+
export type GetFeeResponse = rebilly.GetFeeResponse;
|
|
96360
|
+
export type GetFeeResponsePromise = rebilly.GetFeeResponsePromise;
|
|
96361
|
+
export type PutFeeRequest = rebilly.PutFeeRequest;
|
|
96362
|
+
export type PutFeeResponse = rebilly.PutFeeResponse;
|
|
96363
|
+
export type PutFeeResponsePromise = rebilly.PutFeeResponsePromise;
|
|
96364
|
+
export type PatchFeeRequest = rebilly.PatchFeeRequest;
|
|
96365
|
+
export type PatchFeeResponse = rebilly.PatchFeeResponse;
|
|
96366
|
+
export type PatchFeeResponsePromise = rebilly.PatchFeeResponsePromise;
|
|
96367
|
+
export type DeleteFeeResponse = rebilly.DeleteFeeResponse;
|
|
96368
|
+
export type DeleteFeeResponsePromise = rebilly.DeleteFeeResponsePromise;
|
|
96369
|
+
export type GetApiKeyCollectionRequest = rebilly.GetApiKeyCollectionRequest;
|
|
96370
|
+
export type GetApiKeyCollectionResponse = rebilly.GetApiKeyCollectionResponse;
|
|
96371
|
+
export type GetApiKeyCollectionResponsePromise = rebilly.GetApiKeyCollectionResponsePromise;
|
|
96372
|
+
export type PostApiKeyRequest = rebilly.PostApiKeyRequest;
|
|
96373
|
+
export type CreateApiKeyRequest = rebilly.CreateApiKeyRequest;
|
|
96374
|
+
export type PostApiKeyResponse = rebilly.PostApiKeyResponse;
|
|
96375
|
+
export type PostApiKeyResponsePromise = rebilly.PostApiKeyResponsePromise;
|
|
96376
|
+
export type GetApiKeyRequest = rebilly.GetApiKeyRequest;
|
|
96377
|
+
export type GetApiKeyResponse = rebilly.GetApiKeyResponse;
|
|
96378
|
+
export type GetApiKeyResponsePromise = rebilly.GetApiKeyResponsePromise;
|
|
96379
|
+
export type PutApiKeyRequest = rebilly.PutApiKeyRequest;
|
|
96380
|
+
export type PutApiKeyResponse = rebilly.PutApiKeyResponse;
|
|
96381
|
+
export type PutApiKeyResponsePromise = rebilly.PutApiKeyResponsePromise;
|
|
96382
|
+
export type DeleteApiKeyResponse = rebilly.DeleteApiKeyResponse;
|
|
96383
|
+
export type DeleteApiKeyResponsePromise = rebilly.DeleteApiKeyResponsePromise;
|
|
96384
|
+
export type GetBalanceTransactionCollectionRequest = rebilly.GetBalanceTransactionCollectionRequest;
|
|
96385
|
+
export type GetBalanceTransactionCollectionResponse = rebilly.GetBalanceTransactionCollectionResponse;
|
|
96386
|
+
export type GetBalanceTransactionCollectionResponsePromise = rebilly.GetBalanceTransactionCollectionResponsePromise;
|
|
96387
|
+
export type GetBalanceTransactionRequest = rebilly.GetBalanceTransactionRequest;
|
|
96388
|
+
export type GetBalanceTransactionResponse = rebilly.GetBalanceTransactionResponse;
|
|
96389
|
+
export type GetBalanceTransactionResponsePromise = rebilly.GetBalanceTransactionResponsePromise;
|
|
96390
|
+
export type GetBillingPortalCollectionRequest = rebilly.GetBillingPortalCollectionRequest;
|
|
96391
|
+
export type GetBillingPortalCollectionResponse = rebilly.GetBillingPortalCollectionResponse;
|
|
96392
|
+
export type GetBillingPortalCollectionResponsePromise = rebilly.GetBillingPortalCollectionResponsePromise;
|
|
96393
|
+
export type PostBillingPortalRequest = rebilly.PostBillingPortalRequest;
|
|
96394
|
+
export type CreateBillingPortalRequest = rebilly.CreateBillingPortalRequest;
|
|
96395
|
+
export type PostBillingPortalResponse = rebilly.PostBillingPortalResponse;
|
|
96396
|
+
export type PostBillingPortalResponsePromise = rebilly.PostBillingPortalResponsePromise;
|
|
96397
|
+
export type GetBillingPortalRequest = rebilly.GetBillingPortalRequest;
|
|
96398
|
+
export type GetBillingPortalResponse = rebilly.GetBillingPortalResponse;
|
|
96399
|
+
export type GetBillingPortalResponsePromise = rebilly.GetBillingPortalResponsePromise;
|
|
96400
|
+
export type PutBillingPortalRequest = rebilly.PutBillingPortalRequest;
|
|
96401
|
+
export type PutBillingPortalResponse = rebilly.PutBillingPortalResponse;
|
|
96402
|
+
export type PutBillingPortalResponsePromise = rebilly.PutBillingPortalResponsePromise;
|
|
96403
|
+
export type DeleteBillingPortalResponse = rebilly.DeleteBillingPortalResponse;
|
|
96404
|
+
export type DeleteBillingPortalResponsePromise = rebilly.DeleteBillingPortalResponsePromise;
|
|
96405
|
+
export type GetBroadcastMessageCollectionRequest = rebilly.GetBroadcastMessageCollectionRequest;
|
|
96406
|
+
export type GetBroadcastMessageCollectionResponse = rebilly.GetBroadcastMessageCollectionResponse;
|
|
96407
|
+
export type GetBroadcastMessageCollectionResponsePromise = rebilly.GetBroadcastMessageCollectionResponsePromise;
|
|
96408
|
+
export type PostBroadcastMessageRequest = rebilly.PostBroadcastMessageRequest;
|
|
96409
|
+
export type CreateBroadcastMessageRequest = rebilly.CreateBroadcastMessageRequest;
|
|
96410
|
+
export type PostBroadcastMessageResponse = rebilly.PostBroadcastMessageResponse;
|
|
96411
|
+
export type PostBroadcastMessageResponsePromise = rebilly.PostBroadcastMessageResponsePromise;
|
|
96412
|
+
export type GetBroadcastMessageRequest = rebilly.GetBroadcastMessageRequest;
|
|
96413
|
+
export type GetBroadcastMessageResponse = rebilly.GetBroadcastMessageResponse;
|
|
96414
|
+
export type GetBroadcastMessageResponsePromise = rebilly.GetBroadcastMessageResponsePromise;
|
|
96415
|
+
export type PatchBroadcastMessageRequest = rebilly.PatchBroadcastMessageRequest;
|
|
96416
|
+
export type PatchBroadcastMessageResponse = rebilly.PatchBroadcastMessageResponse;
|
|
96417
|
+
export type PatchBroadcastMessageResponsePromise = rebilly.PatchBroadcastMessageResponsePromise;
|
|
96418
|
+
export type DeleteBroadcastMessageResponse = rebilly.DeleteBroadcastMessageResponse;
|
|
96419
|
+
export type DeleteBroadcastMessageResponsePromise = rebilly.DeleteBroadcastMessageResponsePromise;
|
|
96420
|
+
export type GetDepositRequestCollectionRequest = rebilly.GetDepositRequestCollectionRequest;
|
|
96421
|
+
export type GetDepositRequestCollectionResponse = rebilly.GetDepositRequestCollectionResponse;
|
|
96422
|
+
export type GetDepositRequestCollectionResponsePromise = rebilly.GetDepositRequestCollectionResponsePromise;
|
|
96423
|
+
export type PostDepositRequestRequest = rebilly.PostDepositRequestRequest;
|
|
96424
|
+
export type CreateDepositRequestRequest = rebilly.CreateDepositRequestRequest;
|
|
96425
|
+
export type PostDepositRequestResponse = rebilly.PostDepositRequestResponse;
|
|
96426
|
+
export type PostDepositRequestResponsePromise = rebilly.PostDepositRequestResponsePromise;
|
|
96427
|
+
export type GetDepositRequestRequest = rebilly.GetDepositRequestRequest;
|
|
96428
|
+
export type GetDepositRequestResponse = rebilly.GetDepositRequestResponse;
|
|
96429
|
+
export type GetDepositRequestResponsePromise = rebilly.GetDepositRequestResponsePromise;
|
|
96430
|
+
export type PostCashierRequest = rebilly.PostCashierRequest;
|
|
96431
|
+
export type CreateCashierRequest = rebilly.CreateCashierRequest;
|
|
96432
|
+
export type PostCashierResponse = rebilly.PostCashierResponse;
|
|
96433
|
+
export type PostCashierResponsePromise = rebilly.PostCashierResponsePromise;
|
|
96434
|
+
export type GetCashierRequest = rebilly.GetCashierRequest;
|
|
96435
|
+
export type GetCashierResponse = rebilly.GetCashierResponse;
|
|
96436
|
+
export type GetCashierResponsePromise = rebilly.GetCashierResponsePromise;
|
|
96437
|
+
export type GetDepositStrategyCollectionRequest = rebilly.GetDepositStrategyCollectionRequest;
|
|
96438
|
+
export type GetDepositStrategyCollectionResponse = rebilly.GetDepositStrategyCollectionResponse;
|
|
96439
|
+
export type GetDepositStrategyCollectionResponsePromise = rebilly.GetDepositStrategyCollectionResponsePromise;
|
|
96440
|
+
export type PostDepositStrategyRequest = rebilly.PostDepositStrategyRequest;
|
|
96441
|
+
export type CreateDepositStrategyRequest = rebilly.CreateDepositStrategyRequest;
|
|
96442
|
+
export type PostDepositStrategyResponse = rebilly.PostDepositStrategyResponse;
|
|
96443
|
+
export type PostDepositStrategyResponsePromise = rebilly.PostDepositStrategyResponsePromise;
|
|
96444
|
+
export type GetDepositStrategyRequest = rebilly.GetDepositStrategyRequest;
|
|
96445
|
+
export type GetDepositStrategyResponse = rebilly.GetDepositStrategyResponse;
|
|
96446
|
+
export type GetDepositStrategyResponsePromise = rebilly.GetDepositStrategyResponsePromise;
|
|
96447
|
+
export type PutDepositStrategyRequest = rebilly.PutDepositStrategyRequest;
|
|
96448
|
+
export type PutDepositStrategyResponse = rebilly.PutDepositStrategyResponse;
|
|
96449
|
+
export type PutDepositStrategyResponsePromise = rebilly.PutDepositStrategyResponsePromise;
|
|
96450
|
+
export type DeleteDepositStrategyResponse = rebilly.DeleteDepositStrategyResponse;
|
|
96451
|
+
export type DeleteDepositStrategyResponsePromise = rebilly.DeleteDepositStrategyResponsePromise;
|
|
96452
|
+
export type GetDepositCustomPropertySetCollectionRequest = rebilly.GetDepositCustomPropertySetCollectionRequest;
|
|
96453
|
+
export type GetDepositCustomPropertySetCollectionResponse = rebilly.GetDepositCustomPropertySetCollectionResponse;
|
|
96454
|
+
export type GetDepositCustomPropertySetCollectionResponsePromise = rebilly.GetDepositCustomPropertySetCollectionResponsePromise;
|
|
96455
|
+
export type PostDepositCustomPropertySetRequest = rebilly.PostDepositCustomPropertySetRequest;
|
|
96456
|
+
export type CreateDepositCustomPropertySetRequest = rebilly.CreateDepositCustomPropertySetRequest;
|
|
96457
|
+
export type PostDepositCustomPropertySetResponse = rebilly.PostDepositCustomPropertySetResponse;
|
|
96458
|
+
export type PostDepositCustomPropertySetResponsePromise = rebilly.PostDepositCustomPropertySetResponsePromise;
|
|
96459
|
+
export type GetDepositCustomPropertySetRequest = rebilly.GetDepositCustomPropertySetRequest;
|
|
96460
|
+
export type GetDepositCustomPropertySetResponse = rebilly.GetDepositCustomPropertySetResponse;
|
|
96461
|
+
export type GetDepositCustomPropertySetResponsePromise = rebilly.GetDepositCustomPropertySetResponsePromise;
|
|
96462
|
+
export type PutDepositCustomPropertySetRequest = rebilly.PutDepositCustomPropertySetRequest;
|
|
96463
|
+
export type PutDepositCustomPropertySetResponse = rebilly.PutDepositCustomPropertySetResponse;
|
|
96464
|
+
export type PutDepositCustomPropertySetResponsePromise = rebilly.PutDepositCustomPropertySetResponsePromise;
|
|
96465
|
+
export type DeleteDepositCustomPropertySetResponse = rebilly.DeleteDepositCustomPropertySetResponse;
|
|
96466
|
+
export type DeleteDepositCustomPropertySetResponsePromise = rebilly.DeleteDepositCustomPropertySetResponsePromise;
|
|
96467
|
+
export type GetCheckoutFormCollectionRequest = rebilly.GetCheckoutFormCollectionRequest;
|
|
96468
|
+
export type GetCheckoutFormCollectionResponse = rebilly.GetCheckoutFormCollectionResponse;
|
|
96469
|
+
export type GetCheckoutFormCollectionResponsePromise = rebilly.GetCheckoutFormCollectionResponsePromise;
|
|
96470
|
+
export type PostCheckoutFormRequest = rebilly.PostCheckoutFormRequest;
|
|
96471
|
+
export type CreateCheckoutFormRequest = rebilly.CreateCheckoutFormRequest;
|
|
96472
|
+
export type PostCheckoutFormResponse = rebilly.PostCheckoutFormResponse;
|
|
96473
|
+
export type PostCheckoutFormResponsePromise = rebilly.PostCheckoutFormResponsePromise;
|
|
96474
|
+
export type GetCheckoutFormRequest = rebilly.GetCheckoutFormRequest;
|
|
96475
|
+
export type GetCheckoutFormResponse = rebilly.GetCheckoutFormResponse;
|
|
96476
|
+
export type GetCheckoutFormResponsePromise = rebilly.GetCheckoutFormResponsePromise;
|
|
96477
|
+
export type PutCheckoutFormRequest = rebilly.PutCheckoutFormRequest;
|
|
96478
|
+
export type PutCheckoutFormResponse = rebilly.PutCheckoutFormResponse;
|
|
96479
|
+
export type PutCheckoutFormResponsePromise = rebilly.PutCheckoutFormResponsePromise;
|
|
96480
|
+
export type DeleteCheckoutFormResponse = rebilly.DeleteCheckoutFormResponse;
|
|
96481
|
+
export type DeleteCheckoutFormResponsePromise = rebilly.DeleteCheckoutFormResponsePromise;
|
|
96482
|
+
export type GetServiceCredentialCollectionRequest = rebilly.GetServiceCredentialCollectionRequest;
|
|
96483
|
+
export type GetServiceCredentialCollectionResponse = rebilly.GetServiceCredentialCollectionResponse;
|
|
96484
|
+
export type GetServiceCredentialCollectionResponsePromise = rebilly.GetServiceCredentialCollectionResponsePromise;
|
|
96485
|
+
export type PostServiceCredentialRequest = rebilly.PostServiceCredentialRequest;
|
|
96486
|
+
export type CreateServiceCredentialRequest = rebilly.CreateServiceCredentialRequest;
|
|
96487
|
+
export type PostServiceCredentialResponse = rebilly.PostServiceCredentialResponse;
|
|
96488
|
+
export type PostServiceCredentialResponsePromise = rebilly.PostServiceCredentialResponsePromise;
|
|
96489
|
+
export type GetServiceCredentialRequest = rebilly.GetServiceCredentialRequest;
|
|
96490
|
+
export type GetServiceCredentialResponse = rebilly.GetServiceCredentialResponse;
|
|
96491
|
+
export type GetServiceCredentialResponsePromise = rebilly.GetServiceCredentialResponsePromise;
|
|
96492
|
+
export type PatchServiceCredentialRequest = rebilly.PatchServiceCredentialRequest;
|
|
96493
|
+
export type PatchServiceCredentialResponse = rebilly.PatchServiceCredentialResponse;
|
|
96494
|
+
export type PatchServiceCredentialResponsePromise = rebilly.PatchServiceCredentialResponsePromise;
|
|
96495
|
+
export type GetServiceCredentialItemCollectionRequest = rebilly.GetServiceCredentialItemCollectionRequest;
|
|
96496
|
+
export type GetServiceCredentialItemCollectionResponse = rebilly.GetServiceCredentialItemCollectionResponse;
|
|
96497
|
+
export type GetServiceCredentialItemCollectionResponsePromise = rebilly.GetServiceCredentialItemCollectionResponsePromise;
|
|
96498
|
+
export type GetCustomDomainCollectionRequest = rebilly.GetCustomDomainCollectionRequest;
|
|
96499
|
+
export type GetCustomDomainCollectionResponse = rebilly.GetCustomDomainCollectionResponse;
|
|
96500
|
+
export type GetCustomDomainCollectionResponsePromise = rebilly.GetCustomDomainCollectionResponsePromise;
|
|
96501
|
+
export type PostCustomDomainRequest = rebilly.PostCustomDomainRequest;
|
|
96502
|
+
export type CreateCustomDomainRequest = rebilly.CreateCustomDomainRequest;
|
|
96503
|
+
export type PostCustomDomainResponse = rebilly.PostCustomDomainResponse;
|
|
96504
|
+
export type PostCustomDomainResponsePromise = rebilly.PostCustomDomainResponsePromise;
|
|
96505
|
+
export type GetCustomDomainRequest = rebilly.GetCustomDomainRequest;
|
|
96506
|
+
export type GetCustomDomainResponse = rebilly.GetCustomDomainResponse;
|
|
96507
|
+
export type GetCustomDomainResponsePromise = rebilly.GetCustomDomainResponsePromise;
|
|
96508
|
+
export type DeleteCustomDomainResponse = rebilly.DeleteCustomDomainResponse;
|
|
96509
|
+
export type DeleteCustomDomainResponsePromise = rebilly.DeleteCustomDomainResponsePromise;
|
|
96510
|
+
export type PutEmailDeliverySettingsVerificationResponse = rebilly.PutEmailDeliverySettingsVerificationResponse;
|
|
96511
|
+
export type PutEmailDeliverySettingsVerificationResponsePromise = rebilly.PutEmailDeliverySettingsVerificationResponsePromise;
|
|
96512
|
+
export type GetEmailDeliverySettingCollectionRequest = rebilly.GetEmailDeliverySettingCollectionRequest;
|
|
96513
|
+
export type GetEmailDeliverySettingCollectionResponse = rebilly.GetEmailDeliverySettingCollectionResponse;
|
|
96514
|
+
export type GetEmailDeliverySettingCollectionResponsePromise = rebilly.GetEmailDeliverySettingCollectionResponsePromise;
|
|
96515
|
+
export type PostEmailDeliverySettingRequest = rebilly.PostEmailDeliverySettingRequest;
|
|
96516
|
+
export type CreateEmailDeliverySettingRequest = rebilly.CreateEmailDeliverySettingRequest;
|
|
96517
|
+
export type PostEmailDeliverySettingResponse = rebilly.PostEmailDeliverySettingResponse;
|
|
96518
|
+
export type PostEmailDeliverySettingResponsePromise = rebilly.PostEmailDeliverySettingResponsePromise;
|
|
96519
|
+
export type GetEmailDeliverySettingRequest = rebilly.GetEmailDeliverySettingRequest;
|
|
96520
|
+
export type GetEmailDeliverySettingResponse = rebilly.GetEmailDeliverySettingResponse;
|
|
96521
|
+
export type GetEmailDeliverySettingResponsePromise = rebilly.GetEmailDeliverySettingResponsePromise;
|
|
96522
|
+
export type PatchEmailDeliverySettingRequest = rebilly.PatchEmailDeliverySettingRequest;
|
|
96523
|
+
export type PatchEmailDeliverySettingResponse = rebilly.PatchEmailDeliverySettingResponse;
|
|
96524
|
+
export type PatchEmailDeliverySettingResponsePromise = rebilly.PatchEmailDeliverySettingResponsePromise;
|
|
96525
|
+
export type DeleteEmailDeliverySettingResponse = rebilly.DeleteEmailDeliverySettingResponse;
|
|
96526
|
+
export type DeleteEmailDeliverySettingResponsePromise = rebilly.DeleteEmailDeliverySettingResponsePromise;
|
|
96527
|
+
export type PostResendEmailDeliverySettingVerificationResponse = rebilly.PostResendEmailDeliverySettingVerificationResponse;
|
|
96528
|
+
export type PostResendEmailDeliverySettingVerificationResponsePromise = rebilly.PostResendEmailDeliverySettingVerificationResponsePromise;
|
|
96529
|
+
export type GetEmailMessageCollectionRequest = rebilly.GetEmailMessageCollectionRequest;
|
|
96530
|
+
export type GetEmailMessageCollectionResponse = rebilly.GetEmailMessageCollectionResponse;
|
|
96531
|
+
export type GetEmailMessageCollectionResponsePromise = rebilly.GetEmailMessageCollectionResponsePromise;
|
|
96532
|
+
export type PostEmailMessageRequest = rebilly.PostEmailMessageRequest;
|
|
96533
|
+
export type CreateEmailMessageRequest = rebilly.CreateEmailMessageRequest;
|
|
96534
|
+
export type PostEmailMessageResponse = rebilly.PostEmailMessageResponse;
|
|
96535
|
+
export type PostEmailMessageResponsePromise = rebilly.PostEmailMessageResponsePromise;
|
|
96536
|
+
export type GetEmailMessageRequest = rebilly.GetEmailMessageRequest;
|
|
96537
|
+
export type GetEmailMessageResponse = rebilly.GetEmailMessageResponse;
|
|
96538
|
+
export type GetEmailMessageResponsePromise = rebilly.GetEmailMessageResponsePromise;
|
|
96539
|
+
export type PatchEmailMessageRequest = rebilly.PatchEmailMessageRequest;
|
|
96540
|
+
export type PatchEmailMessageResponse = rebilly.PatchEmailMessageResponse;
|
|
96541
|
+
export type PatchEmailMessageResponsePromise = rebilly.PatchEmailMessageResponsePromise;
|
|
96542
|
+
export type DeleteEmailMessageResponse = rebilly.DeleteEmailMessageResponse;
|
|
96543
|
+
export type DeleteEmailMessageResponsePromise = rebilly.DeleteEmailMessageResponsePromise;
|
|
96544
|
+
export type GetEmailNotificationCollectionRequest = rebilly.GetEmailNotificationCollectionRequest;
|
|
96545
|
+
export type GetEmailNotificationCollectionResponse = rebilly.GetEmailNotificationCollectionResponse;
|
|
96546
|
+
export type GetEmailNotificationCollectionResponsePromise = rebilly.GetEmailNotificationCollectionResponsePromise;
|
|
96547
|
+
export type GetEventCollectionRequest = rebilly.GetEventCollectionRequest;
|
|
96548
|
+
export type GetEventCollectionResponse = rebilly.GetEventCollectionResponse;
|
|
96549
|
+
export type GetEventCollectionResponsePromise = rebilly.GetEventCollectionResponsePromise;
|
|
96550
|
+
export type GetEventRequest = rebilly.GetEventRequest;
|
|
96551
|
+
export type GetEventResponse = rebilly.GetEventResponse;
|
|
96552
|
+
export type GetEventResponsePromise = rebilly.GetEventResponsePromise;
|
|
96553
|
+
export type GetEventRuleCollectionRequest = rebilly.GetEventRuleCollectionRequest;
|
|
96554
|
+
export type GetEventRuleCollectionResponse = rebilly.GetEventRuleCollectionResponse;
|
|
96555
|
+
export type GetEventRuleCollectionResponsePromise = rebilly.GetEventRuleCollectionResponsePromise;
|
|
96556
|
+
export type PutEventRuleRequest = rebilly.PutEventRuleRequest;
|
|
96557
|
+
export type PutEventRuleResponse = rebilly.PutEventRuleResponse;
|
|
96558
|
+
export type PutEventRuleResponsePromise = rebilly.PutEventRuleResponsePromise;
|
|
96559
|
+
export type GetRuleSetCollectionRequest = rebilly.GetRuleSetCollectionRequest;
|
|
96560
|
+
export type GetRuleSetCollectionResponse = rebilly.GetRuleSetCollectionResponse;
|
|
96561
|
+
export type GetRuleSetCollectionResponsePromise = rebilly.GetRuleSetCollectionResponsePromise;
|
|
96562
|
+
export type PostRuleSetTimelineRequest = rebilly.PostRuleSetTimelineRequest;
|
|
96563
|
+
export type CreateRuleSetTimelineRequest = rebilly.CreateRuleSetTimelineRequest;
|
|
96564
|
+
export type PostRuleSetTimelineResponse = rebilly.PostRuleSetTimelineResponse;
|
|
96565
|
+
export type PostRuleSetTimelineResponsePromise = rebilly.PostRuleSetTimelineResponsePromise;
|
|
96566
|
+
export type GetRuleSetTimelineRequest = rebilly.GetRuleSetTimelineRequest;
|
|
96567
|
+
export type GetRuleSetTimelineResponse = rebilly.GetRuleSetTimelineResponse;
|
|
96568
|
+
export type GetRuleSetTimelineResponsePromise = rebilly.GetRuleSetTimelineResponsePromise;
|
|
96569
|
+
export type DeleteRuleSetTimelineResponse = rebilly.DeleteRuleSetTimelineResponse;
|
|
96570
|
+
export type DeleteRuleSetTimelineResponsePromise = rebilly.DeleteRuleSetTimelineResponsePromise;
|
|
96571
|
+
export type GetEventRuleHistoryCollectionRequest = rebilly.GetEventRuleHistoryCollectionRequest;
|
|
96572
|
+
export type GetEventRuleHistoryCollectionResponse = rebilly.GetEventRuleHistoryCollectionResponse;
|
|
96573
|
+
export type GetEventRuleHistoryCollectionResponsePromise = rebilly.GetEventRuleHistoryCollectionResponsePromise;
|
|
96574
|
+
export type GetEventRuleHistoryRequest = rebilly.GetEventRuleHistoryRequest;
|
|
96575
|
+
export type GetEventRuleHistoryResponse = rebilly.GetEventRuleHistoryResponse;
|
|
96576
|
+
export type GetEventRuleHistoryResponsePromise = rebilly.GetEventRuleHistoryResponsePromise;
|
|
96577
|
+
export type GetEventRuleVersionRequest = rebilly.GetEventRuleVersionRequest;
|
|
96578
|
+
export type GetEventRuleVersionResponse = rebilly.GetEventRuleVersionResponse;
|
|
96579
|
+
export type GetEventRuleVersionResponsePromise = rebilly.GetEventRuleVersionResponsePromise;
|
|
96580
|
+
export type GetEventRuleSetDraftCollectionRequest = rebilly.GetEventRuleSetDraftCollectionRequest;
|
|
96581
|
+
export type GetEventRuleSetDraftCollectionResponse = rebilly.GetEventRuleSetDraftCollectionResponse;
|
|
96582
|
+
export type GetEventRuleSetDraftCollectionResponsePromise = rebilly.GetEventRuleSetDraftCollectionResponsePromise;
|
|
96583
|
+
export type PostEventRuleSetDraftRequest = rebilly.PostEventRuleSetDraftRequest;
|
|
96584
|
+
export type CreateEventRuleSetDraftRequest = rebilly.CreateEventRuleSetDraftRequest;
|
|
96585
|
+
export type PostEventRuleSetDraftResponse = rebilly.PostEventRuleSetDraftResponse;
|
|
96586
|
+
export type PostEventRuleSetDraftResponsePromise = rebilly.PostEventRuleSetDraftResponsePromise;
|
|
96587
|
+
export type GetEventRuleSetDraftRequest = rebilly.GetEventRuleSetDraftRequest;
|
|
96588
|
+
export type GetEventRuleSetDraftResponse = rebilly.GetEventRuleSetDraftResponse;
|
|
96589
|
+
export type GetEventRuleSetDraftResponsePromise = rebilly.GetEventRuleSetDraftResponsePromise;
|
|
96590
|
+
export type PutEventRuleSetDraftRequest = rebilly.PutEventRuleSetDraftRequest;
|
|
96591
|
+
export type PutEventRuleSetDraftResponse = rebilly.PutEventRuleSetDraftResponse;
|
|
96592
|
+
export type PutEventRuleSetDraftResponsePromise = rebilly.PutEventRuleSetDraftResponsePromise;
|
|
96593
|
+
export type DeleteEventRuleSetDraftResponse = rebilly.DeleteEventRuleSetDraftResponse;
|
|
96594
|
+
export type DeleteEventRuleSetDraftResponsePromise = rebilly.DeleteEventRuleSetDraftResponsePromise;
|
|
96595
|
+
export type PostForgotPasswordRequestRequest = rebilly.PostForgotPasswordRequestRequest;
|
|
96596
|
+
export type CreateForgotPasswordRequestRequest = rebilly.CreateForgotPasswordRequestRequest;
|
|
96597
|
+
export type PostForgotPasswordRequestResponse = rebilly.PostForgotPasswordRequestResponse;
|
|
96598
|
+
export type PostForgotPasswordRequestResponsePromise = rebilly.PostForgotPasswordRequestResponsePromise;
|
|
96599
|
+
export type GetGatewayAccountCollectionRequest = rebilly.GetGatewayAccountCollectionRequest;
|
|
96600
|
+
export type GetGatewayAccountCollectionResponse = rebilly.GetGatewayAccountCollectionResponse;
|
|
96601
|
+
export type GetGatewayAccountCollectionResponsePromise = rebilly.GetGatewayAccountCollectionResponsePromise;
|
|
96602
|
+
export type PostGatewayAccountRequest = rebilly.PostGatewayAccountRequest;
|
|
96603
|
+
export type CreateGatewayAccountRequest = rebilly.CreateGatewayAccountRequest;
|
|
96604
|
+
export type PostGatewayAccountResponse = rebilly.PostGatewayAccountResponse;
|
|
96605
|
+
export type PostGatewayAccountResponsePromise = rebilly.PostGatewayAccountResponsePromise;
|
|
96606
|
+
export type GetGatewayAccountRequest = rebilly.GetGatewayAccountRequest;
|
|
96607
|
+
export type GetGatewayAccountResponse = rebilly.GetGatewayAccountResponse;
|
|
96608
|
+
export type GetGatewayAccountResponsePromise = rebilly.GetGatewayAccountResponsePromise;
|
|
96609
|
+
export type PutGatewayAccountRequest = rebilly.PutGatewayAccountRequest;
|
|
96610
|
+
export type PutGatewayAccountResponse = rebilly.PutGatewayAccountResponse;
|
|
96611
|
+
export type PutGatewayAccountResponsePromise = rebilly.PutGatewayAccountResponsePromise;
|
|
96612
|
+
export type PatchGatewayAccountRequest = rebilly.PatchGatewayAccountRequest;
|
|
96613
|
+
export type PatchGatewayAccountResponse = rebilly.PatchGatewayAccountResponse;
|
|
96614
|
+
export type PatchGatewayAccountResponsePromise = rebilly.PatchGatewayAccountResponsePromise;
|
|
96615
|
+
export type DeleteGatewayAccountResponse = rebilly.DeleteGatewayAccountResponse;
|
|
96616
|
+
export type DeleteGatewayAccountResponsePromise = rebilly.DeleteGatewayAccountResponsePromise;
|
|
96617
|
+
export type PostGatewayAccountClosureResponse = rebilly.PostGatewayAccountClosureResponse;
|
|
96618
|
+
export type PostGatewayAccountClosureResponsePromise = rebilly.PostGatewayAccountClosureResponsePromise;
|
|
96619
|
+
export type PostGatewayAccountDisablementResponse = rebilly.PostGatewayAccountDisablementResponse;
|
|
96620
|
+
export type PostGatewayAccountDisablementResponsePromise = rebilly.PostGatewayAccountDisablementResponsePromise;
|
|
96621
|
+
export type GetGatewayAccountDowntimeScheduleCollectionRequest = rebilly.GetGatewayAccountDowntimeScheduleCollectionRequest;
|
|
96622
|
+
export type GetGatewayAccountDowntimeScheduleCollectionResponse = rebilly.GetGatewayAccountDowntimeScheduleCollectionResponse;
|
|
96623
|
+
export type GetGatewayAccountDowntimeScheduleCollectionResponsePromise = rebilly.GetGatewayAccountDowntimeScheduleCollectionResponsePromise;
|
|
96624
|
+
export type PostGatewayAccountDowntimeScheduleRequest = rebilly.PostGatewayAccountDowntimeScheduleRequest;
|
|
96625
|
+
export type CreateGatewayAccountDowntimeScheduleRequest = rebilly.CreateGatewayAccountDowntimeScheduleRequest;
|
|
96626
|
+
export type PostGatewayAccountDowntimeScheduleResponse = rebilly.PostGatewayAccountDowntimeScheduleResponse;
|
|
96627
|
+
export type PostGatewayAccountDowntimeScheduleResponsePromise = rebilly.PostGatewayAccountDowntimeScheduleResponsePromise;
|
|
96628
|
+
export type GetGatewayAccountDowntimeScheduleRequest = rebilly.GetGatewayAccountDowntimeScheduleRequest;
|
|
96629
|
+
export type GetGatewayAccountDowntimeScheduleResponse = rebilly.GetGatewayAccountDowntimeScheduleResponse;
|
|
96630
|
+
export type GetGatewayAccountDowntimeScheduleResponsePromise = rebilly.GetGatewayAccountDowntimeScheduleResponsePromise;
|
|
96631
|
+
export type PutGatewayAccountDowntimeScheduleRequest = rebilly.PutGatewayAccountDowntimeScheduleRequest;
|
|
96632
|
+
export type PutGatewayAccountDowntimeScheduleResponse = rebilly.PutGatewayAccountDowntimeScheduleResponse;
|
|
96633
|
+
export type PutGatewayAccountDowntimeScheduleResponsePromise = rebilly.PutGatewayAccountDowntimeScheduleResponsePromise;
|
|
96634
|
+
export type DeleteGatewayAccountDowntimeScheduleResponse = rebilly.DeleteGatewayAccountDowntimeScheduleResponse;
|
|
96635
|
+
export type DeleteGatewayAccountDowntimeScheduleResponsePromise = rebilly.DeleteGatewayAccountDowntimeScheduleResponsePromise;
|
|
96636
|
+
export type PostGatewayAccountEnablementResponse = rebilly.PostGatewayAccountEnablementResponse;
|
|
96637
|
+
export type PostGatewayAccountEnablementResponsePromise = rebilly.PostGatewayAccountEnablementResponsePromise;
|
|
96638
|
+
export type GetGatewayAccountLimitCollectionRequest = rebilly.GetGatewayAccountLimitCollectionRequest;
|
|
96639
|
+
export type GetGatewayAccountLimitCollectionResponse = rebilly.GetGatewayAccountLimitCollectionResponse;
|
|
96640
|
+
export type GetGatewayAccountLimitCollectionResponsePromise = rebilly.GetGatewayAccountLimitCollectionResponsePromise;
|
|
96641
|
+
export type GetGatewayAccountLimitRequest = rebilly.GetGatewayAccountLimitRequest;
|
|
96642
|
+
export type GetGatewayAccountLimitResponse = rebilly.GetGatewayAccountLimitResponse;
|
|
96643
|
+
export type GetGatewayAccountLimitResponsePromise = rebilly.GetGatewayAccountLimitResponsePromise;
|
|
96644
|
+
export type PutGatewayAccountLimitRequest = rebilly.PutGatewayAccountLimitRequest;
|
|
96645
|
+
export type PutGatewayAccountLimitResponse = rebilly.PutGatewayAccountLimitResponse;
|
|
96646
|
+
export type PutGatewayAccountLimitResponsePromise = rebilly.PutGatewayAccountLimitResponsePromise;
|
|
96647
|
+
export type DeleteGatewayAccountLimitResponse = rebilly.DeleteGatewayAccountLimitResponse;
|
|
96648
|
+
export type DeleteGatewayAccountLimitResponsePromise = rebilly.DeleteGatewayAccountLimitResponsePromise;
|
|
96649
|
+
export type GetGatewayAccountTimelineCollectionRequest = rebilly.GetGatewayAccountTimelineCollectionRequest;
|
|
96650
|
+
export type GetGatewayAccountTimelineCollectionResponse = rebilly.GetGatewayAccountTimelineCollectionResponse;
|
|
96651
|
+
export type GetGatewayAccountTimelineCollectionResponsePromise = rebilly.GetGatewayAccountTimelineCollectionResponsePromise;
|
|
96652
|
+
export type PostGatewayAccountTimelineRequest = rebilly.PostGatewayAccountTimelineRequest;
|
|
96653
|
+
export type CreateGatewayAccountTimelineRequest = rebilly.CreateGatewayAccountTimelineRequest;
|
|
96654
|
+
export type PostGatewayAccountTimelineResponse = rebilly.PostGatewayAccountTimelineResponse;
|
|
96655
|
+
export type PostGatewayAccountTimelineResponsePromise = rebilly.PostGatewayAccountTimelineResponsePromise;
|
|
96656
|
+
export type GetGatewayAccountTimelineRequest = rebilly.GetGatewayAccountTimelineRequest;
|
|
96657
|
+
export type GetGatewayAccountTimelineResponse = rebilly.GetGatewayAccountTimelineResponse;
|
|
96658
|
+
export type GetGatewayAccountTimelineResponsePromise = rebilly.GetGatewayAccountTimelineResponsePromise;
|
|
96659
|
+
export type DeleteGatewayAccountTimelineResponse = rebilly.DeleteGatewayAccountTimelineResponse;
|
|
96660
|
+
export type DeleteGatewayAccountTimelineResponsePromise = rebilly.DeleteGatewayAccountTimelineResponsePromise;
|
|
96661
|
+
export type PostGatewayAccountCheckCredentialsResponse = rebilly.PostGatewayAccountCheckCredentialsResponse;
|
|
96662
|
+
export type PostGatewayAccountCheckCredentialsResponsePromise = rebilly.PostGatewayAccountCheckCredentialsResponsePromise;
|
|
96663
|
+
export type GetGatewayAccountFinancialSettingsRequest = rebilly.GetGatewayAccountFinancialSettingsRequest;
|
|
96664
|
+
export type GetGatewayAccountFinancialSettingsResponse = rebilly.GetGatewayAccountFinancialSettingsResponse;
|
|
96665
|
+
export type GetGatewayAccountFinancialSettingsResponsePromise = rebilly.GetGatewayAccountFinancialSettingsResponsePromise;
|
|
96666
|
+
export type PutGatewayAccountFinancialSettingsRequest = rebilly.PutGatewayAccountFinancialSettingsRequest;
|
|
96667
|
+
export type PutGatewayAccountFinancialSettingsResponse = rebilly.PutGatewayAccountFinancialSettingsResponse;
|
|
96668
|
+
export type PutGatewayAccountFinancialSettingsResponsePromise = rebilly.PutGatewayAccountFinancialSettingsResponsePromise;
|
|
96669
|
+
export type PostDigitalWalletOnboardingApplePayRequest = rebilly.PostDigitalWalletOnboardingApplePayRequest;
|
|
96670
|
+
export type CreateDigitalWalletOnboardingApplePayRequest = rebilly.CreateDigitalWalletOnboardingApplePayRequest;
|
|
96671
|
+
export type PostDigitalWalletOnboardingApplePayResponse = rebilly.PostDigitalWalletOnboardingApplePayResponse;
|
|
96672
|
+
export type PostDigitalWalletOnboardingApplePayResponsePromise = rebilly.PostDigitalWalletOnboardingApplePayResponsePromise;
|
|
96673
|
+
export type GetGridSegmentCollectionRequest = rebilly.GetGridSegmentCollectionRequest;
|
|
96674
|
+
export type GetGridSegmentCollectionResponse = rebilly.GetGridSegmentCollectionResponse;
|
|
96675
|
+
export type GetGridSegmentCollectionResponsePromise = rebilly.GetGridSegmentCollectionResponsePromise;
|
|
96676
|
+
export type PostGridSegmentRequest = rebilly.PostGridSegmentRequest;
|
|
96677
|
+
export type CreateGridSegmentRequest = rebilly.CreateGridSegmentRequest;
|
|
96678
|
+
export type PostGridSegmentResponse = rebilly.PostGridSegmentResponse;
|
|
96679
|
+
export type PostGridSegmentResponsePromise = rebilly.PostGridSegmentResponsePromise;
|
|
96680
|
+
export type GetGridSegmentRequest = rebilly.GetGridSegmentRequest;
|
|
96681
|
+
export type GetGridSegmentResponse = rebilly.GetGridSegmentResponse;
|
|
96682
|
+
export type GetGridSegmentResponsePromise = rebilly.GetGridSegmentResponsePromise;
|
|
96683
|
+
export type PutGridSegmentRequest = rebilly.PutGridSegmentRequest;
|
|
96684
|
+
export type PutGridSegmentResponse = rebilly.PutGridSegmentResponse;
|
|
96685
|
+
export type PutGridSegmentResponsePromise = rebilly.PutGridSegmentResponsePromise;
|
|
96686
|
+
export type DeleteGridSegmentResponse = rebilly.DeleteGridSegmentResponse;
|
|
96687
|
+
export type DeleteGridSegmentResponsePromise = rebilly.DeleteGridSegmentResponsePromise;
|
|
96688
|
+
export type GetIntegrationCollectionRequest = rebilly.GetIntegrationCollectionRequest;
|
|
96689
|
+
export type GetIntegrationCollectionResponse = rebilly.GetIntegrationCollectionResponse;
|
|
96690
|
+
export type GetIntegrationCollectionResponsePromise = rebilly.GetIntegrationCollectionResponsePromise;
|
|
96691
|
+
export type GetIntegrationRequest = rebilly.GetIntegrationRequest;
|
|
96692
|
+
export type GetIntegrationResponse = rebilly.GetIntegrationResponse;
|
|
96693
|
+
export type GetIntegrationResponsePromise = rebilly.GetIntegrationResponsePromise;
|
|
96694
|
+
export type GetListCollectionRequest = rebilly.GetListCollectionRequest;
|
|
96695
|
+
export type GetListCollectionResponse = rebilly.GetListCollectionResponse;
|
|
96696
|
+
export type GetListCollectionResponsePromise = rebilly.GetListCollectionResponsePromise;
|
|
96697
|
+
export type PostListRequest = rebilly.PostListRequest;
|
|
96698
|
+
export type CreateListRequest = rebilly.CreateListRequest;
|
|
96699
|
+
export type PostListResponse = rebilly.PostListResponse;
|
|
96700
|
+
export type PostListResponsePromise = rebilly.PostListResponsePromise;
|
|
96701
|
+
export type GetListRequest = rebilly.GetListRequest;
|
|
96702
|
+
export type GetListResponse = rebilly.GetListResponse;
|
|
96703
|
+
export type GetListResponsePromise = rebilly.GetListResponsePromise;
|
|
96704
|
+
export type PutListRequest = rebilly.PutListRequest;
|
|
96705
|
+
export type PutListResponse = rebilly.PutListResponse;
|
|
96706
|
+
export type PutListResponsePromise = rebilly.PutListResponsePromise;
|
|
96707
|
+
export type DeleteListResponse = rebilly.DeleteListResponse;
|
|
96708
|
+
export type DeleteListResponsePromise = rebilly.DeleteListResponsePromise;
|
|
96709
|
+
export type GetListVersionRequest = rebilly.GetListVersionRequest;
|
|
96710
|
+
export type GetListVersionResponse = rebilly.GetListVersionResponse;
|
|
96711
|
+
export type GetListVersionResponsePromise = rebilly.GetListVersionResponsePromise;
|
|
96712
|
+
export type GetMembershipCollectionRequest = rebilly.GetMembershipCollectionRequest;
|
|
96713
|
+
export type GetMembershipCollectionResponse = rebilly.GetMembershipCollectionResponse;
|
|
96714
|
+
export type GetMembershipCollectionResponsePromise = rebilly.GetMembershipCollectionResponsePromise;
|
|
96715
|
+
export type GetMembershipRequest = rebilly.GetMembershipRequest;
|
|
96716
|
+
export type GetMembershipResponse = rebilly.GetMembershipResponse;
|
|
96717
|
+
export type GetMembershipResponsePromise = rebilly.GetMembershipResponsePromise;
|
|
96718
|
+
export type PutMembershipRequest = rebilly.PutMembershipRequest;
|
|
96719
|
+
export type PutMembershipResponse = rebilly.PutMembershipResponse;
|
|
96720
|
+
export type PutMembershipResponsePromise = rebilly.PutMembershipResponsePromise;
|
|
96721
|
+
export type DeleteMembershipResponse = rebilly.DeleteMembershipResponse;
|
|
96722
|
+
export type DeleteMembershipResponsePromise = rebilly.DeleteMembershipResponsePromise;
|
|
96723
|
+
export type GetOrganizationCollectionRequest = rebilly.GetOrganizationCollectionRequest;
|
|
96724
|
+
export type GetOrganizationCollectionResponse = rebilly.GetOrganizationCollectionResponse;
|
|
96725
|
+
export type GetOrganizationCollectionResponsePromise = rebilly.GetOrganizationCollectionResponsePromise;
|
|
96726
|
+
export type PostOrganizationRequest = rebilly.PostOrganizationRequest;
|
|
96727
|
+
export type CreateOrganizationRequest = rebilly.CreateOrganizationRequest;
|
|
96728
|
+
export type PostOrganizationResponse = rebilly.PostOrganizationResponse;
|
|
96729
|
+
export type PostOrganizationResponsePromise = rebilly.PostOrganizationResponsePromise;
|
|
96730
|
+
export type GetOrganizationRequest = rebilly.GetOrganizationRequest;
|
|
96731
|
+
export type GetOrganizationResponse = rebilly.GetOrganizationResponse;
|
|
96732
|
+
export type GetOrganizationResponsePromise = rebilly.GetOrganizationResponsePromise;
|
|
96733
|
+
export type PatchOrganizationRequest = rebilly.PatchOrganizationRequest;
|
|
96734
|
+
export type PatchOrganizationResponse = rebilly.PatchOrganizationResponse;
|
|
96735
|
+
export type PatchOrganizationResponsePromise = rebilly.PatchOrganizationResponsePromise;
|
|
96736
|
+
export type GetPaymentCardBankNameCollectionRequest = rebilly.GetPaymentCardBankNameCollectionRequest;
|
|
96737
|
+
export type GetPaymentCardBankNameCollectionResponse = rebilly.GetPaymentCardBankNameCollectionResponse;
|
|
96738
|
+
export type GetPaymentCardBankNameCollectionResponsePromise = rebilly.GetPaymentCardBankNameCollectionResponsePromise;
|
|
96739
|
+
export type GetPaymentMethodCollectionRequest = rebilly.GetPaymentMethodCollectionRequest;
|
|
96740
|
+
export type GetPaymentMethodCollectionResponse = rebilly.GetPaymentMethodCollectionResponse;
|
|
96741
|
+
export type GetPaymentMethodCollectionResponsePromise = rebilly.GetPaymentMethodCollectionResponsePromise;
|
|
96742
|
+
export type GetPaymentMethodRequest = rebilly.GetPaymentMethodRequest;
|
|
96743
|
+
export type GetPaymentMethodResponse = rebilly.GetPaymentMethodResponse;
|
|
96744
|
+
export type GetPaymentMethodResponsePromise = rebilly.GetPaymentMethodResponsePromise;
|
|
96745
|
+
export type GetPaymentGatewayMetadataCollectionResponse = rebilly.GetPaymentGatewayMetadataCollectionResponse;
|
|
96746
|
+
export type GetPaymentGatewayMetadataCollectionResponsePromise = rebilly.GetPaymentGatewayMetadataCollectionResponsePromise;
|
|
96747
|
+
export type GetPaymentGatewayMetadataRequest = rebilly.GetPaymentGatewayMetadataRequest;
|
|
96748
|
+
export type GetPaymentGatewayMetadataResponse = rebilly.GetPaymentGatewayMetadataResponse;
|
|
96749
|
+
export type GetPaymentGatewayMetadataResponsePromise = rebilly.GetPaymentGatewayMetadataResponsePromise;
|
|
96750
|
+
export type GetPayoutRequestCollectionRequest = rebilly.GetPayoutRequestCollectionRequest;
|
|
96751
|
+
export type GetPayoutRequestCollectionResponse = rebilly.GetPayoutRequestCollectionResponse;
|
|
96752
|
+
export type GetPayoutRequestCollectionResponsePromise = rebilly.GetPayoutRequestCollectionResponsePromise;
|
|
96753
|
+
export type PostPayoutRequestRequest = rebilly.PostPayoutRequestRequest;
|
|
96754
|
+
export type CreatePayoutRequestRequest = rebilly.CreatePayoutRequestRequest;
|
|
96755
|
+
export type PostPayoutRequestResponse = rebilly.PostPayoutRequestResponse;
|
|
96756
|
+
export type PostPayoutRequestResponsePromise = rebilly.PostPayoutRequestResponsePromise;
|
|
96757
|
+
export type GetPayoutRequestRequest = rebilly.GetPayoutRequestRequest;
|
|
96758
|
+
export type GetPayoutRequestResponse = rebilly.GetPayoutRequestResponse;
|
|
96759
|
+
export type GetPayoutRequestResponsePromise = rebilly.GetPayoutRequestResponsePromise;
|
|
96760
|
+
export type PutPayoutRequestRequest = rebilly.PutPayoutRequestRequest;
|
|
96761
|
+
export type PutPayoutRequestResponse = rebilly.PutPayoutRequestResponse;
|
|
96762
|
+
export type PutPayoutRequestResponsePromise = rebilly.PutPayoutRequestResponsePromise;
|
|
96763
|
+
export type PatchPayoutRequestRequest = rebilly.PatchPayoutRequestRequest;
|
|
96764
|
+
export type PatchPayoutRequestResponse = rebilly.PatchPayoutRequestResponse;
|
|
96765
|
+
export type PatchPayoutRequestResponsePromise = rebilly.PatchPayoutRequestResponsePromise;
|
|
96766
|
+
export type PostPayoutRequestCancellationRequest = rebilly.PostPayoutRequestCancellationRequest;
|
|
96767
|
+
export type CreatePayoutRequestCancellationRequest = rebilly.CreatePayoutRequestCancellationRequest;
|
|
96768
|
+
export type PostPayoutRequestCancellationResponse = rebilly.PostPayoutRequestCancellationResponse;
|
|
96769
|
+
export type PostPayoutRequestCancellationResponsePromise = rebilly.PostPayoutRequestCancellationResponsePromise;
|
|
96770
|
+
export type PostPayoutRequestSplitRequest = rebilly.PostPayoutRequestSplitRequest;
|
|
96771
|
+
export type CreatePayoutRequestSplitRequest = rebilly.CreatePayoutRequestSplitRequest;
|
|
96772
|
+
export type PostPayoutRequestSplitResponse = rebilly.PostPayoutRequestSplitResponse;
|
|
96773
|
+
export type PostPayoutRequestSplitResponsePromise = rebilly.PostPayoutRequestSplitResponsePromise;
|
|
96774
|
+
export type GetPayoutRequestPaymentInstrumentsRequest = rebilly.GetPayoutRequestPaymentInstrumentsRequest;
|
|
96775
|
+
export type GetPayoutRequestPaymentInstrumentsResponse = rebilly.GetPayoutRequestPaymentInstrumentsResponse;
|
|
96776
|
+
export type GetPayoutRequestPaymentInstrumentsResponsePromise = rebilly.GetPayoutRequestPaymentInstrumentsResponsePromise;
|
|
96777
|
+
export type GetPayoutRequestTimelineCollectionRequest = rebilly.GetPayoutRequestTimelineCollectionRequest;
|
|
96778
|
+
export type GetPayoutRequestTimelineCollectionResponse = rebilly.GetPayoutRequestTimelineCollectionResponse;
|
|
96779
|
+
export type GetPayoutRequestTimelineCollectionResponsePromise = rebilly.GetPayoutRequestTimelineCollectionResponsePromise;
|
|
96780
|
+
export type PostPayoutRequestTimelineRequest = rebilly.PostPayoutRequestTimelineRequest;
|
|
96781
|
+
export type CreatePayoutRequestTimelineRequest = rebilly.CreatePayoutRequestTimelineRequest;
|
|
96782
|
+
export type PostPayoutRequestTimelineResponse = rebilly.PostPayoutRequestTimelineResponse;
|
|
96783
|
+
export type PostPayoutRequestTimelineResponsePromise = rebilly.PostPayoutRequestTimelineResponsePromise;
|
|
96784
|
+
export type GetPayoutRequestTimelineMessageRequest = rebilly.GetPayoutRequestTimelineMessageRequest;
|
|
96785
|
+
export type GetPayoutRequestTimelineMessageResponse = rebilly.GetPayoutRequestTimelineMessageResponse;
|
|
96786
|
+
export type GetPayoutRequestTimelineMessageResponsePromise = rebilly.GetPayoutRequestTimelineMessageResponsePromise;
|
|
96787
|
+
export type DeletePayoutRequestTimelineMessageResponse = rebilly.DeletePayoutRequestTimelineMessageResponse;
|
|
96788
|
+
export type DeletePayoutRequestTimelineMessageResponsePromise = rebilly.DeletePayoutRequestTimelineMessageResponsePromise;
|
|
96789
|
+
export type GetPayoutRequestAllocationCollectionRequest = rebilly.GetPayoutRequestAllocationCollectionRequest;
|
|
96790
|
+
export type GetPayoutRequestAllocationCollectionResponse = rebilly.GetPayoutRequestAllocationCollectionResponse;
|
|
96791
|
+
export type GetPayoutRequestAllocationCollectionResponsePromise = rebilly.GetPayoutRequestAllocationCollectionResponsePromise;
|
|
96792
|
+
export type PostPayoutRequestAllocationRequest = rebilly.PostPayoutRequestAllocationRequest;
|
|
96793
|
+
export type CreatePayoutRequestAllocationRequest = rebilly.CreatePayoutRequestAllocationRequest;
|
|
96794
|
+
export type PostPayoutRequestAllocationResponse = rebilly.PostPayoutRequestAllocationResponse;
|
|
96795
|
+
export type PostPayoutRequestAllocationResponsePromise = rebilly.PostPayoutRequestAllocationResponsePromise;
|
|
96796
|
+
export type PostPayoutRequestAutoAllocationRequest = rebilly.PostPayoutRequestAutoAllocationRequest;
|
|
96797
|
+
export type CreatePayoutRequestAutoAllocationRequest = rebilly.CreatePayoutRequestAutoAllocationRequest;
|
|
96798
|
+
export type PostPayoutRequestAutoAllocationResponse = rebilly.PostPayoutRequestAutoAllocationResponse;
|
|
96799
|
+
export type PostPayoutRequestAutoAllocationResponsePromise = rebilly.PostPayoutRequestAutoAllocationResponsePromise;
|
|
96800
|
+
export type GetPayoutRequestAllocationRequest = rebilly.GetPayoutRequestAllocationRequest;
|
|
96801
|
+
export type GetPayoutRequestAllocationResponse = rebilly.GetPayoutRequestAllocationResponse;
|
|
96802
|
+
export type GetPayoutRequestAllocationResponsePromise = rebilly.GetPayoutRequestAllocationResponsePromise;
|
|
96803
|
+
export type PatchPayoutRequestAllocationRequest = rebilly.PatchPayoutRequestAllocationRequest;
|
|
96804
|
+
export type PatchPayoutRequestAllocationResponse = rebilly.PatchPayoutRequestAllocationResponse;
|
|
96805
|
+
export type PatchPayoutRequestAllocationResponsePromise = rebilly.PatchPayoutRequestAllocationResponsePromise;
|
|
96806
|
+
export type PostPayoutRequestAllocationsProcessRequest = rebilly.PostPayoutRequestAllocationsProcessRequest;
|
|
96807
|
+
export type CreatePayoutRequestAllocationsProcessRequest = rebilly.CreatePayoutRequestAllocationsProcessRequest;
|
|
96808
|
+
export type PostPayoutRequestAllocationsProcessResponse = rebilly.PostPayoutRequestAllocationsProcessResponse;
|
|
96809
|
+
export type PostPayoutRequestAllocationsProcessResponsePromise = rebilly.PostPayoutRequestAllocationsProcessResponsePromise;
|
|
96810
|
+
export type GetPayoutRequestBatchCollectionRequest = rebilly.GetPayoutRequestBatchCollectionRequest;
|
|
96811
|
+
export type GetPayoutRequestBatchCollectionResponse = rebilly.GetPayoutRequestBatchCollectionResponse;
|
|
96812
|
+
export type GetPayoutRequestBatchCollectionResponsePromise = rebilly.GetPayoutRequestBatchCollectionResponsePromise;
|
|
96813
|
+
export type PostPayoutRequestBatchRequest = rebilly.PostPayoutRequestBatchRequest;
|
|
96814
|
+
export type CreatePayoutRequestBatchRequest = rebilly.CreatePayoutRequestBatchRequest;
|
|
96815
|
+
export type PostPayoutRequestBatchResponse = rebilly.PostPayoutRequestBatchResponse;
|
|
96816
|
+
export type PostPayoutRequestBatchResponsePromise = rebilly.PostPayoutRequestBatchResponsePromise;
|
|
96817
|
+
export type GetPayoutRequestBatchRequest = rebilly.GetPayoutRequestBatchRequest;
|
|
96818
|
+
export type GetPayoutRequestBatchResponse = rebilly.GetPayoutRequestBatchResponse;
|
|
96819
|
+
export type GetPayoutRequestBatchResponsePromise = rebilly.GetPayoutRequestBatchResponsePromise;
|
|
96820
|
+
export type PatchPayoutRequestBatchRequest = rebilly.PatchPayoutRequestBatchRequest;
|
|
96821
|
+
export type PatchPayoutRequestBatchResponse = rebilly.PatchPayoutRequestBatchResponse;
|
|
96822
|
+
export type PatchPayoutRequestBatchResponsePromise = rebilly.PatchPayoutRequestBatchResponsePromise;
|
|
96823
|
+
export type PostPayoutRequestBatchAutoAllocateResponse = rebilly.PostPayoutRequestBatchAutoAllocateResponse;
|
|
96824
|
+
export type PostPayoutRequestBatchAutoAllocateResponsePromise = rebilly.PostPayoutRequestBatchAutoAllocateResponsePromise;
|
|
96825
|
+
export type PostPayoutRequestBatchApproveResponse = rebilly.PostPayoutRequestBatchApproveResponse;
|
|
96826
|
+
export type PostPayoutRequestBatchApproveResponsePromise = rebilly.PostPayoutRequestBatchApproveResponsePromise;
|
|
96827
|
+
export type PostPayoutRequestBatchBlockRequest = rebilly.PostPayoutRequestBatchBlockRequest;
|
|
96828
|
+
export type CreatePayoutRequestBatchBlockRequest = rebilly.CreatePayoutRequestBatchBlockRequest;
|
|
96829
|
+
export type PostPayoutRequestBatchBlockResponse = rebilly.PostPayoutRequestBatchBlockResponse;
|
|
96830
|
+
export type PostPayoutRequestBatchBlockResponsePromise = rebilly.PostPayoutRequestBatchBlockResponsePromise;
|
|
96831
|
+
export type GetPayoutRequestBatchPreviewRequest = rebilly.GetPayoutRequestBatchPreviewRequest;
|
|
96832
|
+
export type GetPayoutRequestBatchPreviewResponse = rebilly.GetPayoutRequestBatchPreviewResponse;
|
|
96833
|
+
export type GetPayoutRequestBatchPreviewResponsePromise = rebilly.GetPayoutRequestBatchPreviewResponsePromise;
|
|
96834
|
+
export type PostPermissionsEmulationRequest = rebilly.PostPermissionsEmulationRequest;
|
|
96835
|
+
export type CreatePermissionsEmulationRequest = rebilly.CreatePermissionsEmulationRequest;
|
|
96836
|
+
export type PostPermissionsEmulationResponse = rebilly.PostPermissionsEmulationResponse;
|
|
96837
|
+
export type PostPermissionsEmulationResponsePromise = rebilly.PostPermissionsEmulationResponsePromise;
|
|
96838
|
+
export type DeletePermissionsEmulationResponse = rebilly.DeletePermissionsEmulationResponse;
|
|
96839
|
+
export type DeletePermissionsEmulationResponsePromise = rebilly.DeletePermissionsEmulationResponsePromise;
|
|
96840
|
+
export type PostPreviewOrderRequest = rebilly.PostPreviewOrderRequest;
|
|
96841
|
+
export type CreatePreviewOrderRequest = rebilly.CreatePreviewOrderRequest;
|
|
96842
|
+
export type PostPreviewOrderResponse = rebilly.PostPreviewOrderResponse;
|
|
96843
|
+
export type PostPreviewOrderResponsePromise = rebilly.PostPreviewOrderResponsePromise;
|
|
96844
|
+
export type PostPreviewRuleActionEmailSendingRequest = rebilly.PostPreviewRuleActionEmailSendingRequest;
|
|
96845
|
+
export type CreatePreviewRuleActionEmailSendingRequest = rebilly.CreatePreviewRuleActionEmailSendingRequest;
|
|
96846
|
+
export type PostPreviewRuleActionEmailSendingResponse = rebilly.PostPreviewRuleActionEmailSendingResponse;
|
|
96847
|
+
export type PostPreviewRuleActionEmailSendingResponsePromise = rebilly.PostPreviewRuleActionEmailSendingResponsePromise;
|
|
96848
|
+
export type PostPreviewWebhookRequest = rebilly.PostPreviewWebhookRequest;
|
|
96849
|
+
export type CreatePreviewWebhookRequest = rebilly.CreatePreviewWebhookRequest;
|
|
96850
|
+
export type PostPreviewWebhookResponse = rebilly.PostPreviewWebhookResponse;
|
|
96851
|
+
export type PostPreviewWebhookResponsePromise = rebilly.PostPreviewWebhookResponsePromise;
|
|
96852
|
+
export type GetProfileResponse = rebilly.GetProfileResponse;
|
|
96853
|
+
export type GetProfileResponsePromise = rebilly.GetProfileResponsePromise;
|
|
96854
|
+
export type PutProfileRequest = rebilly.PutProfileRequest;
|
|
96855
|
+
export type PutProfileResponse = rebilly.PutProfileResponse;
|
|
96856
|
+
export type PutProfileResponsePromise = rebilly.PutProfileResponsePromise;
|
|
96857
|
+
export type GetProfileMfaResponse = rebilly.GetProfileMfaResponse;
|
|
96858
|
+
export type GetProfileMfaResponsePromise = rebilly.GetProfileMfaResponsePromise;
|
|
96859
|
+
export type PostProfileMfaResponse = rebilly.PostProfileMfaResponse;
|
|
96860
|
+
export type PostProfileMfaResponsePromise = rebilly.PostProfileMfaResponsePromise;
|
|
96861
|
+
export type DeleteProfileMfaResponse = rebilly.DeleteProfileMfaResponse;
|
|
96862
|
+
export type DeleteProfileMfaResponsePromise = rebilly.DeleteProfileMfaResponsePromise;
|
|
96863
|
+
export type GetRoleCollectionRequest = rebilly.GetRoleCollectionRequest;
|
|
96864
|
+
export type GetRoleCollectionResponse = rebilly.GetRoleCollectionResponse;
|
|
96865
|
+
export type GetRoleCollectionResponsePromise = rebilly.GetRoleCollectionResponsePromise;
|
|
96866
|
+
export type PostRoleRequest = rebilly.PostRoleRequest;
|
|
96867
|
+
export type CreateRoleRequest = rebilly.CreateRoleRequest;
|
|
96868
|
+
export type PostRoleResponse = rebilly.PostRoleResponse;
|
|
96869
|
+
export type PostRoleResponsePromise = rebilly.PostRoleResponsePromise;
|
|
96870
|
+
export type GetRoleRequest = rebilly.GetRoleRequest;
|
|
96871
|
+
export type GetRoleResponse = rebilly.GetRoleResponse;
|
|
96872
|
+
export type GetRoleResponsePromise = rebilly.GetRoleResponsePromise;
|
|
96873
|
+
export type PutRoleRequest = rebilly.PutRoleRequest;
|
|
96874
|
+
export type PutRoleResponse = rebilly.PutRoleResponse;
|
|
96875
|
+
export type PutRoleResponsePromise = rebilly.PutRoleResponsePromise;
|
|
96876
|
+
export type DeleteRoleResponse = rebilly.DeleteRoleResponse;
|
|
96877
|
+
export type DeleteRoleResponsePromise = rebilly.DeleteRoleResponsePromise;
|
|
96878
|
+
export type GetSendThroughAttributionCollectionRequest = rebilly.GetSendThroughAttributionCollectionRequest;
|
|
96879
|
+
export type GetSendThroughAttributionCollectionResponse = rebilly.GetSendThroughAttributionCollectionResponse;
|
|
96880
|
+
export type GetSendThroughAttributionCollectionResponsePromise = rebilly.GetSendThroughAttributionCollectionResponsePromise;
|
|
96881
|
+
export type GetStatusResponse = rebilly.GetStatusResponse;
|
|
96882
|
+
export type GetStatusResponsePromise = rebilly.GetStatusResponsePromise;
|
|
96883
|
+
export type GetTrackingApiCollectionRequest = rebilly.GetTrackingApiCollectionRequest;
|
|
96884
|
+
export type GetTrackingApiCollectionResponse = rebilly.GetTrackingApiCollectionResponse;
|
|
96885
|
+
export type GetTrackingApiCollectionResponsePromise = rebilly.GetTrackingApiCollectionResponsePromise;
|
|
96886
|
+
export type GetTrackingApiRequest = rebilly.GetTrackingApiRequest;
|
|
96887
|
+
export type GetTrackingApiResponse = rebilly.GetTrackingApiResponse;
|
|
96888
|
+
export type GetTrackingApiResponsePromise = rebilly.GetTrackingApiResponsePromise;
|
|
96889
|
+
export type GetTrackingTaxCollectionRequest = rebilly.GetTrackingTaxCollectionRequest;
|
|
96890
|
+
export type GetTrackingTaxCollectionResponse = rebilly.GetTrackingTaxCollectionResponse;
|
|
96891
|
+
export type GetTrackingTaxCollectionResponsePromise = rebilly.GetTrackingTaxCollectionResponsePromise;
|
|
96892
|
+
export type GetTrackingTaxRequest = rebilly.GetTrackingTaxRequest;
|
|
96893
|
+
export type GetTrackingTaxResponse = rebilly.GetTrackingTaxResponse;
|
|
96894
|
+
export type GetTrackingTaxResponsePromise = rebilly.GetTrackingTaxResponsePromise;
|
|
96895
|
+
export type GetTrackingListCollectionRequest = rebilly.GetTrackingListCollectionRequest;
|
|
96896
|
+
export type GetTrackingListCollectionResponse = rebilly.GetTrackingListCollectionResponse;
|
|
96897
|
+
export type GetTrackingListCollectionResponsePromise = rebilly.GetTrackingListCollectionResponsePromise;
|
|
96898
|
+
export type GetTrackingWebhookCollectionRequest = rebilly.GetTrackingWebhookCollectionRequest;
|
|
96899
|
+
export type GetTrackingWebhookCollectionResponse = rebilly.GetTrackingWebhookCollectionResponse;
|
|
96900
|
+
export type GetTrackingWebhookCollectionResponsePromise = rebilly.GetTrackingWebhookCollectionResponsePromise;
|
|
96901
|
+
export type GetTrackingWebhookRequest = rebilly.GetTrackingWebhookRequest;
|
|
96902
|
+
export type GetTrackingWebhookResponse = rebilly.GetTrackingWebhookResponse;
|
|
96903
|
+
export type GetTrackingWebhookResponsePromise = rebilly.GetTrackingWebhookResponsePromise;
|
|
96904
|
+
export type PostTrackingWebhookResendRequestResponse = rebilly.PostTrackingWebhookResendRequestResponse;
|
|
96905
|
+
export type PostTrackingWebhookResendRequestResponsePromise = rebilly.PostTrackingWebhookResendRequestResponsePromise;
|
|
96906
|
+
export type GetUserCollectionRequest = rebilly.GetUserCollectionRequest;
|
|
96907
|
+
export type GetUserCollectionResponse = rebilly.GetUserCollectionResponse;
|
|
96908
|
+
export type GetUserCollectionResponsePromise = rebilly.GetUserCollectionResponsePromise;
|
|
96909
|
+
export type PostUserRequest = rebilly.PostUserRequest;
|
|
96910
|
+
export type CreateUserRequest = rebilly.CreateUserRequest;
|
|
96911
|
+
export type PostUserResponse = rebilly.PostUserResponse;
|
|
96912
|
+
export type PostUserResponsePromise = rebilly.PostUserResponsePromise;
|
|
96913
|
+
export type GetUserRequest = rebilly.GetUserRequest;
|
|
96914
|
+
export type GetUserResponse = rebilly.GetUserResponse;
|
|
96915
|
+
export type GetUserResponsePromise = rebilly.GetUserResponsePromise;
|
|
96916
|
+
export type PutUserRequest = rebilly.PutUserRequest;
|
|
96917
|
+
export type PutUserResponse = rebilly.PutUserResponse;
|
|
96918
|
+
export type PutUserResponsePromise = rebilly.PutUserResponsePromise;
|
|
96919
|
+
export type GetUserMfaRequest = rebilly.GetUserMfaRequest;
|
|
96920
|
+
export type GetUserMfaResponse = rebilly.GetUserMfaResponse;
|
|
96921
|
+
export type GetUserMfaResponsePromise = rebilly.GetUserMfaResponsePromise;
|
|
96922
|
+
export type GetWebhookCollectionRequest = rebilly.GetWebhookCollectionRequest;
|
|
96923
|
+
export type GetWebhookCollectionResponse = rebilly.GetWebhookCollectionResponse;
|
|
96924
|
+
export type GetWebhookCollectionResponsePromise = rebilly.GetWebhookCollectionResponsePromise;
|
|
96925
|
+
export type PostWebhookRequest = rebilly.PostWebhookRequest;
|
|
96926
|
+
export type CreateWebhookRequest = rebilly.CreateWebhookRequest;
|
|
96927
|
+
export type PostWebhookResponse = rebilly.PostWebhookResponse;
|
|
96928
|
+
export type PostWebhookResponsePromise = rebilly.PostWebhookResponsePromise;
|
|
96929
|
+
export type GetWebhookRequest = rebilly.GetWebhookRequest;
|
|
96930
|
+
export type GetWebhookResponse = rebilly.GetWebhookResponse;
|
|
96931
|
+
export type GetWebhookResponsePromise = rebilly.GetWebhookResponsePromise;
|
|
96932
|
+
export type PutWebhookRequest = rebilly.PutWebhookRequest;
|
|
96933
|
+
export type PutWebhookResponse = rebilly.PutWebhookResponse;
|
|
96934
|
+
export type PutWebhookResponsePromise = rebilly.PutWebhookResponsePromise;
|
|
96935
|
+
export type DeleteWebhookResponse = rebilly.DeleteWebhookResponse;
|
|
96936
|
+
export type DeleteWebhookResponsePromise = rebilly.DeleteWebhookResponsePromise;
|
|
96937
|
+
export type GetWebsiteCollectionRequest = rebilly.GetWebsiteCollectionRequest;
|
|
96938
|
+
export type GetWebsiteCollectionResponse = rebilly.GetWebsiteCollectionResponse;
|
|
96939
|
+
export type GetWebsiteCollectionResponsePromise = rebilly.GetWebsiteCollectionResponsePromise;
|
|
96940
|
+
export type PostWebsiteRequest = rebilly.PostWebsiteRequest;
|
|
96941
|
+
export type CreateWebsiteRequest = rebilly.CreateWebsiteRequest;
|
|
96942
|
+
export type PostWebsiteResponse = rebilly.PostWebsiteResponse;
|
|
96943
|
+
export type PostWebsiteResponsePromise = rebilly.PostWebsiteResponsePromise;
|
|
96944
|
+
export type GetWebsiteRequest = rebilly.GetWebsiteRequest;
|
|
96945
|
+
export type GetWebsiteResponse = rebilly.GetWebsiteResponse;
|
|
96946
|
+
export type GetWebsiteResponsePromise = rebilly.GetWebsiteResponsePromise;
|
|
96947
|
+
export type PutWebsiteRequest = rebilly.PutWebsiteRequest;
|
|
96948
|
+
export type PutWebsiteResponse = rebilly.PutWebsiteResponse;
|
|
96949
|
+
export type PutWebsiteResponsePromise = rebilly.PutWebsiteResponsePromise;
|
|
96950
|
+
export type DeleteWebsiteResponse = rebilly.DeleteWebsiteResponse;
|
|
96951
|
+
export type DeleteWebsiteResponsePromise = rebilly.DeleteWebsiteResponsePromise;
|
|
96952
|
+
export type GetProfileDashboardResponse = rebilly.GetProfileDashboardResponse;
|
|
96953
|
+
export type GetProfileDashboardResponsePromise = rebilly.GetProfileDashboardResponsePromise;
|
|
96954
|
+
export type PutProfileDashboardRequest = rebilly.PutProfileDashboardRequest;
|
|
96955
|
+
export type PutProfileDashboardResponse = rebilly.PutProfileDashboardResponse;
|
|
96956
|
+
export type PutProfileDashboardResponsePromise = rebilly.PutProfileDashboardResponsePromise;
|
|
96957
|
+
export type GetProfileDashboardMetricReportRequest = rebilly.GetProfileDashboardMetricReportRequest;
|
|
96958
|
+
export type GetProfileDashboardMetricReportResponse = rebilly.GetProfileDashboardMetricReportResponse;
|
|
96959
|
+
export type GetProfileDashboardMetricReportResponsePromise = rebilly.GetProfileDashboardMetricReportResponsePromise;
|
|
96960
|
+
export type GetOrganizationExportCollectionRequest = rebilly.GetOrganizationExportCollectionRequest;
|
|
96961
|
+
export type GetOrganizationExportCollectionResponse = rebilly.GetOrganizationExportCollectionResponse;
|
|
96962
|
+
export type GetOrganizationExportCollectionResponsePromise = rebilly.GetOrganizationExportCollectionResponsePromise;
|
|
96963
|
+
export type PostOrganizationExportRequest = rebilly.PostOrganizationExportRequest;
|
|
96964
|
+
export type CreateOrganizationExportRequest = rebilly.CreateOrganizationExportRequest;
|
|
96965
|
+
export type PostOrganizationExportResponse = rebilly.PostOrganizationExportResponse;
|
|
96966
|
+
export type PostOrganizationExportResponsePromise = rebilly.PostOrganizationExportResponsePromise;
|
|
96967
|
+
export type GetOrganizationExportRequest = rebilly.GetOrganizationExportRequest;
|
|
96968
|
+
export type GetOrganizationExportResponse = rebilly.GetOrganizationExportResponse;
|
|
96969
|
+
export type GetOrganizationExportResponsePromise = rebilly.GetOrganizationExportResponsePromise;
|
|
96970
|
+
export type GetRiskScoreRulesResponse = rebilly.GetRiskScoreRulesResponse;
|
|
96971
|
+
export type GetRiskScoreRulesResponsePromise = rebilly.GetRiskScoreRulesResponsePromise;
|
|
96972
|
+
export type PutRiskScoreRulesRequest = rebilly.PutRiskScoreRulesRequest;
|
|
96973
|
+
export type PutRiskScoreRulesResponse = rebilly.PutRiskScoreRulesResponse;
|
|
96974
|
+
export type PutRiskScoreRulesResponsePromise = rebilly.PutRiskScoreRulesResponsePromise;
|
|
96975
|
+
export type GetRiskScoreBlocklistRulesResponse = rebilly.GetRiskScoreBlocklistRulesResponse;
|
|
96976
|
+
export type GetRiskScoreBlocklistRulesResponsePromise = rebilly.GetRiskScoreBlocklistRulesResponsePromise;
|
|
96977
|
+
export type PutRiskScoreBlocklistRulesRequest = rebilly.PutRiskScoreBlocklistRulesRequest;
|
|
96978
|
+
export type PutRiskScoreBlocklistRulesResponse = rebilly.PutRiskScoreBlocklistRulesResponse;
|
|
96979
|
+
export type PutRiskScoreBlocklistRulesResponsePromise = rebilly.PutRiskScoreBlocklistRulesResponsePromise;
|
|
96980
|
+
export type GetAllowlistCollectionRequest = rebilly.GetAllowlistCollectionRequest;
|
|
96981
|
+
export type GetAllowlistCollectionResponse = rebilly.GetAllowlistCollectionResponse;
|
|
96982
|
+
export type GetAllowlistCollectionResponsePromise = rebilly.GetAllowlistCollectionResponsePromise;
|
|
96983
|
+
export type PostAllowlistRequest = rebilly.PostAllowlistRequest;
|
|
96984
|
+
export type CreateAllowlistRequest = rebilly.CreateAllowlistRequest;
|
|
96985
|
+
export type PostAllowlistResponse = rebilly.PostAllowlistResponse;
|
|
96986
|
+
export type PostAllowlistResponsePromise = rebilly.PostAllowlistResponsePromise;
|
|
96987
|
+
export type GetAllowlistRequest = rebilly.GetAllowlistRequest;
|
|
96988
|
+
export type GetAllowlistResponse = rebilly.GetAllowlistResponse;
|
|
96989
|
+
export type GetAllowlistResponsePromise = rebilly.GetAllowlistResponsePromise;
|
|
96990
|
+
export type DeleteAllowlistResponse = rebilly.DeleteAllowlistResponse;
|
|
96991
|
+
export type DeleteAllowlistResponsePromise = rebilly.DeleteAllowlistResponsePromise;
|
|
96992
|
+
export type GetTagRuleCollectionRequest = rebilly.GetTagRuleCollectionRequest;
|
|
96993
|
+
export type GetTagRuleCollectionResponse = rebilly.GetTagRuleCollectionResponse;
|
|
96994
|
+
export type GetTagRuleCollectionResponsePromise = rebilly.GetTagRuleCollectionResponsePromise;
|
|
96995
|
+
export type PostTagRuleRequest = rebilly.PostTagRuleRequest;
|
|
96996
|
+
export type CreateTagRuleRequest = rebilly.CreateTagRuleRequest;
|
|
96997
|
+
export type PostTagRuleResponse = rebilly.PostTagRuleResponse;
|
|
96998
|
+
export type PostTagRuleResponsePromise = rebilly.PostTagRuleResponsePromise;
|
|
96999
|
+
export type GetTagRuleRequest = rebilly.GetTagRuleRequest;
|
|
97000
|
+
export type GetTagRuleResponse = rebilly.GetTagRuleResponse;
|
|
97001
|
+
export type GetTagRuleResponsePromise = rebilly.GetTagRuleResponsePromise;
|
|
97002
|
+
export type PutTagRuleRequest = rebilly.PutTagRuleRequest;
|
|
97003
|
+
export type PutTagRuleResponse = rebilly.PutTagRuleResponse;
|
|
97004
|
+
export type PutTagRuleResponsePromise = rebilly.PutTagRuleResponsePromise;
|
|
97005
|
+
export type DeleteTagRuleResponse = rebilly.DeleteTagRuleResponse;
|
|
97006
|
+
export type DeleteTagRuleResponsePromise = rebilly.DeleteTagRuleResponsePromise;
|
|
97007
|
+
export type StorefrontGetAccountRequest = rebilly.StorefrontGetAccountRequest;
|
|
97008
|
+
export type StorefrontGetAccountResponse = rebilly.StorefrontGetAccountResponse;
|
|
97009
|
+
export type StorefrontGetAccountResponsePromise = rebilly.StorefrontGetAccountResponsePromise;
|
|
97010
|
+
export type StorefrontPatchAccountRequest = rebilly.StorefrontPatchAccountRequest;
|
|
97011
|
+
export type StorefrontPatchAccountResponse = rebilly.StorefrontPatchAccountResponse;
|
|
97012
|
+
export type StorefrontPatchAccountResponsePromise = rebilly.StorefrontPatchAccountResponsePromise;
|
|
97013
|
+
export type StorefrontPostForgotPasswordRequest = rebilly.StorefrontPostForgotPasswordRequest;
|
|
97014
|
+
export type StorefrontCreateForgotPasswordRequest = rebilly.StorefrontCreateForgotPasswordRequest;
|
|
97015
|
+
export type StorefrontPostForgotPasswordResponse = rebilly.StorefrontPostForgotPasswordResponse;
|
|
97016
|
+
export type StorefrontPostForgotPasswordResponsePromise = rebilly.StorefrontPostForgotPasswordResponsePromise;
|
|
97017
|
+
export type StorefrontPatchAccountPasswordRequest = rebilly.StorefrontPatchAccountPasswordRequest;
|
|
97018
|
+
export type StorefrontPatchAccountPasswordResponse = rebilly.StorefrontPatchAccountPasswordResponse;
|
|
97019
|
+
export type StorefrontPatchAccountPasswordResponsePromise = rebilly.StorefrontPatchAccountPasswordResponsePromise;
|
|
97020
|
+
export type StorefrontPostAccountResendVerificationRequest = rebilly.StorefrontPostAccountResendVerificationRequest;
|
|
97021
|
+
export type StorefrontCreateAccountResendVerificationRequest = rebilly.StorefrontCreateAccountResendVerificationRequest;
|
|
97022
|
+
export type StorefrontPostAccountResendVerificationResponse = rebilly.StorefrontPostAccountResendVerificationResponse;
|
|
97023
|
+
export type StorefrontPostAccountResendVerificationResponsePromise = rebilly.StorefrontPostAccountResendVerificationResponsePromise;
|
|
97024
|
+
export type StorefrontPostResetPasswordRequest = rebilly.StorefrontPostResetPasswordRequest;
|
|
97025
|
+
export type StorefrontCreateResetPasswordRequest = rebilly.StorefrontCreateResetPasswordRequest;
|
|
97026
|
+
export type StorefrontPostResetPasswordResponse = rebilly.StorefrontPostResetPasswordResponse;
|
|
97027
|
+
export type StorefrontPostResetPasswordResponsePromise = rebilly.StorefrontPostResetPasswordResponsePromise;
|
|
97028
|
+
export type StorefrontPostAccountVerificationResponse = rebilly.StorefrontPostAccountVerificationResponse;
|
|
97029
|
+
export type StorefrontPostAccountVerificationResponsePromise = rebilly.StorefrontPostAccountVerificationResponsePromise;
|
|
97030
|
+
export type StorefrontGetBillingPortalRequest = rebilly.StorefrontGetBillingPortalRequest;
|
|
97031
|
+
export type StorefrontGetBillingPortalResponse = rebilly.StorefrontGetBillingPortalResponse;
|
|
97032
|
+
export type StorefrontGetBillingPortalResponsePromise = rebilly.StorefrontGetBillingPortalResponsePromise;
|
|
97033
|
+
export type StorefrontGetDepositStrategyRequest = rebilly.StorefrontGetDepositStrategyRequest;
|
|
97034
|
+
export type StorefrontGetDepositStrategyResponse = rebilly.StorefrontGetDepositStrategyResponse;
|
|
97035
|
+
export type StorefrontGetDepositStrategyResponsePromise = rebilly.StorefrontGetDepositStrategyResponsePromise;
|
|
97036
|
+
export type StorefrontGetDepositRequestRequest = rebilly.StorefrontGetDepositRequestRequest;
|
|
97037
|
+
export type StorefrontGetDepositRequestResponse = rebilly.StorefrontGetDepositRequestResponse;
|
|
97038
|
+
export type StorefrontGetDepositRequestResponsePromise = rebilly.StorefrontGetDepositRequestResponsePromise;
|
|
97039
|
+
export type StorefrontGetCashierRequest = rebilly.StorefrontGetCashierRequest;
|
|
97040
|
+
export type StorefrontGetCashierResponse = rebilly.StorefrontGetCashierResponse;
|
|
97041
|
+
export type StorefrontGetCashierResponsePromise = rebilly.StorefrontGetCashierResponsePromise;
|
|
97042
|
+
export type StorefrontPostCashierPayoutRequestCancellationRequest = rebilly.StorefrontPostCashierPayoutRequestCancellationRequest;
|
|
97043
|
+
export type StorefrontCreateCashierPayoutRequestCancellationRequest = rebilly.StorefrontCreateCashierPayoutRequestCancellationRequest;
|
|
97044
|
+
export type StorefrontPostCashierPayoutRequestCancellationResponse = rebilly.StorefrontPostCashierPayoutRequestCancellationResponse;
|
|
97045
|
+
export type StorefrontPostCashierPayoutRequestCancellationResponsePromise = rebilly.StorefrontPostCashierPayoutRequestCancellationResponsePromise;
|
|
97046
|
+
export type StorefrontPostDepositRequest = rebilly.StorefrontPostDepositRequest;
|
|
97047
|
+
export type StorefrontCreateDepositRequest = rebilly.StorefrontCreateDepositRequest;
|
|
97048
|
+
export type StorefrontPostDepositResponse = rebilly.StorefrontPostDepositResponse;
|
|
97049
|
+
export type StorefrontPostDepositResponsePromise = rebilly.StorefrontPostDepositResponsePromise;
|
|
97050
|
+
export type StorefrontGetCheckoutFormRequest = rebilly.StorefrontGetCheckoutFormRequest;
|
|
97051
|
+
export type StorefrontGetCheckoutFormResponse = rebilly.StorefrontGetCheckoutFormResponse;
|
|
97052
|
+
export type StorefrontGetCheckoutFormResponsePromise = rebilly.StorefrontGetCheckoutFormResponsePromise;
|
|
97053
|
+
export type StorefrontGetCustomFieldCollectionRequest = rebilly.StorefrontGetCustomFieldCollectionRequest;
|
|
97054
|
+
export type StorefrontGetCustomFieldCollectionResponse = rebilly.StorefrontGetCustomFieldCollectionResponse;
|
|
97055
|
+
export type StorefrontGetCustomFieldCollectionResponsePromise = rebilly.StorefrontGetCustomFieldCollectionResponsePromise;
|
|
97056
|
+
export type StorefrontGetInvoiceCollectionRequest = rebilly.StorefrontGetInvoiceCollectionRequest;
|
|
97057
|
+
export type StorefrontGetInvoiceCollectionResponse = rebilly.StorefrontGetInvoiceCollectionResponse;
|
|
97058
|
+
export type StorefrontGetInvoiceCollectionResponsePromise = rebilly.StorefrontGetInvoiceCollectionResponsePromise;
|
|
97059
|
+
export type StorefrontGetInvoiceRequest = rebilly.StorefrontGetInvoiceRequest;
|
|
97060
|
+
export type StorefrontGetInvoiceResponse = rebilly.StorefrontGetInvoiceResponse;
|
|
97061
|
+
export type StorefrontGetInvoiceResponsePromise = rebilly.StorefrontGetInvoiceResponsePromise;
|
|
97062
|
+
export type StorefrontPatchInvoiceRequest = rebilly.StorefrontPatchInvoiceRequest;
|
|
97063
|
+
export type StorefrontPatchInvoiceResponse = rebilly.StorefrontPatchInvoiceResponse;
|
|
97064
|
+
export type StorefrontPatchInvoiceResponsePromise = rebilly.StorefrontPatchInvoiceResponsePromise;
|
|
97065
|
+
export type StorefrontGetOrderUpcomingInvoiceRequest = rebilly.StorefrontGetOrderUpcomingInvoiceRequest;
|
|
97066
|
+
export type StorefrontGetOrderUpcomingInvoiceResponse = rebilly.StorefrontGetOrderUpcomingInvoiceResponse;
|
|
97067
|
+
export type StorefrontGetOrderUpcomingInvoiceResponsePromise = rebilly.StorefrontGetOrderUpcomingInvoiceResponsePromise;
|
|
97068
|
+
export type StorefrontGetKycDocumentCollectionRequest = rebilly.StorefrontGetKycDocumentCollectionRequest;
|
|
97069
|
+
export type StorefrontGetKycDocumentCollectionResponse = rebilly.StorefrontGetKycDocumentCollectionResponse;
|
|
97070
|
+
export type StorefrontGetKycDocumentCollectionResponsePromise = rebilly.StorefrontGetKycDocumentCollectionResponsePromise;
|
|
97071
|
+
export type StorefrontPostKycDocumentRequest = rebilly.StorefrontPostKycDocumentRequest;
|
|
97072
|
+
export type StorefrontCreateKycDocumentRequest = rebilly.StorefrontCreateKycDocumentRequest;
|
|
97073
|
+
export type StorefrontPostKycDocumentResponse = rebilly.StorefrontPostKycDocumentResponse;
|
|
97074
|
+
export type StorefrontPostKycDocumentResponsePromise = rebilly.StorefrontPostKycDocumentResponsePromise;
|
|
97075
|
+
export type StorefrontGetKycDocumentRequest = rebilly.StorefrontGetKycDocumentRequest;
|
|
97076
|
+
export type StorefrontGetKycDocumentResponse = rebilly.StorefrontGetKycDocumentResponse;
|
|
97077
|
+
export type StorefrontGetKycDocumentResponsePromise = rebilly.StorefrontGetKycDocumentResponsePromise;
|
|
97078
|
+
export type StorefrontPatchKycDocumentRequest = rebilly.StorefrontPatchKycDocumentRequest;
|
|
97079
|
+
export type StorefrontPatchKycDocumentResponse = rebilly.StorefrontPatchKycDocumentResponse;
|
|
97080
|
+
export type StorefrontPatchKycDocumentResponsePromise = rebilly.StorefrontPatchKycDocumentResponsePromise;
|
|
97081
|
+
export type StorefrontGetKycRequestRequest = rebilly.StorefrontGetKycRequestRequest;
|
|
97082
|
+
export type StorefrontGetKycRequestResponse = rebilly.StorefrontGetKycRequestResponse;
|
|
97083
|
+
export type StorefrontGetKycRequestResponsePromise = rebilly.StorefrontGetKycRequestResponsePromise;
|
|
97084
|
+
export type StorefrontPostKycLivenessSessionRequest = rebilly.StorefrontPostKycLivenessSessionRequest;
|
|
97085
|
+
export type StorefrontCreateKycLivenessSessionRequest = rebilly.StorefrontCreateKycLivenessSessionRequest;
|
|
97086
|
+
export type StorefrontPostKycLivenessSessionResponse = rebilly.StorefrontPostKycLivenessSessionResponse;
|
|
97087
|
+
export type StorefrontPostKycLivenessSessionResponsePromise = rebilly.StorefrontPostKycLivenessSessionResponsePromise;
|
|
97088
|
+
export type StorefrontGetKycLivenessSessionRequest = rebilly.StorefrontGetKycLivenessSessionRequest;
|
|
97089
|
+
export type StorefrontGetKycLivenessSessionResponse = rebilly.StorefrontGetKycLivenessSessionResponse;
|
|
97090
|
+
export type StorefrontGetKycLivenessSessionResponsePromise = rebilly.StorefrontGetKycLivenessSessionResponsePromise;
|
|
97091
|
+
export type StorefrontPostKycLivenessSessionFinishResponse = rebilly.StorefrontPostKycLivenessSessionFinishResponse;
|
|
97092
|
+
export type StorefrontPostKycLivenessSessionFinishResponsePromise = rebilly.StorefrontPostKycLivenessSessionFinishResponsePromise;
|
|
97093
|
+
export type StorefrontPostLoginRequest = rebilly.StorefrontPostLoginRequest;
|
|
97094
|
+
export type StorefrontCreateLoginRequest = rebilly.StorefrontCreateLoginRequest;
|
|
97095
|
+
export type StorefrontPostLoginResponse = rebilly.StorefrontPostLoginResponse;
|
|
97096
|
+
export type StorefrontPostLoginResponsePromise = rebilly.StorefrontPostLoginResponsePromise;
|
|
97097
|
+
export type StorefrontPostLogoutResponse = rebilly.StorefrontPostLogoutResponse;
|
|
97098
|
+
export type StorefrontPostLogoutResponsePromise = rebilly.StorefrontPostLogoutResponsePromise;
|
|
97099
|
+
export type StorefrontGetOrderCollectionRequest = rebilly.StorefrontGetOrderCollectionRequest;
|
|
97100
|
+
export type StorefrontGetOrderCollectionResponse = rebilly.StorefrontGetOrderCollectionResponse;
|
|
97101
|
+
export type StorefrontGetOrderCollectionResponsePromise = rebilly.StorefrontGetOrderCollectionResponsePromise;
|
|
97102
|
+
export type StorefrontGetOrderRequest = rebilly.StorefrontGetOrderRequest;
|
|
97103
|
+
export type StorefrontGetOrderResponse = rebilly.StorefrontGetOrderResponse;
|
|
97104
|
+
export type StorefrontGetOrderResponsePromise = rebilly.StorefrontGetOrderResponsePromise;
|
|
97105
|
+
export type StorefrontPatchOrderRequest = rebilly.StorefrontPatchOrderRequest;
|
|
97106
|
+
export type StorefrontPatchOrderResponse = rebilly.StorefrontPatchOrderResponse;
|
|
97107
|
+
export type StorefrontPatchOrderResponsePromise = rebilly.StorefrontPatchOrderResponsePromise;
|
|
97108
|
+
export type StorefrontPostOrderCancellationRequest = rebilly.StorefrontPostOrderCancellationRequest;
|
|
97109
|
+
export type StorefrontCreateOrderCancellationRequest = rebilly.StorefrontCreateOrderCancellationRequest;
|
|
97110
|
+
export type StorefrontPostOrderCancellationResponse = rebilly.StorefrontPostOrderCancellationResponse;
|
|
97111
|
+
export type StorefrontPostOrderCancellationResponsePromise = rebilly.StorefrontPostOrderCancellationResponsePromise;
|
|
97112
|
+
export type StorefrontPostOrderPauseRequest = rebilly.StorefrontPostOrderPauseRequest;
|
|
97113
|
+
export type StorefrontCreateOrderPauseRequest = rebilly.StorefrontCreateOrderPauseRequest;
|
|
97114
|
+
export type StorefrontPostOrderPauseResponse = rebilly.StorefrontPostOrderPauseResponse;
|
|
97115
|
+
export type StorefrontPostOrderPauseResponsePromise = rebilly.StorefrontPostOrderPauseResponsePromise;
|
|
97116
|
+
export type StorefrontPostSubscriptionItemsChangeRequest = rebilly.StorefrontPostSubscriptionItemsChangeRequest;
|
|
97117
|
+
export type StorefrontCreateSubscriptionItemsChangeRequest = rebilly.StorefrontCreateSubscriptionItemsChangeRequest;
|
|
97118
|
+
export type StorefrontPostSubscriptionItemsChangeResponse = rebilly.StorefrontPostSubscriptionItemsChangeResponse;
|
|
97119
|
+
export type StorefrontPostSubscriptionItemsChangeResponsePromise = rebilly.StorefrontPostSubscriptionItemsChangeResponsePromise;
|
|
97120
|
+
export type StorefrontPostSubscriptionReactivationRequest = rebilly.StorefrontPostSubscriptionReactivationRequest;
|
|
97121
|
+
export type StorefrontCreateSubscriptionReactivationRequest = rebilly.StorefrontCreateSubscriptionReactivationRequest;
|
|
97122
|
+
export type StorefrontPostSubscriptionReactivationResponse = rebilly.StorefrontPostSubscriptionReactivationResponse;
|
|
97123
|
+
export type StorefrontPostSubscriptionReactivationResponsePromise = rebilly.StorefrontPostSubscriptionReactivationResponsePromise;
|
|
97124
|
+
export type StorefrontPostPaymentRequest = rebilly.StorefrontPostPaymentRequest;
|
|
97125
|
+
export type StorefrontCreatePaymentRequest = rebilly.StorefrontCreatePaymentRequest;
|
|
97126
|
+
export type StorefrontPostPaymentResponse = rebilly.StorefrontPostPaymentResponse;
|
|
97127
|
+
export type StorefrontPostPaymentResponsePromise = rebilly.StorefrontPostPaymentResponsePromise;
|
|
97128
|
+
export type StorefrontGetPaymentInstrumentCollectionRequest = rebilly.StorefrontGetPaymentInstrumentCollectionRequest;
|
|
97129
|
+
export type StorefrontGetPaymentInstrumentCollectionResponse = rebilly.StorefrontGetPaymentInstrumentCollectionResponse;
|
|
97130
|
+
export type StorefrontGetPaymentInstrumentCollectionResponsePromise = rebilly.StorefrontGetPaymentInstrumentCollectionResponsePromise;
|
|
97131
|
+
export type StorefrontPostPaymentInstrumentRequest = rebilly.StorefrontPostPaymentInstrumentRequest;
|
|
97132
|
+
export type StorefrontCreatePaymentInstrumentRequest = rebilly.StorefrontCreatePaymentInstrumentRequest;
|
|
97133
|
+
export type StorefrontPostPaymentInstrumentResponse = rebilly.StorefrontPostPaymentInstrumentResponse;
|
|
97134
|
+
export type StorefrontPostPaymentInstrumentResponsePromise = rebilly.StorefrontPostPaymentInstrumentResponsePromise;
|
|
97135
|
+
export type StorefrontGetPaymentInstrumentRequest = rebilly.StorefrontGetPaymentInstrumentRequest;
|
|
97136
|
+
export type StorefrontGetPaymentInstrumentResponse = rebilly.StorefrontGetPaymentInstrumentResponse;
|
|
97137
|
+
export type StorefrontGetPaymentInstrumentResponsePromise = rebilly.StorefrontGetPaymentInstrumentResponsePromise;
|
|
97138
|
+
export type StorefrontPatchPaymentInstrumentRequest = rebilly.StorefrontPatchPaymentInstrumentRequest;
|
|
97139
|
+
export type StorefrontPatchPaymentInstrumentResponse = rebilly.StorefrontPatchPaymentInstrumentResponse;
|
|
97140
|
+
export type StorefrontPatchPaymentInstrumentResponsePromise = rebilly.StorefrontPatchPaymentInstrumentResponsePromise;
|
|
97141
|
+
export type StorefrontPostPaymentInstrumentDeactivationResponse = rebilly.StorefrontPostPaymentInstrumentDeactivationResponse;
|
|
97142
|
+
export type StorefrontPostPaymentInstrumentDeactivationResponsePromise = rebilly.StorefrontPostPaymentInstrumentDeactivationResponsePromise;
|
|
97143
|
+
export type StorefrontGetPaymentInstrumentSetupRequest = rebilly.StorefrontGetPaymentInstrumentSetupRequest;
|
|
97144
|
+
export type StorefrontGetPaymentInstrumentSetupResponse = rebilly.StorefrontGetPaymentInstrumentSetupResponse;
|
|
97145
|
+
export type StorefrontGetPaymentInstrumentSetupResponsePromise = rebilly.StorefrontGetPaymentInstrumentSetupResponsePromise;
|
|
97146
|
+
export type StorefrontPostPaymentInstrumentSetupRequest = rebilly.StorefrontPostPaymentInstrumentSetupRequest;
|
|
97147
|
+
export type StorefrontCreatePaymentInstrumentSetupRequest = rebilly.StorefrontCreatePaymentInstrumentSetupRequest;
|
|
97148
|
+
export type StorefrontPostPaymentInstrumentSetupResponse = rebilly.StorefrontPostPaymentInstrumentSetupResponse;
|
|
97149
|
+
export type StorefrontPostPaymentInstrumentSetupResponsePromise = rebilly.StorefrontPostPaymentInstrumentSetupResponsePromise;
|
|
97150
|
+
export type StorefrontGetPayoutRequestCollectionRequest = rebilly.StorefrontGetPayoutRequestCollectionRequest;
|
|
97151
|
+
export type StorefrontGetPayoutRequestCollectionResponse = rebilly.StorefrontGetPayoutRequestCollectionResponse;
|
|
97152
|
+
export type StorefrontGetPayoutRequestCollectionResponsePromise = rebilly.StorefrontGetPayoutRequestCollectionResponsePromise;
|
|
97153
|
+
export type StorefrontPostPayoutRequestRequest = rebilly.StorefrontPostPayoutRequestRequest;
|
|
97154
|
+
export type StorefrontCreatePayoutRequestRequest = rebilly.StorefrontCreatePayoutRequestRequest;
|
|
97155
|
+
export type StorefrontPostPayoutRequestResponse = rebilly.StorefrontPostPayoutRequestResponse;
|
|
97156
|
+
export type StorefrontPostPayoutRequestResponsePromise = rebilly.StorefrontPostPayoutRequestResponsePromise;
|
|
97157
|
+
export type StorefrontGetPayoutRequestRequest = rebilly.StorefrontGetPayoutRequestRequest;
|
|
97158
|
+
export type StorefrontGetPayoutRequestResponse = rebilly.StorefrontGetPayoutRequestResponse;
|
|
97159
|
+
export type StorefrontGetPayoutRequestResponsePromise = rebilly.StorefrontGetPayoutRequestResponsePromise;
|
|
97160
|
+
export type StorefrontPatchPayoutRequestRequest = rebilly.StorefrontPatchPayoutRequestRequest;
|
|
97161
|
+
export type StorefrontPatchPayoutRequestResponse = rebilly.StorefrontPatchPayoutRequestResponse;
|
|
97162
|
+
export type StorefrontPatchPayoutRequestResponsePromise = rebilly.StorefrontPatchPayoutRequestResponsePromise;
|
|
97163
|
+
export type StorefrontGetPlanCollectionRequest = rebilly.StorefrontGetPlanCollectionRequest;
|
|
97164
|
+
export type StorefrontGetPlanCollectionResponse = rebilly.StorefrontGetPlanCollectionResponse;
|
|
97165
|
+
export type StorefrontGetPlanCollectionResponsePromise = rebilly.StorefrontGetPlanCollectionResponsePromise;
|
|
97166
|
+
export type StorefrontGetPlanRequest = rebilly.StorefrontGetPlanRequest;
|
|
97167
|
+
export type StorefrontGetPlanResponse = rebilly.StorefrontGetPlanResponse;
|
|
97168
|
+
export type StorefrontGetPlanResponsePromise = rebilly.StorefrontGetPlanResponsePromise;
|
|
97169
|
+
export type StorefrontGetProductCollectionRequest = rebilly.StorefrontGetProductCollectionRequest;
|
|
97170
|
+
export type StorefrontGetProductCollectionResponse = rebilly.StorefrontGetProductCollectionResponse;
|
|
97171
|
+
export type StorefrontGetProductCollectionResponsePromise = rebilly.StorefrontGetProductCollectionResponsePromise;
|
|
97172
|
+
export type StorefrontGetProductRequest = rebilly.StorefrontGetProductRequest;
|
|
97173
|
+
export type StorefrontGetProductResponse = rebilly.StorefrontGetProductResponse;
|
|
97174
|
+
export type StorefrontGetProductResponsePromise = rebilly.StorefrontGetProductResponsePromise;
|
|
97175
|
+
export type StorefrontPostPurchaseRequest = rebilly.StorefrontPostPurchaseRequest;
|
|
97176
|
+
export type StorefrontCreatePurchaseRequest = rebilly.StorefrontCreatePurchaseRequest;
|
|
97177
|
+
export type StorefrontPostPurchaseResponse = rebilly.StorefrontPostPurchaseResponse;
|
|
97178
|
+
export type StorefrontPostPurchaseResponsePromise = rebilly.StorefrontPostPurchaseResponsePromise;
|
|
97179
|
+
export type StorefrontPostPreviewPurchaseRequest = rebilly.StorefrontPostPreviewPurchaseRequest;
|
|
97180
|
+
export type StorefrontCreatePreviewPurchaseRequest = rebilly.StorefrontCreatePreviewPurchaseRequest;
|
|
97181
|
+
export type StorefrontPostPreviewPurchaseResponse = rebilly.StorefrontPostPreviewPurchaseResponse;
|
|
97182
|
+
export type StorefrontPostPreviewPurchaseResponsePromise = rebilly.StorefrontPostPreviewPurchaseResponsePromise;
|
|
97183
|
+
export type StorefrontGetQuoteRequest = rebilly.StorefrontGetQuoteRequest;
|
|
97184
|
+
export type StorefrontGetQuoteResponse = rebilly.StorefrontGetQuoteResponse;
|
|
97185
|
+
export type StorefrontGetQuoteResponsePromise = rebilly.StorefrontGetQuoteResponsePromise;
|
|
97186
|
+
export type StorefrontPostQuoteAcceptanceResponse = rebilly.StorefrontPostQuoteAcceptanceResponse;
|
|
97187
|
+
export type StorefrontPostQuoteAcceptanceResponsePromise = rebilly.StorefrontPostQuoteAcceptanceResponsePromise;
|
|
97188
|
+
export type StorefrontPostQuoteRejectionResponse = rebilly.StorefrontPostQuoteRejectionResponse;
|
|
97189
|
+
export type StorefrontPostQuoteRejectionResponsePromise = rebilly.StorefrontPostQuoteRejectionResponsePromise;
|
|
97190
|
+
export type StorefrontPostReadyToPayRequest = rebilly.StorefrontPostReadyToPayRequest;
|
|
97191
|
+
export type StorefrontCreateReadyToPayRequest = rebilly.StorefrontCreateReadyToPayRequest;
|
|
97192
|
+
export type StorefrontPostReadyToPayResponse = rebilly.StorefrontPostReadyToPayResponse;
|
|
97193
|
+
export type StorefrontPostReadyToPayResponsePromise = rebilly.StorefrontPostReadyToPayResponsePromise;
|
|
97194
|
+
export type StorefrontPostReadyToPayoutRequest = rebilly.StorefrontPostReadyToPayoutRequest;
|
|
97195
|
+
export type StorefrontCreateReadyToPayoutRequest = rebilly.StorefrontCreateReadyToPayoutRequest;
|
|
97196
|
+
export type StorefrontPostReadyToPayoutResponse = rebilly.StorefrontPostReadyToPayoutResponse;
|
|
97197
|
+
export type StorefrontPostReadyToPayoutResponsePromise = rebilly.StorefrontPostReadyToPayoutResponsePromise;
|
|
97198
|
+
export type StorefrontPostRegisterRequest = rebilly.StorefrontPostRegisterRequest;
|
|
97199
|
+
export type StorefrontCreateRegisterRequest = rebilly.StorefrontCreateRegisterRequest;
|
|
97200
|
+
export type StorefrontPostRegisterResponse = rebilly.StorefrontPostRegisterResponse;
|
|
97201
|
+
export type StorefrontPostRegisterResponsePromise = rebilly.StorefrontPostRegisterResponsePromise;
|
|
97202
|
+
export type StorefrontPostSubscriptionRequest = rebilly.StorefrontPostSubscriptionRequest;
|
|
97203
|
+
export type StorefrontCreateSubscriptionRequest = rebilly.StorefrontCreateSubscriptionRequest;
|
|
97204
|
+
export type StorefrontPostSubscriptionResponse = rebilly.StorefrontPostSubscriptionResponse;
|
|
97205
|
+
export type StorefrontPostSubscriptionResponsePromise = rebilly.StorefrontPostSubscriptionResponsePromise;
|
|
97206
|
+
export type StorefrontGetTransactionCollectionRequest = rebilly.StorefrontGetTransactionCollectionRequest;
|
|
97207
|
+
export type StorefrontGetTransactionCollectionResponse = rebilly.StorefrontGetTransactionCollectionResponse;
|
|
97208
|
+
export type StorefrontGetTransactionCollectionResponsePromise = rebilly.StorefrontGetTransactionCollectionResponsePromise;
|
|
97209
|
+
export type StorefrontGetTransactionRequest = rebilly.StorefrontGetTransactionRequest;
|
|
97210
|
+
export type StorefrontGetTransactionResponse = rebilly.StorefrontGetTransactionResponse;
|
|
97211
|
+
export type StorefrontGetTransactionResponsePromise = rebilly.StorefrontGetTransactionResponsePromise;
|
|
97212
|
+
export type StorefrontGetTransactionDccOfferRequest = rebilly.StorefrontGetTransactionDccOfferRequest;
|
|
97213
|
+
export type StorefrontGetTransactionDccOfferResponse = rebilly.StorefrontGetTransactionDccOfferResponse;
|
|
97214
|
+
export type StorefrontGetTransactionDccOfferResponsePromise = rebilly.StorefrontGetTransactionDccOfferResponsePromise;
|
|
97215
|
+
export type StorefrontPatchTransactionDccOfferRequest = rebilly.StorefrontPatchTransactionDccOfferRequest;
|
|
97216
|
+
export type StorefrontPatchTransactionDccOfferResponse = rebilly.StorefrontPatchTransactionDccOfferResponse;
|
|
97217
|
+
export type StorefrontPatchTransactionDccOfferResponsePromise = rebilly.StorefrontPatchTransactionDccOfferResponsePromise;
|
|
97218
|
+
export type StorefrontPostKycRequestContinueResponse = rebilly.StorefrontPostKycRequestContinueResponse;
|
|
97219
|
+
export type StorefrontPostKycRequestContinueResponsePromise = rebilly.StorefrontPostKycRequestContinueResponsePromise;
|
|
97220
|
+
export type StorefrontPostKycRequestBypassResponse = rebilly.StorefrontPostKycRequestBypassResponse;
|
|
97221
|
+
export type StorefrontPostKycRequestBypassResponsePromise = rebilly.StorefrontPostKycRequestBypassResponsePromise;
|
|
97222
|
+
export type StorefrontGetWebsiteRequest = rebilly.StorefrontGetWebsiteRequest;
|
|
97223
|
+
export type StorefrontGetWebsiteResponse = rebilly.StorefrontGetWebsiteResponse;
|
|
97224
|
+
export type StorefrontGetWebsiteResponsePromise = rebilly.StorefrontGetWebsiteResponsePromise;
|
|
97225
|
+
export type GetCustomerSummaryMetricReportRequest = rebilly.GetCustomerSummaryMetricReportRequest;
|
|
97226
|
+
export type GetCustomerSummaryMetricReportResponse = rebilly.GetCustomerSummaryMetricReportResponse;
|
|
97227
|
+
export type GetCustomerSummaryMetricReportResponsePromise = rebilly.GetCustomerSummaryMetricReportResponsePromise;
|
|
97228
|
+
export type GetDataExportCollectionRequest = rebilly.GetDataExportCollectionRequest;
|
|
97229
|
+
export type GetDataExportCollectionResponse = rebilly.GetDataExportCollectionResponse;
|
|
97230
|
+
export type GetDataExportCollectionResponsePromise = rebilly.GetDataExportCollectionResponsePromise;
|
|
97231
|
+
export type PostDataExportRequest = rebilly.PostDataExportRequest;
|
|
97232
|
+
export type CreateDataExportRequest = rebilly.CreateDataExportRequest;
|
|
97233
|
+
export type PostDataExportResponse = rebilly.PostDataExportResponse;
|
|
97234
|
+
export type PostDataExportResponsePromise = rebilly.PostDataExportResponsePromise;
|
|
97235
|
+
export type GetDataExportRequest = rebilly.GetDataExportRequest;
|
|
97236
|
+
export type GetDataExportResponse = rebilly.GetDataExportResponse;
|
|
97237
|
+
export type GetDataExportResponsePromise = rebilly.GetDataExportResponsePromise;
|
|
97238
|
+
export type PutDataExportRequest = rebilly.PutDataExportRequest;
|
|
97239
|
+
export type PutDataExportResponse = rebilly.PutDataExportResponse;
|
|
97240
|
+
export type PutDataExportResponsePromise = rebilly.PutDataExportResponsePromise;
|
|
97241
|
+
export type DeleteDataExportResponse = rebilly.DeleteDataExportResponse;
|
|
97242
|
+
export type DeleteDataExportResponsePromise = rebilly.DeleteDataExportResponsePromise;
|
|
97243
|
+
export type GetHistogramAmlCheckReportRequest = rebilly.GetHistogramAmlCheckReportRequest;
|
|
97244
|
+
export type GetHistogramAmlCheckReportResponse = rebilly.GetHistogramAmlCheckReportResponse;
|
|
97245
|
+
export type GetHistogramAmlCheckReportResponsePromise = rebilly.GetHistogramAmlCheckReportResponsePromise;
|
|
97246
|
+
export type GetHistogramTransactionReportRequest = rebilly.GetHistogramTransactionReportRequest;
|
|
97247
|
+
export type GetHistogramTransactionReportResponse = rebilly.GetHistogramTransactionReportResponse;
|
|
97248
|
+
export type GetHistogramTransactionReportResponsePromise = rebilly.GetHistogramTransactionReportResponsePromise;
|
|
97249
|
+
export type GetApiLogSummaryReportRequest = rebilly.GetApiLogSummaryReportRequest;
|
|
97250
|
+
export type GetApiLogSummaryReportResponse = rebilly.GetApiLogSummaryReportResponse;
|
|
97251
|
+
export type GetApiLogSummaryReportResponsePromise = rebilly.GetApiLogSummaryReportResponsePromise;
|
|
97252
|
+
export type GetAmlCheckReportRequest = rebilly.GetAmlCheckReportRequest;
|
|
97253
|
+
export type GetAmlCheckReportResponse = rebilly.GetAmlCheckReportResponse;
|
|
97254
|
+
export type GetAmlCheckReportResponsePromise = rebilly.GetAmlCheckReportResponsePromise;
|
|
97255
|
+
export type GetAmlInheritedMatchSummaryReportRequest = rebilly.GetAmlInheritedMatchSummaryReportRequest;
|
|
97256
|
+
export type GetAmlInheritedMatchSummaryReportResponse = rebilly.GetAmlInheritedMatchSummaryReportResponse;
|
|
97257
|
+
export type GetAmlInheritedMatchSummaryReportResponsePromise = rebilly.GetAmlInheritedMatchSummaryReportResponsePromise;
|
|
97258
|
+
export type GetCumulativeSubscriptionReportRequest = rebilly.GetCumulativeSubscriptionReportRequest;
|
|
97259
|
+
export type GetCumulativeSubscriptionReportResponse = rebilly.GetCumulativeSubscriptionReportResponse;
|
|
97260
|
+
export type GetCumulativeSubscriptionReportResponsePromise = rebilly.GetCumulativeSubscriptionReportResponsePromise;
|
|
97261
|
+
export type GetDashboardReportRequest = rebilly.GetDashboardReportRequest;
|
|
97262
|
+
export type GetDashboardReportResponse = rebilly.GetDashboardReportResponse;
|
|
97263
|
+
export type GetDashboardReportResponsePromise = rebilly.GetDashboardReportResponsePromise;
|
|
97264
|
+
export type GetDccMarkupReportRequest = rebilly.GetDccMarkupReportRequest;
|
|
97265
|
+
export type GetDccMarkupReportResponse = rebilly.GetDccMarkupReportResponse;
|
|
97266
|
+
export type GetDccMarkupReportResponsePromise = rebilly.GetDccMarkupReportResponsePromise;
|
|
97267
|
+
export type GetDeclinedTransactionReportRequest = rebilly.GetDeclinedTransactionReportRequest;
|
|
97268
|
+
export type GetDeclinedTransactionReportResponse = rebilly.GetDeclinedTransactionReportResponse;
|
|
97269
|
+
export type GetDeclinedTransactionReportResponsePromise = rebilly.GetDeclinedTransactionReportResponsePromise;
|
|
97270
|
+
export type GetDeferredRevenueReportRequest = rebilly.GetDeferredRevenueReportRequest;
|
|
97271
|
+
export type GetDeferredRevenueReportResponse = rebilly.GetDeferredRevenueReportResponse;
|
|
97272
|
+
export type GetDeferredRevenueReportResponsePromise = rebilly.GetDeferredRevenueReportResponsePromise;
|
|
97273
|
+
export type GetDisputeReportRequest = rebilly.GetDisputeReportRequest;
|
|
97274
|
+
export type GetDisputeReportResponse = rebilly.GetDisputeReportResponse;
|
|
97275
|
+
export type GetDisputeReportResponsePromise = rebilly.GetDisputeReportResponsePromise;
|
|
97276
|
+
export type GetTriggeredEventReportRequest = rebilly.GetTriggeredEventReportRequest;
|
|
97277
|
+
export type GetTriggeredEventReportResponse = rebilly.GetTriggeredEventReportResponse;
|
|
97278
|
+
export type GetTriggeredEventReportResponsePromise = rebilly.GetTriggeredEventReportResponsePromise;
|
|
97279
|
+
export type GetTriggeredEventRuleReportRequest = rebilly.GetTriggeredEventRuleReportRequest;
|
|
97280
|
+
export type GetTriggeredEventRuleReportResponse = rebilly.GetTriggeredEventRuleReportResponse;
|
|
97281
|
+
export type GetTriggeredEventRuleReportResponsePromise = rebilly.GetTriggeredEventRuleReportResponsePromise;
|
|
97282
|
+
export type GetFutureRenewalReportRequest = rebilly.GetFutureRenewalReportRequest;
|
|
97283
|
+
export type GetFutureRenewalReportResponse = rebilly.GetFutureRenewalReportResponse;
|
|
97284
|
+
export type GetFutureRenewalReportResponsePromise = rebilly.GetFutureRenewalReportResponsePromise;
|
|
97285
|
+
export type GetJournalReportRequest = rebilly.GetJournalReportRequest;
|
|
97286
|
+
export type GetJournalReportResponse = rebilly.GetJournalReportResponse;
|
|
97287
|
+
export type GetJournalReportResponsePromise = rebilly.GetJournalReportResponsePromise;
|
|
97288
|
+
export type GetJournalSummaryReportRequest = rebilly.GetJournalSummaryReportRequest;
|
|
97289
|
+
export type GetJournalSummaryReportResponse = rebilly.GetJournalSummaryReportResponse;
|
|
97290
|
+
export type GetJournalSummaryReportResponsePromise = rebilly.GetJournalSummaryReportResponsePromise;
|
|
97291
|
+
export type GetKycAcceptanceSummaryReportRequest = rebilly.GetKycAcceptanceSummaryReportRequest;
|
|
97292
|
+
export type GetKycAcceptanceSummaryReportResponse = rebilly.GetKycAcceptanceSummaryReportResponse;
|
|
97293
|
+
export type GetKycAcceptanceSummaryReportResponsePromise = rebilly.GetKycAcceptanceSummaryReportResponsePromise;
|
|
97294
|
+
export type GetKycRejectionSummaryReportRequest = rebilly.GetKycRejectionSummaryReportRequest;
|
|
97295
|
+
export type GetKycRejectionSummaryReportResponse = rebilly.GetKycRejectionSummaryReportResponse;
|
|
97296
|
+
export type GetKycRejectionSummaryReportResponsePromise = rebilly.GetKycRejectionSummaryReportResponsePromise;
|
|
97297
|
+
export type GetKycRequestSummaryReportRequest = rebilly.GetKycRequestSummaryReportRequest;
|
|
97298
|
+
export type GetKycRequestSummaryReportResponse = rebilly.GetKycRequestSummaryReportResponse;
|
|
97299
|
+
export type GetKycRequestSummaryReportResponsePromise = rebilly.GetKycRequestSummaryReportResponsePromise;
|
|
97300
|
+
export type GetMonthlyRecurringRevenueReportRequest = rebilly.GetMonthlyRecurringRevenueReportRequest;
|
|
97301
|
+
export type GetMonthlyRecurringRevenueReportResponse = rebilly.GetMonthlyRecurringRevenueReportResponse;
|
|
97302
|
+
export type GetMonthlyRecurringRevenueReportResponsePromise = rebilly.GetMonthlyRecurringRevenueReportResponsePromise;
|
|
97303
|
+
export type GetAnnualRecurringRevenueReportRequest = rebilly.GetAnnualRecurringRevenueReportRequest;
|
|
97304
|
+
export type GetAnnualRecurringRevenueReportResponse = rebilly.GetAnnualRecurringRevenueReportResponse;
|
|
97305
|
+
export type GetAnnualRecurringRevenueReportResponsePromise = rebilly.GetAnnualRecurringRevenueReportResponsePromise;
|
|
97306
|
+
export type GetRenewalSaleReportRequest = rebilly.GetRenewalSaleReportRequest;
|
|
97307
|
+
export type GetRenewalSaleReportResponse = rebilly.GetRenewalSaleReportResponse;
|
|
97308
|
+
export type GetRenewalSaleReportResponsePromise = rebilly.GetRenewalSaleReportResponsePromise;
|
|
97309
|
+
export type GetRetentionPercentageReportRequest = rebilly.GetRetentionPercentageReportRequest;
|
|
97310
|
+
export type GetRetentionPercentageReportResponse = rebilly.GetRetentionPercentageReportResponse;
|
|
97311
|
+
export type GetRetentionPercentageReportResponsePromise = rebilly.GetRetentionPercentageReportResponsePromise;
|
|
97312
|
+
export type GetRetentionValueReportRequest = rebilly.GetRetentionValueReportRequest;
|
|
97313
|
+
export type GetRetentionValueReportResponse = rebilly.GetRetentionValueReportResponse;
|
|
97314
|
+
export type GetRetentionValueReportResponsePromise = rebilly.GetRetentionValueReportResponsePromise;
|
|
97315
|
+
export type GetRevenueWaterfallReportRequest = rebilly.GetRevenueWaterfallReportRequest;
|
|
97316
|
+
export type GetRevenueWaterfallReportResponse = rebilly.GetRevenueWaterfallReportResponse;
|
|
97317
|
+
export type GetRevenueWaterfallReportResponsePromise = rebilly.GetRevenueWaterfallReportResponsePromise;
|
|
97318
|
+
export type GetSubscriptionCancellationReportRequest = rebilly.GetSubscriptionCancellationReportRequest;
|
|
97319
|
+
export type GetSubscriptionCancellationReportResponse = rebilly.GetSubscriptionCancellationReportResponse;
|
|
97320
|
+
export type GetSubscriptionCancellationReportResponsePromise = rebilly.GetSubscriptionCancellationReportResponsePromise;
|
|
97321
|
+
export type GetSubscriptionRenewalReportRequest = rebilly.GetSubscriptionRenewalReportRequest;
|
|
97322
|
+
export type GetSubscriptionRenewalReportResponse = rebilly.GetSubscriptionRenewalReportResponse;
|
|
97323
|
+
export type GetSubscriptionRenewalReportResponsePromise = rebilly.GetSubscriptionRenewalReportResponsePromise;
|
|
97324
|
+
export type GetTaxReportRequest = rebilly.GetTaxReportRequest;
|
|
97325
|
+
export type GetTaxReportResponse = rebilly.GetTaxReportResponse;
|
|
97326
|
+
export type GetTaxReportResponsePromise = rebilly.GetTaxReportResponsePromise;
|
|
97327
|
+
export type GetTimeSeriesTransactionReportRequest = rebilly.GetTimeSeriesTransactionReportRequest;
|
|
97328
|
+
export type GetTimeSeriesTransactionReportResponse = rebilly.GetTimeSeriesTransactionReportResponse;
|
|
97329
|
+
export type GetTimeSeriesTransactionReportResponsePromise = rebilly.GetTimeSeriesTransactionReportResponsePromise;
|
|
97330
|
+
export type GetTransactionTimeDisputeReportRequest = rebilly.GetTransactionTimeDisputeReportRequest;
|
|
97331
|
+
export type GetTransactionTimeDisputeReportResponse = rebilly.GetTransactionTimeDisputeReportResponse;
|
|
97332
|
+
export type GetTransactionTimeDisputeReportResponsePromise = rebilly.GetTransactionTimeDisputeReportResponsePromise;
|
|
97333
|
+
export type GetTransactionReportRequest = rebilly.GetTransactionReportRequest;
|
|
97334
|
+
export type GetTransactionReportResponse = rebilly.GetTransactionReportResponse;
|
|
97335
|
+
export type GetTransactionReportResponsePromise = rebilly.GetTransactionReportResponsePromise;
|
|
97336
|
+
export type GetSubscriptionSummaryMetricReportRequest = rebilly.GetSubscriptionSummaryMetricReportRequest;
|
|
97337
|
+
export type GetSubscriptionSummaryMetricReportResponse = rebilly.GetSubscriptionSummaryMetricReportResponse;
|
|
97338
|
+
export type GetSubscriptionSummaryMetricReportResponsePromise = rebilly.GetSubscriptionSummaryMetricReportResponsePromise;
|
|
97339
|
+
}
|
|
97340
|
+
|
|
95291
97341
|
declare module "rebilly-js-sdk/types" {
|
|
95292
97342
|
export = rebilly;
|
|
95293
97343
|
}
|