autumn-js 1.2.37 → 1.2.38
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/backend/adapters/express.js +3039 -2460
- package/dist/backend/adapters/express.mjs +4 -4
- package/dist/backend/adapters/fetch.js +3039 -2460
- package/dist/backend/adapters/fetch.mjs +4 -4
- package/dist/backend/adapters/hono.js +3039 -2460
- package/dist/backend/adapters/hono.mjs +4 -4
- package/dist/backend/adapters/index.js +3039 -2460
- package/dist/backend/adapters/index.mjs +7 -7
- package/dist/backend/adapters/next.js +3039 -2460
- package/dist/backend/adapters/next.mjs +4 -4
- package/dist/backend/{chunk-QLH3M5PR.mjs → chunk-5C7KP2BU.mjs} +3040 -2461
- package/dist/backend/{chunk-UWZYM74E.mjs → chunk-CEUAUTNB.mjs} +1 -1
- package/dist/backend/{chunk-DR35G6GS.mjs → chunk-N52JKSJ7.mjs} +1 -1
- package/dist/backend/{chunk-AOAGX4AS.mjs → chunk-PKM7CEE3.mjs} +1 -1
- package/dist/backend/{chunk-AFWY6NDJ.mjs → chunk-TIFFBW34.mjs} +1 -1
- package/dist/backend/{chunk-VMYD4IWS.mjs → chunk-Y3AJLHVL.mjs} +1 -1
- package/dist/backend/{chunk-PMD3Z6EM.mjs → chunk-ZR5K6VMA.mjs} +1 -1
- package/dist/backend/core/handlers/coreHandler.d.mts +1 -1
- package/dist/backend/core/handlers/coreHandler.d.ts +1 -1
- package/dist/backend/core/handlers/coreHandler.js +3039 -2460
- package/dist/backend/core/handlers/coreHandler.mjs +2 -2
- package/dist/backend/core/handlers/executeRoute.d.mts +1 -1
- package/dist/backend/core/handlers/executeRoute.d.ts +1 -1
- package/dist/backend/core/handlers/handleRouteByName.js +3039 -2460
- package/dist/backend/core/handlers/handleRouteByName.mjs +2 -2
- package/dist/backend/core/handlers/index.d.mts +1 -1
- package/dist/backend/core/handlers/index.d.ts +1 -1
- package/dist/backend/core/handlers/index.js +3039 -2460
- package/dist/backend/core/handlers/index.mjs +3 -3
- package/dist/backend/core/index.d.mts +1 -1
- package/dist/backend/core/index.d.ts +1 -1
- package/dist/backend/core/index.js +3039 -2460
- package/dist/backend/core/index.mjs +3 -3
- package/dist/backend/core/routes/index.d.mts +1 -1
- package/dist/backend/core/routes/index.d.ts +1 -1
- package/dist/backend/core/routes/routeBuilder.d.mts +1 -1
- package/dist/backend/core/routes/routeBuilder.d.ts +1 -1
- package/dist/backend/core/routes/routeConfigs.d.mts +1 -1
- package/dist/backend/core/routes/routeConfigs.d.ts +1 -1
- package/dist/backend/core/types/handlerTypes.d.mts +1 -1
- package/dist/backend/core/types/handlerTypes.d.ts +1 -1
- package/dist/backend/core/types/index.d.mts +1 -1
- package/dist/backend/core/types/index.d.ts +1 -1
- package/dist/backend/core/types/routeTypes.d.mts +1 -1
- package/dist/backend/core/types/routeTypes.d.ts +1 -1
- package/dist/backend/index.d.mts +2 -2
- package/dist/backend/index.d.ts +2 -2
- package/dist/backend/index.js +3039 -2460
- package/dist/backend/index.mjs +3 -3
- package/dist/backend/{routeTypes-B0zHyzyX.d.ts → routeTypes-C8YKwtFL.d.ts} +538 -1
- package/dist/backend/{routeTypes-M8hsq6U-.d.mts → routeTypes-gWhxv6xo.d.mts} +538 -1
- package/dist/better-auth/{chunk-HCM5WABX.mjs → chunk-A3ZOJU54.mjs} +3040 -2461
- package/dist/better-auth/index.js +3039 -2460
- package/dist/better-auth/index.mjs +1 -1
- package/dist/better-auth/utils/handleBetterAuthRoute.js +3039 -2460
- package/dist/better-auth/utils/handleBetterAuthRoute.mjs +1 -1
- package/dist/better-auth/utils/index.js +3039 -2460
- package/dist/better-auth/utils/index.mjs +1 -1
- package/dist/sdk/index.d.mts +649 -2
- package/dist/sdk/index.d.ts +649 -2
- package/dist/sdk/index.js +6725 -5952
- package/dist/sdk/index.mjs +6671 -5952
- package/package.json +1 -1
package/dist/sdk/index.d.ts
CHANGED
|
@@ -21937,6 +21937,180 @@ declare function multiAttachRequiredActionFromJSON(jsonString: string): Result$1
|
|
|
21937
21937
|
declare const MultiAttachResponse$inboundSchema: z$1.ZodMiniType<MultiAttachResponse, unknown>;
|
|
21938
21938
|
declare function multiAttachResponseFromJSON(jsonString: string): Result$1<MultiAttachResponse, SDKValidationError>;
|
|
21939
21939
|
|
|
21940
|
+
type MultiUpdateGlobals = {
|
|
21941
|
+
xApiVersion?: string | undefined;
|
|
21942
|
+
};
|
|
21943
|
+
/**
|
|
21944
|
+
* Action to perform for cancellation. 'cancel_immediately' cancels now with prorated refund, 'cancel_end_of_cycle' cancels at period end, 'uncancel' reverses a pending cancellation.
|
|
21945
|
+
*/
|
|
21946
|
+
declare const MultiUpdateCancelAction: {
|
|
21947
|
+
readonly CancelImmediately: "cancel_immediately";
|
|
21948
|
+
readonly CancelEndOfCycle: "cancel_end_of_cycle";
|
|
21949
|
+
readonly Uncancel: "uncancel";
|
|
21950
|
+
};
|
|
21951
|
+
/**
|
|
21952
|
+
* Action to perform for cancellation. 'cancel_immediately' cancels now with prorated refund, 'cancel_end_of_cycle' cancels at period end, 'uncancel' reverses a pending cancellation.
|
|
21953
|
+
*/
|
|
21954
|
+
type MultiUpdateCancelAction = ClosedEnum<typeof MultiUpdateCancelAction>;
|
|
21955
|
+
/**
|
|
21956
|
+
* How to handle proration for this update. 'prorate_immediately' charges/credits prorated amounts now, 'none' skips creating any charges.
|
|
21957
|
+
*/
|
|
21958
|
+
declare const MultiUpdateProrationBehavior: {
|
|
21959
|
+
readonly ProrateImmediately: "prorate_immediately";
|
|
21960
|
+
readonly None: "none";
|
|
21961
|
+
};
|
|
21962
|
+
/**
|
|
21963
|
+
* How to handle proration for this update. 'prorate_immediately' charges/credits prorated amounts now, 'none' skips creating any charges.
|
|
21964
|
+
*/
|
|
21965
|
+
type MultiUpdateProrationBehavior = ClosedEnum<typeof MultiUpdateProrationBehavior>;
|
|
21966
|
+
type MultiUpdateUpdate = {
|
|
21967
|
+
/**
|
|
21968
|
+
* The ID of the plan to update. Optional if subscription_id is provided.
|
|
21969
|
+
*/
|
|
21970
|
+
planId?: string | undefined;
|
|
21971
|
+
/**
|
|
21972
|
+
* A unique ID to identify the subscription to update. Useful when a customer has multiple products with the same plan.
|
|
21973
|
+
*/
|
|
21974
|
+
subscriptionId?: string | undefined;
|
|
21975
|
+
/**
|
|
21976
|
+
* The ID of the entity this update targets. Overrides the top-level entity_id for this update.
|
|
21977
|
+
*/
|
|
21978
|
+
entityId?: string | undefined;
|
|
21979
|
+
/**
|
|
21980
|
+
* Action to perform for cancellation. 'cancel_immediately' cancels now with prorated refund, 'cancel_end_of_cycle' cancels at period end, 'uncancel' reverses a pending cancellation.
|
|
21981
|
+
*/
|
|
21982
|
+
cancelAction: MultiUpdateCancelAction;
|
|
21983
|
+
/**
|
|
21984
|
+
* How to handle proration for this update. 'prorate_immediately' charges/credits prorated amounts now, 'none' skips creating any charges.
|
|
21985
|
+
*/
|
|
21986
|
+
prorationBehavior?: MultiUpdateProrationBehavior | undefined;
|
|
21987
|
+
};
|
|
21988
|
+
type MultiUpdateParams = {
|
|
21989
|
+
/**
|
|
21990
|
+
* The ID of the customer to update plans for.
|
|
21991
|
+
*/
|
|
21992
|
+
customerId: string;
|
|
21993
|
+
/**
|
|
21994
|
+
* The ID of the entity to update plans for. Individual updates can override this with their own entity_id.
|
|
21995
|
+
*/
|
|
21996
|
+
entityId?: string | undefined;
|
|
21997
|
+
/**
|
|
21998
|
+
* The list of plan updates to apply to the customer.
|
|
21999
|
+
*/
|
|
22000
|
+
updates: Array<MultiUpdateUpdate>;
|
|
22001
|
+
};
|
|
22002
|
+
/**
|
|
22003
|
+
* Invoice details if an invoice was created. Only present when a charge was made.
|
|
22004
|
+
*/
|
|
22005
|
+
type MultiUpdateInvoice = {
|
|
22006
|
+
/**
|
|
22007
|
+
* The status of the invoice (e.g., 'paid', 'open', 'draft').
|
|
22008
|
+
*/
|
|
22009
|
+
status: string | null;
|
|
22010
|
+
/**
|
|
22011
|
+
* The Stripe invoice ID.
|
|
22012
|
+
*/
|
|
22013
|
+
stripeId: string;
|
|
22014
|
+
/**
|
|
22015
|
+
* The total amount of the invoice in cents.
|
|
22016
|
+
*/
|
|
22017
|
+
total: number;
|
|
22018
|
+
/**
|
|
22019
|
+
* The three-letter ISO currency code (e.g., 'usd').
|
|
22020
|
+
*/
|
|
22021
|
+
currency: string;
|
|
22022
|
+
/**
|
|
22023
|
+
* URL to the hosted invoice page where the customer can view and pay the invoice.
|
|
22024
|
+
*/
|
|
22025
|
+
hostedInvoiceUrl: string | null;
|
|
22026
|
+
};
|
|
22027
|
+
/**
|
|
22028
|
+
* The type of action required to complete the payment.
|
|
22029
|
+
*/
|
|
22030
|
+
declare const MultiUpdateCode: {
|
|
22031
|
+
readonly ThreedsRequired: "3ds_required";
|
|
22032
|
+
readonly PaymentMethodRequired: "payment_method_required";
|
|
22033
|
+
readonly PaymentFailed: "payment_failed";
|
|
22034
|
+
readonly PaymentProcessing: "payment_processing";
|
|
22035
|
+
};
|
|
22036
|
+
/**
|
|
22037
|
+
* The type of action required to complete the payment.
|
|
22038
|
+
*/
|
|
22039
|
+
type MultiUpdateCode = OpenEnum<typeof MultiUpdateCode>;
|
|
22040
|
+
/**
|
|
22041
|
+
* Details about any action required to complete the payment. Present when the payment could not be processed automatically.
|
|
22042
|
+
*/
|
|
22043
|
+
type MultiUpdateRequiredAction = {
|
|
22044
|
+
/**
|
|
22045
|
+
* The type of action required to complete the payment.
|
|
22046
|
+
*/
|
|
22047
|
+
code: MultiUpdateCode;
|
|
22048
|
+
/**
|
|
22049
|
+
* A human-readable explanation of why this action is required.
|
|
22050
|
+
*/
|
|
22051
|
+
reason: string;
|
|
22052
|
+
};
|
|
22053
|
+
/**
|
|
22054
|
+
* OK
|
|
22055
|
+
*/
|
|
22056
|
+
type MultiUpdateResponse = {
|
|
22057
|
+
/**
|
|
22058
|
+
* The ID of the customer.
|
|
22059
|
+
*/
|
|
22060
|
+
customerId: string;
|
|
22061
|
+
/**
|
|
22062
|
+
* The ID of the entity, if the plan was attached to an entity.
|
|
22063
|
+
*/
|
|
22064
|
+
entityId?: string | undefined;
|
|
22065
|
+
/**
|
|
22066
|
+
* Invoice details if an invoice was created. Only present when a charge was made.
|
|
22067
|
+
*/
|
|
22068
|
+
invoice?: MultiUpdateInvoice | undefined;
|
|
22069
|
+
/**
|
|
22070
|
+
* URL to redirect the customer to complete payment. Null if no payment action is required.
|
|
22071
|
+
*/
|
|
22072
|
+
paymentUrl: string | null;
|
|
22073
|
+
/**
|
|
22074
|
+
* Details about any action required to complete the payment. Present when the payment could not be processed automatically.
|
|
22075
|
+
*/
|
|
22076
|
+
requiredAction?: MultiUpdateRequiredAction | undefined;
|
|
22077
|
+
};
|
|
22078
|
+
/** @internal */
|
|
22079
|
+
declare const MultiUpdateCancelAction$outboundSchema: z$1.ZodMiniEnum<typeof MultiUpdateCancelAction>;
|
|
22080
|
+
/** @internal */
|
|
22081
|
+
declare const MultiUpdateProrationBehavior$outboundSchema: z$1.ZodMiniEnum<typeof MultiUpdateProrationBehavior>;
|
|
22082
|
+
/** @internal */
|
|
22083
|
+
type MultiUpdateUpdate$Outbound = {
|
|
22084
|
+
plan_id?: string | undefined;
|
|
22085
|
+
subscription_id?: string | undefined;
|
|
22086
|
+
entity_id?: string | undefined;
|
|
22087
|
+
cancel_action: string;
|
|
22088
|
+
proration_behavior?: string | undefined;
|
|
22089
|
+
};
|
|
22090
|
+
/** @internal */
|
|
22091
|
+
declare const MultiUpdateUpdate$outboundSchema: z$1.ZodMiniType<MultiUpdateUpdate$Outbound, MultiUpdateUpdate>;
|
|
22092
|
+
declare function multiUpdateUpdateToJSON(multiUpdateUpdate: MultiUpdateUpdate): string;
|
|
22093
|
+
/** @internal */
|
|
22094
|
+
type MultiUpdateParams$Outbound = {
|
|
22095
|
+
customer_id: string;
|
|
22096
|
+
entity_id?: string | undefined;
|
|
22097
|
+
updates: Array<MultiUpdateUpdate$Outbound>;
|
|
22098
|
+
};
|
|
22099
|
+
/** @internal */
|
|
22100
|
+
declare const MultiUpdateParams$outboundSchema: z$1.ZodMiniType<MultiUpdateParams$Outbound, MultiUpdateParams>;
|
|
22101
|
+
declare function multiUpdateParamsToJSON(multiUpdateParams: MultiUpdateParams): string;
|
|
22102
|
+
/** @internal */
|
|
22103
|
+
declare const MultiUpdateInvoice$inboundSchema: z$1.ZodMiniType<MultiUpdateInvoice, unknown>;
|
|
22104
|
+
declare function multiUpdateInvoiceFromJSON(jsonString: string): Result$1<MultiUpdateInvoice, SDKValidationError>;
|
|
22105
|
+
/** @internal */
|
|
22106
|
+
declare const MultiUpdateCode$inboundSchema: z$1.ZodMiniType<MultiUpdateCode, unknown>;
|
|
22107
|
+
/** @internal */
|
|
22108
|
+
declare const MultiUpdateRequiredAction$inboundSchema: z$1.ZodMiniType<MultiUpdateRequiredAction, unknown>;
|
|
22109
|
+
declare function multiUpdateRequiredActionFromJSON(jsonString: string): Result$1<MultiUpdateRequiredAction, SDKValidationError>;
|
|
22110
|
+
/** @internal */
|
|
22111
|
+
declare const MultiUpdateResponse$inboundSchema: z$1.ZodMiniType<MultiUpdateResponse, unknown>;
|
|
22112
|
+
declare function multiUpdateResponseFromJSON(jsonString: string): Result$1<MultiUpdateResponse, SDKValidationError>;
|
|
22113
|
+
|
|
21940
22114
|
type OpenCustomerPortalGlobals = {
|
|
21941
22115
|
xApiVersion?: string | undefined;
|
|
21942
22116
|
};
|
|
@@ -25059,6 +25233,437 @@ declare function previewMultiAttachInvoiceCreditsFromJSON(jsonString: string): R
|
|
|
25059
25233
|
declare const PreviewMultiAttachResponse$inboundSchema: z$1.ZodMiniType<PreviewMultiAttachResponse, unknown>;
|
|
25060
25234
|
declare function previewMultiAttachResponseFromJSON(jsonString: string): Result$1<PreviewMultiAttachResponse, SDKValidationError>;
|
|
25061
25235
|
|
|
25236
|
+
type PreviewMultiUpdateGlobals = {
|
|
25237
|
+
xApiVersion?: string | undefined;
|
|
25238
|
+
};
|
|
25239
|
+
/**
|
|
25240
|
+
* Action to perform for cancellation. 'cancel_immediately' cancels now with prorated refund, 'cancel_end_of_cycle' cancels at period end, 'uncancel' reverses a pending cancellation.
|
|
25241
|
+
*/
|
|
25242
|
+
declare const PreviewMultiUpdateCancelAction: {
|
|
25243
|
+
readonly CancelImmediately: "cancel_immediately";
|
|
25244
|
+
readonly CancelEndOfCycle: "cancel_end_of_cycle";
|
|
25245
|
+
readonly Uncancel: "uncancel";
|
|
25246
|
+
};
|
|
25247
|
+
/**
|
|
25248
|
+
* Action to perform for cancellation. 'cancel_immediately' cancels now with prorated refund, 'cancel_end_of_cycle' cancels at period end, 'uncancel' reverses a pending cancellation.
|
|
25249
|
+
*/
|
|
25250
|
+
type PreviewMultiUpdateCancelAction = ClosedEnum<typeof PreviewMultiUpdateCancelAction>;
|
|
25251
|
+
/**
|
|
25252
|
+
* How to handle proration for this update. 'prorate_immediately' charges/credits prorated amounts now, 'none' skips creating any charges.
|
|
25253
|
+
*/
|
|
25254
|
+
declare const PreviewMultiUpdateProrationBehavior: {
|
|
25255
|
+
readonly ProrateImmediately: "prorate_immediately";
|
|
25256
|
+
readonly None: "none";
|
|
25257
|
+
};
|
|
25258
|
+
/**
|
|
25259
|
+
* How to handle proration for this update. 'prorate_immediately' charges/credits prorated amounts now, 'none' skips creating any charges.
|
|
25260
|
+
*/
|
|
25261
|
+
type PreviewMultiUpdateProrationBehavior = ClosedEnum<typeof PreviewMultiUpdateProrationBehavior>;
|
|
25262
|
+
type PreviewMultiUpdateUpdate = {
|
|
25263
|
+
/**
|
|
25264
|
+
* The ID of the plan to update. Optional if subscription_id is provided.
|
|
25265
|
+
*/
|
|
25266
|
+
planId?: string | undefined;
|
|
25267
|
+
/**
|
|
25268
|
+
* A unique ID to identify the subscription to update. Useful when a customer has multiple products with the same plan.
|
|
25269
|
+
*/
|
|
25270
|
+
subscriptionId?: string | undefined;
|
|
25271
|
+
/**
|
|
25272
|
+
* The ID of the entity this update targets. Overrides the top-level entity_id for this update.
|
|
25273
|
+
*/
|
|
25274
|
+
entityId?: string | undefined;
|
|
25275
|
+
/**
|
|
25276
|
+
* Action to perform for cancellation. 'cancel_immediately' cancels now with prorated refund, 'cancel_end_of_cycle' cancels at period end, 'uncancel' reverses a pending cancellation.
|
|
25277
|
+
*/
|
|
25278
|
+
cancelAction: PreviewMultiUpdateCancelAction;
|
|
25279
|
+
/**
|
|
25280
|
+
* How to handle proration for this update. 'prorate_immediately' charges/credits prorated amounts now, 'none' skips creating any charges.
|
|
25281
|
+
*/
|
|
25282
|
+
prorationBehavior?: PreviewMultiUpdateProrationBehavior | undefined;
|
|
25283
|
+
};
|
|
25284
|
+
type PreviewMultiUpdateParams = {
|
|
25285
|
+
/**
|
|
25286
|
+
* The ID of the customer to update plans for.
|
|
25287
|
+
*/
|
|
25288
|
+
customerId: string;
|
|
25289
|
+
/**
|
|
25290
|
+
* The ID of the entity to update plans for. Individual updates can override this with their own entity_id.
|
|
25291
|
+
*/
|
|
25292
|
+
entityId?: string | undefined;
|
|
25293
|
+
/**
|
|
25294
|
+
* The list of plan updates to apply to the customer.
|
|
25295
|
+
*/
|
|
25296
|
+
updates: Array<PreviewMultiUpdateUpdate>;
|
|
25297
|
+
};
|
|
25298
|
+
type PreviewMultiUpdateDiscount = {
|
|
25299
|
+
amountOff: number;
|
|
25300
|
+
percentOff?: number | undefined;
|
|
25301
|
+
rewardId?: string | undefined;
|
|
25302
|
+
rewardName?: string | undefined;
|
|
25303
|
+
};
|
|
25304
|
+
/**
|
|
25305
|
+
* The period of time that this line item is being charged for.
|
|
25306
|
+
*/
|
|
25307
|
+
type PreviewMultiUpdateLineItemPeriod = {
|
|
25308
|
+
/**
|
|
25309
|
+
* The start of the period in milliseconds since the Unix epoch.
|
|
25310
|
+
*/
|
|
25311
|
+
start: number;
|
|
25312
|
+
/**
|
|
25313
|
+
* The end of the period in milliseconds since the Unix epoch.
|
|
25314
|
+
*/
|
|
25315
|
+
end: number;
|
|
25316
|
+
};
|
|
25317
|
+
type PreviewMultiUpdateLineItem = {
|
|
25318
|
+
/**
|
|
25319
|
+
* The name of the line item to display to the customer if you're building a UI. It will either be the plan name or the feature name.
|
|
25320
|
+
*/
|
|
25321
|
+
displayName: string;
|
|
25322
|
+
/**
|
|
25323
|
+
* A detailed description of the line item.
|
|
25324
|
+
*/
|
|
25325
|
+
description: string;
|
|
25326
|
+
/**
|
|
25327
|
+
* The amount in cents before discounts and tax for this line item.
|
|
25328
|
+
*/
|
|
25329
|
+
subtotal: number;
|
|
25330
|
+
/**
|
|
25331
|
+
* The final amount in cents after discounts and tax for this line item.
|
|
25332
|
+
*/
|
|
25333
|
+
total: number;
|
|
25334
|
+
/**
|
|
25335
|
+
* List of discounts applied to this line item.
|
|
25336
|
+
*/
|
|
25337
|
+
discounts?: Array<PreviewMultiUpdateDiscount> | undefined;
|
|
25338
|
+
/**
|
|
25339
|
+
* The ID of the plan that this line item belongs to.
|
|
25340
|
+
*/
|
|
25341
|
+
planId: string;
|
|
25342
|
+
/**
|
|
25343
|
+
* The ID of the feature that this line item belongs to.
|
|
25344
|
+
*/
|
|
25345
|
+
featureId: string | null;
|
|
25346
|
+
/**
|
|
25347
|
+
* The period of time that this line item is being charged for.
|
|
25348
|
+
*/
|
|
25349
|
+
period?: PreviewMultiUpdateLineItemPeriod | undefined;
|
|
25350
|
+
/**
|
|
25351
|
+
* The quantity of the line item.
|
|
25352
|
+
*/
|
|
25353
|
+
quantity: number;
|
|
25354
|
+
};
|
|
25355
|
+
type PreviewMultiUpdateNextCycleDiscount = {
|
|
25356
|
+
amountOff: number;
|
|
25357
|
+
percentOff?: number | undefined;
|
|
25358
|
+
rewardId?: string | undefined;
|
|
25359
|
+
rewardName?: string | undefined;
|
|
25360
|
+
};
|
|
25361
|
+
/**
|
|
25362
|
+
* The period of time that this line item is being charged for.
|
|
25363
|
+
*/
|
|
25364
|
+
type PreviewMultiUpdateNextCycleLineItemPeriod = {
|
|
25365
|
+
/**
|
|
25366
|
+
* The start of the period in milliseconds since the Unix epoch.
|
|
25367
|
+
*/
|
|
25368
|
+
start: number;
|
|
25369
|
+
/**
|
|
25370
|
+
* The end of the period in milliseconds since the Unix epoch.
|
|
25371
|
+
*/
|
|
25372
|
+
end: number;
|
|
25373
|
+
};
|
|
25374
|
+
type PreviewMultiUpdateNextCycleLineItem = {
|
|
25375
|
+
/**
|
|
25376
|
+
* The name of the line item to display to the customer if you're building a UI. It will either be the plan name or the feature name.
|
|
25377
|
+
*/
|
|
25378
|
+
displayName: string;
|
|
25379
|
+
/**
|
|
25380
|
+
* A detailed description of the line item.
|
|
25381
|
+
*/
|
|
25382
|
+
description: string;
|
|
25383
|
+
/**
|
|
25384
|
+
* The amount in cents before discounts and tax for this line item.
|
|
25385
|
+
*/
|
|
25386
|
+
subtotal: number;
|
|
25387
|
+
/**
|
|
25388
|
+
* The final amount in cents after discounts and tax for this line item.
|
|
25389
|
+
*/
|
|
25390
|
+
total: number;
|
|
25391
|
+
/**
|
|
25392
|
+
* List of discounts applied to this line item.
|
|
25393
|
+
*/
|
|
25394
|
+
discounts?: Array<PreviewMultiUpdateNextCycleDiscount> | undefined;
|
|
25395
|
+
/**
|
|
25396
|
+
* The ID of the plan that this line item belongs to.
|
|
25397
|
+
*/
|
|
25398
|
+
planId: string;
|
|
25399
|
+
/**
|
|
25400
|
+
* The ID of the feature that this line item belongs to.
|
|
25401
|
+
*/
|
|
25402
|
+
featureId: string | null;
|
|
25403
|
+
/**
|
|
25404
|
+
* The period of time that this line item is being charged for.
|
|
25405
|
+
*/
|
|
25406
|
+
period?: PreviewMultiUpdateNextCycleLineItemPeriod | undefined;
|
|
25407
|
+
/**
|
|
25408
|
+
* The quantity of the line item.
|
|
25409
|
+
*/
|
|
25410
|
+
quantity: number;
|
|
25411
|
+
};
|
|
25412
|
+
/**
|
|
25413
|
+
* The period of time that this line item is being charged for.
|
|
25414
|
+
*/
|
|
25415
|
+
type PreviewMultiUpdateUsageLineItemPeriod = {
|
|
25416
|
+
/**
|
|
25417
|
+
* The start of the period in milliseconds since the Unix epoch.
|
|
25418
|
+
*/
|
|
25419
|
+
start: number;
|
|
25420
|
+
/**
|
|
25421
|
+
* The end of the period in milliseconds since the Unix epoch.
|
|
25422
|
+
*/
|
|
25423
|
+
end: number;
|
|
25424
|
+
};
|
|
25425
|
+
type PreviewMultiUpdateUsageLineItem = {
|
|
25426
|
+
/**
|
|
25427
|
+
* The name of the line item to display to the customer if you're building a UI. It will either be the plan name or the feature name.
|
|
25428
|
+
*/
|
|
25429
|
+
displayName: string;
|
|
25430
|
+
/**
|
|
25431
|
+
* The ID of the plan that this line item belongs to.
|
|
25432
|
+
*/
|
|
25433
|
+
planId: string;
|
|
25434
|
+
/**
|
|
25435
|
+
* The ID of the feature that this line item belongs to.
|
|
25436
|
+
*/
|
|
25437
|
+
featureId: string | null;
|
|
25438
|
+
/**
|
|
25439
|
+
* The period of time that this line item is being charged for.
|
|
25440
|
+
*/
|
|
25441
|
+
period?: PreviewMultiUpdateUsageLineItemPeriod | undefined;
|
|
25442
|
+
};
|
|
25443
|
+
/**
|
|
25444
|
+
* Preview of the next billing cycle, if applicable. This shows what the customer will be charged in subsequent cycles.
|
|
25445
|
+
*/
|
|
25446
|
+
type PreviewMultiUpdateNextCycle = {
|
|
25447
|
+
/**
|
|
25448
|
+
* Unix timestamp (milliseconds) when the next billing cycle starts.
|
|
25449
|
+
*/
|
|
25450
|
+
startsAt: number;
|
|
25451
|
+
/**
|
|
25452
|
+
* The total amount in cents before discounts and tax for the next cycle.
|
|
25453
|
+
*/
|
|
25454
|
+
subtotal: number;
|
|
25455
|
+
/**
|
|
25456
|
+
* The final amount in cents after discounts and tax for the next cycle.
|
|
25457
|
+
*/
|
|
25458
|
+
total: number;
|
|
25459
|
+
/**
|
|
25460
|
+
* List of line items for the next billing cycle.
|
|
25461
|
+
*/
|
|
25462
|
+
lineItems: Array<PreviewMultiUpdateNextCycleLineItem>;
|
|
25463
|
+
/**
|
|
25464
|
+
* List of line items for usage-based features in the next cycle.
|
|
25465
|
+
*/
|
|
25466
|
+
usageLineItems: Array<PreviewMultiUpdateUsageLineItem>;
|
|
25467
|
+
};
|
|
25468
|
+
type PreviewMultiUpdateIncomingFeatureQuantity = {
|
|
25469
|
+
/**
|
|
25470
|
+
* The ID of the adjustable feature included in this change.
|
|
25471
|
+
*/
|
|
25472
|
+
featureId: string;
|
|
25473
|
+
/**
|
|
25474
|
+
* The quantity that will apply for this feature in the change.
|
|
25475
|
+
*/
|
|
25476
|
+
quantity: number;
|
|
25477
|
+
};
|
|
25478
|
+
type PreviewMultiUpdateIncoming = {
|
|
25479
|
+
/**
|
|
25480
|
+
* The ID of the plan affected by this preview change.
|
|
25481
|
+
*/
|
|
25482
|
+
planId: string;
|
|
25483
|
+
plan?: Plan | undefined;
|
|
25484
|
+
/**
|
|
25485
|
+
* The feature quantity selections associated with this plan change.
|
|
25486
|
+
*/
|
|
25487
|
+
featureQuantities: Array<PreviewMultiUpdateIncomingFeatureQuantity>;
|
|
25488
|
+
/**
|
|
25489
|
+
* When this change takes effect, in milliseconds since the Unix epoch, or null if it applies immediately.
|
|
25490
|
+
*/
|
|
25491
|
+
effectiveAt: number | null;
|
|
25492
|
+
/**
|
|
25493
|
+
* When this plan was canceled, in milliseconds since the Unix epoch, or null if it is not canceled.
|
|
25494
|
+
*/
|
|
25495
|
+
canceledAt: number | null;
|
|
25496
|
+
/**
|
|
25497
|
+
* When this plan expires, in milliseconds since the Unix epoch, or null if it does not expire.
|
|
25498
|
+
*/
|
|
25499
|
+
expiresAt: number | null;
|
|
25500
|
+
};
|
|
25501
|
+
type PreviewMultiUpdateOutgoingFeatureQuantity = {
|
|
25502
|
+
/**
|
|
25503
|
+
* The ID of the adjustable feature included in this change.
|
|
25504
|
+
*/
|
|
25505
|
+
featureId: string;
|
|
25506
|
+
/**
|
|
25507
|
+
* The quantity that will apply for this feature in the change.
|
|
25508
|
+
*/
|
|
25509
|
+
quantity: number;
|
|
25510
|
+
};
|
|
25511
|
+
type PreviewMultiUpdateOutgoing = {
|
|
25512
|
+
/**
|
|
25513
|
+
* The ID of the plan affected by this preview change.
|
|
25514
|
+
*/
|
|
25515
|
+
planId: string;
|
|
25516
|
+
plan?: Plan | undefined;
|
|
25517
|
+
/**
|
|
25518
|
+
* The feature quantity selections associated with this plan change.
|
|
25519
|
+
*/
|
|
25520
|
+
featureQuantities: Array<PreviewMultiUpdateOutgoingFeatureQuantity>;
|
|
25521
|
+
/**
|
|
25522
|
+
* When this change takes effect, in milliseconds since the Unix epoch, or null if it applies immediately.
|
|
25523
|
+
*/
|
|
25524
|
+
effectiveAt: number | null;
|
|
25525
|
+
/**
|
|
25526
|
+
* When this plan was canceled, in milliseconds since the Unix epoch, or null if it is not canceled.
|
|
25527
|
+
*/
|
|
25528
|
+
canceledAt: number | null;
|
|
25529
|
+
/**
|
|
25530
|
+
* When this plan expires, in milliseconds since the Unix epoch, or null if it does not expire.
|
|
25531
|
+
*/
|
|
25532
|
+
expiresAt: number | null;
|
|
25533
|
+
};
|
|
25534
|
+
type PreviewMultiUpdateSubscription = {
|
|
25535
|
+
/**
|
|
25536
|
+
* The ID of the customer.
|
|
25537
|
+
*/
|
|
25538
|
+
customerId: string;
|
|
25539
|
+
/**
|
|
25540
|
+
* List of line items for the current billing period.
|
|
25541
|
+
*/
|
|
25542
|
+
lineItems: Array<PreviewMultiUpdateLineItem>;
|
|
25543
|
+
/**
|
|
25544
|
+
* The total amount in cents before discounts and tax for the current billing period.
|
|
25545
|
+
*/
|
|
25546
|
+
subtotal: number;
|
|
25547
|
+
/**
|
|
25548
|
+
* The final amount in cents after discounts and tax for the current billing period.
|
|
25549
|
+
*/
|
|
25550
|
+
total: number;
|
|
25551
|
+
/**
|
|
25552
|
+
* The three-letter ISO currency code (e.g., 'usd').
|
|
25553
|
+
*/
|
|
25554
|
+
currency: string;
|
|
25555
|
+
/**
|
|
25556
|
+
* Preview of the next billing cycle, if applicable. This shows what the customer will be charged in subsequent cycles.
|
|
25557
|
+
*/
|
|
25558
|
+
nextCycle?: PreviewMultiUpdateNextCycle | undefined;
|
|
25559
|
+
/**
|
|
25560
|
+
* Expand the response with additional data.
|
|
25561
|
+
*/
|
|
25562
|
+
expand?: Array<string> | undefined;
|
|
25563
|
+
/**
|
|
25564
|
+
* Products or subscription changes being added or updated.
|
|
25565
|
+
*/
|
|
25566
|
+
incoming: Array<PreviewMultiUpdateIncoming>;
|
|
25567
|
+
/**
|
|
25568
|
+
* Products or subscription changes being removed or ended.
|
|
25569
|
+
*/
|
|
25570
|
+
outgoing: Array<PreviewMultiUpdateOutgoing>;
|
|
25571
|
+
/**
|
|
25572
|
+
* The IDs of the plans updated on this subscription.
|
|
25573
|
+
*/
|
|
25574
|
+
planIds: Array<string>;
|
|
25575
|
+
};
|
|
25576
|
+
/**
|
|
25577
|
+
* OK
|
|
25578
|
+
*/
|
|
25579
|
+
type MultiUpdatePreviewResponse = {
|
|
25580
|
+
/**
|
|
25581
|
+
* The ID of the customer the preview applies to.
|
|
25582
|
+
*/
|
|
25583
|
+
customerId: string;
|
|
25584
|
+
/**
|
|
25585
|
+
* The three-letter ISO currency code (e.g., 'usd').
|
|
25586
|
+
*/
|
|
25587
|
+
currency: string;
|
|
25588
|
+
/**
|
|
25589
|
+
* The combined amount due today across all subscriptions (sum of subscriptions[].total).
|
|
25590
|
+
*/
|
|
25591
|
+
total: number;
|
|
25592
|
+
/**
|
|
25593
|
+
* One preview per affected Stripe subscription. Updates to plans without a subscription (free plans) produce no entry.
|
|
25594
|
+
*/
|
|
25595
|
+
subscriptions: Array<PreviewMultiUpdateSubscription>;
|
|
25596
|
+
};
|
|
25597
|
+
/** @internal */
|
|
25598
|
+
declare const PreviewMultiUpdateCancelAction$outboundSchema: z$1.ZodMiniEnum<typeof PreviewMultiUpdateCancelAction>;
|
|
25599
|
+
/** @internal */
|
|
25600
|
+
declare const PreviewMultiUpdateProrationBehavior$outboundSchema: z$1.ZodMiniEnum<typeof PreviewMultiUpdateProrationBehavior>;
|
|
25601
|
+
/** @internal */
|
|
25602
|
+
type PreviewMultiUpdateUpdate$Outbound = {
|
|
25603
|
+
plan_id?: string | undefined;
|
|
25604
|
+
subscription_id?: string | undefined;
|
|
25605
|
+
entity_id?: string | undefined;
|
|
25606
|
+
cancel_action: string;
|
|
25607
|
+
proration_behavior?: string | undefined;
|
|
25608
|
+
};
|
|
25609
|
+
/** @internal */
|
|
25610
|
+
declare const PreviewMultiUpdateUpdate$outboundSchema: z$1.ZodMiniType<PreviewMultiUpdateUpdate$Outbound, PreviewMultiUpdateUpdate>;
|
|
25611
|
+
declare function previewMultiUpdateUpdateToJSON(previewMultiUpdateUpdate: PreviewMultiUpdateUpdate): string;
|
|
25612
|
+
/** @internal */
|
|
25613
|
+
type PreviewMultiUpdateParams$Outbound = {
|
|
25614
|
+
customer_id: string;
|
|
25615
|
+
entity_id?: string | undefined;
|
|
25616
|
+
updates: Array<PreviewMultiUpdateUpdate$Outbound>;
|
|
25617
|
+
};
|
|
25618
|
+
/** @internal */
|
|
25619
|
+
declare const PreviewMultiUpdateParams$outboundSchema: z$1.ZodMiniType<PreviewMultiUpdateParams$Outbound, PreviewMultiUpdateParams>;
|
|
25620
|
+
declare function previewMultiUpdateParamsToJSON(previewMultiUpdateParams: PreviewMultiUpdateParams): string;
|
|
25621
|
+
/** @internal */
|
|
25622
|
+
declare const PreviewMultiUpdateDiscount$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateDiscount, unknown>;
|
|
25623
|
+
declare function previewMultiUpdateDiscountFromJSON(jsonString: string): Result$1<PreviewMultiUpdateDiscount, SDKValidationError>;
|
|
25624
|
+
/** @internal */
|
|
25625
|
+
declare const PreviewMultiUpdateLineItemPeriod$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateLineItemPeriod, unknown>;
|
|
25626
|
+
declare function previewMultiUpdateLineItemPeriodFromJSON(jsonString: string): Result$1<PreviewMultiUpdateLineItemPeriod, SDKValidationError>;
|
|
25627
|
+
/** @internal */
|
|
25628
|
+
declare const PreviewMultiUpdateLineItem$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateLineItem, unknown>;
|
|
25629
|
+
declare function previewMultiUpdateLineItemFromJSON(jsonString: string): Result$1<PreviewMultiUpdateLineItem, SDKValidationError>;
|
|
25630
|
+
/** @internal */
|
|
25631
|
+
declare const PreviewMultiUpdateNextCycleDiscount$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateNextCycleDiscount, unknown>;
|
|
25632
|
+
declare function previewMultiUpdateNextCycleDiscountFromJSON(jsonString: string): Result$1<PreviewMultiUpdateNextCycleDiscount, SDKValidationError>;
|
|
25633
|
+
/** @internal */
|
|
25634
|
+
declare const PreviewMultiUpdateNextCycleLineItemPeriod$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateNextCycleLineItemPeriod, unknown>;
|
|
25635
|
+
declare function previewMultiUpdateNextCycleLineItemPeriodFromJSON(jsonString: string): Result$1<PreviewMultiUpdateNextCycleLineItemPeriod, SDKValidationError>;
|
|
25636
|
+
/** @internal */
|
|
25637
|
+
declare const PreviewMultiUpdateNextCycleLineItem$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateNextCycleLineItem, unknown>;
|
|
25638
|
+
declare function previewMultiUpdateNextCycleLineItemFromJSON(jsonString: string): Result$1<PreviewMultiUpdateNextCycleLineItem, SDKValidationError>;
|
|
25639
|
+
/** @internal */
|
|
25640
|
+
declare const PreviewMultiUpdateUsageLineItemPeriod$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateUsageLineItemPeriod, unknown>;
|
|
25641
|
+
declare function previewMultiUpdateUsageLineItemPeriodFromJSON(jsonString: string): Result$1<PreviewMultiUpdateUsageLineItemPeriod, SDKValidationError>;
|
|
25642
|
+
/** @internal */
|
|
25643
|
+
declare const PreviewMultiUpdateUsageLineItem$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateUsageLineItem, unknown>;
|
|
25644
|
+
declare function previewMultiUpdateUsageLineItemFromJSON(jsonString: string): Result$1<PreviewMultiUpdateUsageLineItem, SDKValidationError>;
|
|
25645
|
+
/** @internal */
|
|
25646
|
+
declare const PreviewMultiUpdateNextCycle$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateNextCycle, unknown>;
|
|
25647
|
+
declare function previewMultiUpdateNextCycleFromJSON(jsonString: string): Result$1<PreviewMultiUpdateNextCycle, SDKValidationError>;
|
|
25648
|
+
/** @internal */
|
|
25649
|
+
declare const PreviewMultiUpdateIncomingFeatureQuantity$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateIncomingFeatureQuantity, unknown>;
|
|
25650
|
+
declare function previewMultiUpdateIncomingFeatureQuantityFromJSON(jsonString: string): Result$1<PreviewMultiUpdateIncomingFeatureQuantity, SDKValidationError>;
|
|
25651
|
+
/** @internal */
|
|
25652
|
+
declare const PreviewMultiUpdateIncoming$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateIncoming, unknown>;
|
|
25653
|
+
declare function previewMultiUpdateIncomingFromJSON(jsonString: string): Result$1<PreviewMultiUpdateIncoming, SDKValidationError>;
|
|
25654
|
+
/** @internal */
|
|
25655
|
+
declare const PreviewMultiUpdateOutgoingFeatureQuantity$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateOutgoingFeatureQuantity, unknown>;
|
|
25656
|
+
declare function previewMultiUpdateOutgoingFeatureQuantityFromJSON(jsonString: string): Result$1<PreviewMultiUpdateOutgoingFeatureQuantity, SDKValidationError>;
|
|
25657
|
+
/** @internal */
|
|
25658
|
+
declare const PreviewMultiUpdateOutgoing$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateOutgoing, unknown>;
|
|
25659
|
+
declare function previewMultiUpdateOutgoingFromJSON(jsonString: string): Result$1<PreviewMultiUpdateOutgoing, SDKValidationError>;
|
|
25660
|
+
/** @internal */
|
|
25661
|
+
declare const PreviewMultiUpdateSubscription$inboundSchema: z$1.ZodMiniType<PreviewMultiUpdateSubscription, unknown>;
|
|
25662
|
+
declare function previewMultiUpdateSubscriptionFromJSON(jsonString: string): Result$1<PreviewMultiUpdateSubscription, SDKValidationError>;
|
|
25663
|
+
/** @internal */
|
|
25664
|
+
declare const MultiUpdatePreviewResponse$inboundSchema: z$1.ZodMiniType<MultiUpdatePreviewResponse, unknown>;
|
|
25665
|
+
declare function multiUpdatePreviewResponseFromJSON(jsonString: string): Result$1<MultiUpdatePreviewResponse, SDKValidationError>;
|
|
25666
|
+
|
|
25062
25667
|
type PreviewUpdateGlobals = {
|
|
25063
25668
|
xApiVersion?: string | undefined;
|
|
25064
25669
|
};
|
|
@@ -34674,7 +35279,7 @@ declare class Billing extends ClientSDK {
|
|
|
34674
35279
|
* @example
|
|
34675
35280
|
* ```typescript
|
|
34676
35281
|
* // Schedule a transition from a trial plan to a paid plan
|
|
34677
|
-
* const response = await client.billing.createSchedule({ customerId: "cus_123", phases: [{"startsAt":
|
|
35282
|
+
* const response = await client.billing.createSchedule({ customerId: "cus_123", phases: [{"startsAt":1783590814052,"plans":[{"planId":"trial_plan"}]},{"startsAt":1784800414052,"plans":[{"planId":"pro_plan"}]}] });
|
|
34678
35283
|
* ```
|
|
34679
35284
|
*
|
|
34680
35285
|
* @param customerId - The ID of the customer to create the schedule for.
|
|
@@ -34874,6 +35479,48 @@ declare class Billing extends ClientSDK {
|
|
|
34874
35479
|
* @returns A preview response with line items showing prorated charges or credits for the proposed changes.
|
|
34875
35480
|
*/
|
|
34876
35481
|
previewUpdate(request: PreviewUpdateParams, options?: RequestOptions): Promise<PreviewUpdateResponse>;
|
|
35482
|
+
/**
|
|
35483
|
+
* Updates multiple plans on a customer in a single request. Currently supports cancel actions (immediately, end of cycle, or uncancel) across one or more subscriptions.
|
|
35484
|
+
*
|
|
35485
|
+
* Use this endpoint to cancel or uncancel several plans atomically in one call — for example canceling a main plan together with its add-ons, or plans across multiple entities.
|
|
35486
|
+
*
|
|
35487
|
+
* @example
|
|
35488
|
+
* ```typescript
|
|
35489
|
+
* // Cancel a plan and an add-on at end of cycle
|
|
35490
|
+
* const response = await client.billing.multiUpdate({ customerId: "cus_123", updates: [{"planId":"pro_plan","cancelAction":"cancel_end_of_cycle"},{"planId":"addon_seats","cancelAction":"cancel_end_of_cycle"}] });
|
|
35491
|
+
* ```
|
|
35492
|
+
*
|
|
35493
|
+
* @example
|
|
35494
|
+
* ```typescript
|
|
35495
|
+
* // Uncancel one plan and cancel another immediately
|
|
35496
|
+
* const response = await client.billing.multiUpdate({ customerId: "cus_123", updates: [{"planId":"pro_plan","cancelAction":"uncancel"},{"planId":"addon_seats","cancelAction":"cancel_immediately"}] });
|
|
35497
|
+
* ```
|
|
35498
|
+
*
|
|
35499
|
+
* @param customerId - The ID of the customer to update plans for.
|
|
35500
|
+
* @param entityId - The ID of the entity to update plans for. Individual updates can override this with their own entity_id. (optional)
|
|
35501
|
+
* @param updates - The list of plan updates to apply to the customer.
|
|
35502
|
+
*
|
|
35503
|
+
* @returns A billing response with the resulting invoice summary (one credit invoice per affected subscription for immediate cancels).
|
|
35504
|
+
*/
|
|
35505
|
+
multiUpdate(request: MultiUpdateParams, options?: RequestOptions): Promise<MultiUpdateResponse>;
|
|
35506
|
+
/**
|
|
35507
|
+
* Previews the billing changes of a multi-plan update without making any changes. Returns one core preview per affected subscription.
|
|
35508
|
+
*
|
|
35509
|
+
* Use this endpoint to show customers the credits and next-cycle changes of canceling multiple plans before confirming.
|
|
35510
|
+
*
|
|
35511
|
+
* @example
|
|
35512
|
+
* ```typescript
|
|
35513
|
+
* // Preview canceling two plans immediately
|
|
35514
|
+
* const response = await client.billing.previewMultiUpdate({ customerId: "cus_123", updates: [{"planId":"pro_plan","cancelAction":"cancel_immediately"},{"planId":"addon_seats","cancelAction":"cancel_immediately"}] });
|
|
35515
|
+
* ```
|
|
35516
|
+
*
|
|
35517
|
+
* @param customerId - The ID of the customer to update plans for.
|
|
35518
|
+
* @param entityId - The ID of the entity to update plans for. Individual updates can override this with their own entity_id. (optional)
|
|
35519
|
+
* @param updates - The list of plan updates to apply to the customer.
|
|
35520
|
+
*
|
|
35521
|
+
* @returns A preview with the combined total plus one entry per subscription, each with its own line items, totals, and next-cycle preview.
|
|
35522
|
+
*/
|
|
35523
|
+
previewMultiUpdate(request: PreviewMultiUpdateParams, options?: RequestOptions): Promise<MultiUpdatePreviewResponse>;
|
|
34877
35524
|
/**
|
|
34878
35525
|
* Create a billing portal session for a customer to manage their subscription.
|
|
34879
35526
|
*/
|
|
@@ -35667,4 +36314,4 @@ declare namespace index {
|
|
|
35667
36314
|
export { type index_ClosedEnum as ClosedEnum, type index_OpenEnum as OpenEnum, type index_PageIterator as PageIterator, type index_Paginator as Paginator, index_RFCDate as RFCDate, type Result$1 as Result, type index_Unrecognized as Unrecognized, index_bigint as bigint, index_blobLikeSchema as blobLikeSchema, index_boolean as boolean, index_createPageIterator as createPageIterator, index_date as date, index_defaultToZeroValue as defaultToZeroValue, index_isBlobLike as isBlobLike, index_literal as literal, index_literalBigInt as literalBigInt, index_nullable as nullable, index_number as number, index_optional as optional, index_startCountingDefaultToZeroValue as startCountingDefaultToZeroValue, index_startCountingUnrecognized as startCountingUnrecognized, index_string as string, index_unrecognized as unrecognized };
|
|
35668
36315
|
}
|
|
35669
36316
|
|
|
35670
|
-
export { type AggregateEventsCustomRange, type AggregateEventsCustomRange$Outbound, AggregateEventsCustomRange$outboundSchema, type AggregateEventsFeatureId, type AggregateEventsFeatureId$Outbound, AggregateEventsFeatureId$outboundSchema, type AggregateEventsGlobals, type AggregateEventsList, AggregateEventsList$inboundSchema, type AggregateEventsResponse, AggregateEventsResponse$inboundSchema, type ApiKey, ApiKey$inboundSchema, AttachAction, AttachAction$inboundSchema, AttachAddItemBillingMethod, AttachAddItemBillingMethod$outboundSchema, AttachAddItemExpiryDurationType, AttachAddItemExpiryDurationType$outboundSchema, AttachAddItemOnDecrease, AttachAddItemOnDecrease$outboundSchema, AttachAddItemOnIncrease, AttachAddItemOnIncrease$outboundSchema, type AttachAddItemPlanItem, type AttachAddItemPlanItem$Outbound, AttachAddItemPlanItem$outboundSchema, type AttachAddItemPrice, type AttachAddItemPrice$Outbound, AttachAddItemPrice$outboundSchema, AttachAddItemPriceInterval, AttachAddItemPriceInterval$outboundSchema, type AttachAddItemProration, type AttachAddItemProration$Outbound, AttachAddItemProration$outboundSchema, type AttachAddItemReset, type AttachAddItemReset$Outbound, AttachAddItemReset$outboundSchema, AttachAddItemResetInterval, AttachAddItemResetInterval$outboundSchema, type AttachAddItemRollover, type AttachAddItemRollover$Outbound, AttachAddItemRollover$outboundSchema, type AttachAddItemTier, type AttachAddItemTier$Outbound, AttachAddItemTier$outboundSchema, AttachAddItemTierBehavior, AttachAddItemTierBehavior$outboundSchema, type AttachAddItemTo, type AttachAddItemTo$Outbound, AttachAddItemTo$outboundSchema, type AttachAttachDiscount, type AttachAttachDiscount$Outbound, AttachAttachDiscount$outboundSchema, type AttachAutoTopup, type AttachAutoTopup$Outbound, AttachAutoTopup$outboundSchema, type AttachBasePrice, type AttachBasePrice$Outbound, AttachBasePrice$outboundSchema, type AttachBillingControls, type AttachBillingControls$Outbound, AttachBillingControls$outboundSchema, type AttachCarryOverBalances, type AttachCarryOverBalances$Outbound, AttachCarryOverBalances$outboundSchema, type AttachCarryOverUsages, type AttachCarryOverUsages$Outbound, AttachCarryOverUsages$outboundSchema, AttachCode, AttachCode$inboundSchema, type AttachCustomLineItem, type AttachCustomLineItem$Outbound, AttachCustomLineItem$outboundSchema, type AttachCustomize, type AttachCustomize$Outbound, AttachCustomize$outboundSchema, AttachDurationType, AttachDurationType$outboundSchema, type AttachFeatureQuantity, type AttachFeatureQuantity$Outbound, AttachFeatureQuantity$outboundSchema, type AttachFilter, type AttachFilter$Outbound, AttachFilter$outboundSchema, type AttachFreeTrialParams, type AttachFreeTrialParams$Outbound, AttachFreeTrialParams$outboundSchema, type AttachGlobals, AttachIntervalRemoveItemEnum1, AttachIntervalRemoveItemEnum1$outboundSchema, AttachIntervalRemoveItemEnum2, AttachIntervalRemoveItemEnum2$outboundSchema, type AttachIntervalUnion, type AttachIntervalUnion$Outbound, AttachIntervalUnion$outboundSchema, type AttachInvoice, AttachInvoice$inboundSchema, type AttachInvoiceMode, type AttachInvoiceMode$Outbound, AttachInvoiceMode$outboundSchema, AttachItemBillingMethod, AttachItemBillingMethod$outboundSchema, AttachItemExpiryDurationType, AttachItemExpiryDurationType$outboundSchema, AttachItemOnDecrease, AttachItemOnDecrease$outboundSchema, AttachItemOnIncrease, AttachItemOnIncrease$outboundSchema, type AttachItemPlanItem, type AttachItemPlanItem$Outbound, AttachItemPlanItem$outboundSchema, type AttachItemPrice, type AttachItemPrice$Outbound, AttachItemPrice$outboundSchema, AttachItemPriceInterval, AttachItemPriceInterval$outboundSchema, type AttachItemProration, type AttachItemProration$Outbound, AttachItemProration$outboundSchema, type AttachItemReset, type AttachItemReset$Outbound, AttachItemReset$outboundSchema, AttachItemResetInterval, AttachItemResetInterval$outboundSchema, type AttachItemRollover, type AttachItemRollover$Outbound, AttachItemRollover$outboundSchema, type AttachItemTier, type AttachItemTier$Outbound, AttachItemTier$outboundSchema, AttachItemTierBehavior, AttachItemTierBehavior$outboundSchema, type AttachItemTo, type AttachItemTo$Outbound, AttachItemTo$outboundSchema, AttachLimitType, AttachLimitType$outboundSchema, AttachOnEnd, AttachOnEnd$outboundSchema, type AttachOverageAllowed, type AttachOverageAllowed$Outbound, AttachOverageAllowed$outboundSchema, type AttachParams, type AttachParams$Outbound, AttachParams$outboundSchema, type AttachPlanItemFilter, type AttachPlanItemFilter$Outbound, AttachPlanItemFilter$outboundSchema, AttachPlanSchedule, AttachPlanSchedule$outboundSchema, AttachPriceInterval, AttachPriceInterval$outboundSchema, type AttachProperties, type AttachProperties$Outbound, AttachProperties$outboundSchema, AttachProrationBehavior, AttachProrationBehavior$outboundSchema, type AttachPurchaseLimit, type AttachPurchaseLimit$Outbound, AttachPurchaseLimit$outboundSchema, AttachPurchaseLimitInterval, AttachPurchaseLimitInterval$outboundSchema, AttachRedirectMode, AttachRedirectMode$outboundSchema, AttachRemoveItemBillingMethod, AttachRemoveItemBillingMethod$outboundSchema, type AttachRequiredAction, AttachRequiredAction$inboundSchema, type AttachResponse, AttachResponse$inboundSchema, type AttachSpendLimit, type AttachSpendLimit$Outbound, AttachSpendLimit$outboundSchema, AttachThresholdType, AttachThresholdType$outboundSchema, type AttachUsageAlert, type AttachUsageAlert$Outbound, AttachUsageAlert$outboundSchema, type AttachUsageLimit, type AttachUsageLimit$Outbound, AttachUsageLimit$outboundSchema, AttachUsageLimitInterval, AttachUsageLimitInterval$outboundSchema, Autumn, AutumnDefaultError, AutumnError, type Balance, Balance$inboundSchema, BalanceBillingMethod, BalanceBillingMethod$inboundSchema, type BalanceCreditSchema, BalanceCreditSchema$inboundSchema, type BalanceDisplay, BalanceDisplay$inboundSchema, type BalanceFeature, BalanceFeature$inboundSchema, BalanceIntervalEnum, BalanceIntervalEnum$inboundSchema, type BalanceIntervalUnion, BalanceIntervalUnion$inboundSchema, type BalanceModelMarkups, BalanceModelMarkups$inboundSchema, type BalancePrice, BalancePrice$inboundSchema, type BalanceProviderMarkups, BalanceProviderMarkups$inboundSchema, type BalanceReset, BalanceReset$inboundSchema, type BalanceRollover, BalanceRollover$inboundSchema, type BalanceTier, BalanceTier$inboundSchema, BalanceTierBehavior, BalanceTierBehavior$inboundSchema, type BalanceTo, BalanceTo$inboundSchema, BalanceType, BalanceType$inboundSchema, type BasePrice, BasePrice$inboundSchema, type BatchTrackGlobals, type BatchTrackLock, type BatchTrackLock$Outbound, BatchTrackLock$outboundSchema, type BatchTrackResponse, BatchTrackResponse$inboundSchema, type Billable, type Billable$Outbound, Billable$outboundSchema, BillableProcessor, BillableProcessor$outboundSchema, BillingCycleAnchor2, BillingCycleAnchor2$outboundSchema, BillingUpdateAddItemBillingMethod, BillingUpdateAddItemBillingMethod$outboundSchema, BillingUpdateAddItemExpiryDurationType, BillingUpdateAddItemExpiryDurationType$outboundSchema, BillingUpdateAddItemOnDecrease, BillingUpdateAddItemOnDecrease$outboundSchema, BillingUpdateAddItemOnIncrease, BillingUpdateAddItemOnIncrease$outboundSchema, type BillingUpdateAddItemPlanItem, type BillingUpdateAddItemPlanItem$Outbound, BillingUpdateAddItemPlanItem$outboundSchema, type BillingUpdateAddItemPrice, type BillingUpdateAddItemPrice$Outbound, BillingUpdateAddItemPrice$outboundSchema, BillingUpdateAddItemPriceInterval, BillingUpdateAddItemPriceInterval$outboundSchema, type BillingUpdateAddItemProration, type BillingUpdateAddItemProration$Outbound, BillingUpdateAddItemProration$outboundSchema, type BillingUpdateAddItemReset, type BillingUpdateAddItemReset$Outbound, BillingUpdateAddItemReset$outboundSchema, BillingUpdateAddItemResetInterval, BillingUpdateAddItemResetInterval$outboundSchema, type BillingUpdateAddItemRollover, type BillingUpdateAddItemRollover$Outbound, BillingUpdateAddItemRollover$outboundSchema, type BillingUpdateAddItemTier, type BillingUpdateAddItemTier$Outbound, BillingUpdateAddItemTier$outboundSchema, BillingUpdateAddItemTierBehavior, BillingUpdateAddItemTierBehavior$outboundSchema, type BillingUpdateAddItemTo, type BillingUpdateAddItemTo$Outbound, BillingUpdateAddItemTo$outboundSchema, type BillingUpdateAttachDiscount, type BillingUpdateAttachDiscount$Outbound, BillingUpdateAttachDiscount$outboundSchema, type BillingUpdateAutoTopup, type BillingUpdateAutoTopup$Outbound, BillingUpdateAutoTopup$outboundSchema, type BillingUpdateBasePrice, type BillingUpdateBasePrice$Outbound, BillingUpdateBasePrice$outboundSchema, type BillingUpdateBillingControls, type BillingUpdateBillingControls$Outbound, BillingUpdateBillingControls$outboundSchema, BillingUpdateCancelAction, BillingUpdateCancelAction$outboundSchema, type BillingUpdateCarryOverUsages, type BillingUpdateCarryOverUsages$Outbound, BillingUpdateCarryOverUsages$outboundSchema, BillingUpdateCode, BillingUpdateCode$inboundSchema, type BillingUpdateCustomize, type BillingUpdateCustomize$Outbound, BillingUpdateCustomize$outboundSchema, BillingUpdateDurationType, BillingUpdateDurationType$outboundSchema, type BillingUpdateFeatureQuantity, type BillingUpdateFeatureQuantity$Outbound, BillingUpdateFeatureQuantity$outboundSchema, type BillingUpdateFilter, type BillingUpdateFilter$Outbound, BillingUpdateFilter$outboundSchema, type BillingUpdateFreeTrialParams, type BillingUpdateFreeTrialParams$Outbound, BillingUpdateFreeTrialParams$outboundSchema, type BillingUpdateGlobals, BillingUpdateIntervalRemoveItemEnum1, BillingUpdateIntervalRemoveItemEnum1$outboundSchema, BillingUpdateIntervalRemoveItemEnum2, BillingUpdateIntervalRemoveItemEnum2$outboundSchema, type BillingUpdateIntervalUnion, type BillingUpdateIntervalUnion$Outbound, BillingUpdateIntervalUnion$outboundSchema, type BillingUpdateInvoice, BillingUpdateInvoice$inboundSchema, type BillingUpdateInvoiceMode, type BillingUpdateInvoiceMode$Outbound, BillingUpdateInvoiceMode$outboundSchema, BillingUpdateItemBillingMethod, BillingUpdateItemBillingMethod$outboundSchema, BillingUpdateItemExpiryDurationType, BillingUpdateItemExpiryDurationType$outboundSchema, BillingUpdateItemOnDecrease, BillingUpdateItemOnDecrease$outboundSchema, BillingUpdateItemOnIncrease, BillingUpdateItemOnIncrease$outboundSchema, type BillingUpdateItemPlanItem, type BillingUpdateItemPlanItem$Outbound, BillingUpdateItemPlanItem$outboundSchema, type BillingUpdateItemPrice, type BillingUpdateItemPrice$Outbound, BillingUpdateItemPrice$outboundSchema, BillingUpdateItemPriceInterval, BillingUpdateItemPriceInterval$outboundSchema, type BillingUpdateItemProration, type BillingUpdateItemProration$Outbound, BillingUpdateItemProration$outboundSchema, type BillingUpdateItemReset, type BillingUpdateItemReset$Outbound, BillingUpdateItemReset$outboundSchema, BillingUpdateItemResetInterval, BillingUpdateItemResetInterval$outboundSchema, type BillingUpdateItemRollover, type BillingUpdateItemRollover$Outbound, BillingUpdateItemRollover$outboundSchema, type BillingUpdateItemTier, type BillingUpdateItemTier$Outbound, BillingUpdateItemTier$outboundSchema, BillingUpdateItemTierBehavior, BillingUpdateItemTierBehavior$outboundSchema, type BillingUpdateItemTo, type BillingUpdateItemTo$Outbound, BillingUpdateItemTo$outboundSchema, BillingUpdateLimitType, BillingUpdateLimitType$outboundSchema, BillingUpdateOnEnd, BillingUpdateOnEnd$outboundSchema, type BillingUpdateOverageAllowed, type BillingUpdateOverageAllowed$Outbound, BillingUpdateOverageAllowed$outboundSchema, type BillingUpdatePlanItemFilter, type BillingUpdatePlanItemFilter$Outbound, BillingUpdatePlanItemFilter$outboundSchema, BillingUpdatePriceInterval, BillingUpdatePriceInterval$outboundSchema, type BillingUpdateProperties, type BillingUpdateProperties$Outbound, BillingUpdateProperties$outboundSchema, BillingUpdateProrationBehavior, BillingUpdateProrationBehavior$outboundSchema, type BillingUpdatePurchaseLimit, type BillingUpdatePurchaseLimit$Outbound, BillingUpdatePurchaseLimit$outboundSchema, BillingUpdatePurchaseLimitInterval, BillingUpdatePurchaseLimitInterval$outboundSchema, type BillingUpdateRecalculateBalances, type BillingUpdateRecalculateBalances$Outbound, BillingUpdateRecalculateBalances$outboundSchema, BillingUpdateRedirectMode, BillingUpdateRedirectMode$outboundSchema, BillingUpdateRefundLastPayment, BillingUpdateRefundLastPayment$outboundSchema, BillingUpdateRemoveItemBillingMethod, BillingUpdateRemoveItemBillingMethod$outboundSchema, type BillingUpdateRequiredAction, BillingUpdateRequiredAction$inboundSchema, type BillingUpdateResponse, BillingUpdateResponse$inboundSchema, type BillingUpdateSpendLimit, type BillingUpdateSpendLimit$Outbound, BillingUpdateSpendLimit$outboundSchema, BillingUpdateThresholdType, BillingUpdateThresholdType$outboundSchema, type BillingUpdateUsageAlert, type BillingUpdateUsageAlert$Outbound, BillingUpdateUsageAlert$outboundSchema, type BillingUpdateUsageLimit, type BillingUpdateUsageLimit$Outbound, BillingUpdateUsageLimit$outboundSchema, BillingUpdateUsageLimitInterval, BillingUpdateUsageLimitInterval$outboundSchema, BinSize, BinSize$outboundSchema, type Breakdown, Breakdown$inboundSchema, type CheckAutoTopup1, CheckAutoTopup1$inboundSchema, type CheckAutoTopup2, CheckAutoTopup2$inboundSchema, type CheckBillingControls1, CheckBillingControls1$inboundSchema, type CheckBillingControls2, CheckBillingControls2$inboundSchema, type CheckConfig1, CheckConfig1$inboundSchema, type CheckConfig2, CheckConfig2$inboundSchema, type CheckCreditSchema1, CheckCreditSchema1$inboundSchema, type CheckCreditSchema2, CheckCreditSchema2$inboundSchema, CheckEnv1, CheckEnv1$inboundSchema, CheckEnv2, CheckEnv2$inboundSchema, type CheckFeature1, CheckFeature1$inboundSchema, type CheckFeature2, CheckFeature2$inboundSchema, type CheckFilter1, CheckFilter1$inboundSchema, type CheckFilter2, CheckFilter2$inboundSchema, type CheckFreeTrial1, CheckFreeTrial1$inboundSchema, type CheckFreeTrial2, CheckFreeTrial2$inboundSchema, type CheckGlobals, type CheckItem1, CheckItem1$inboundSchema, type CheckItem2, CheckItem2$inboundSchema, CheckItemInterval1, CheckItemInterval1$inboundSchema, CheckItemInterval2, CheckItemInterval2$inboundSchema, CheckLimitType1, CheckLimitType1$inboundSchema, CheckLimitType2, CheckLimitType2$inboundSchema, type CheckLock, type CheckLock$Outbound, CheckLock$outboundSchema, type CheckModelMarkups1, CheckModelMarkups1$inboundSchema, type CheckModelMarkups2, CheckModelMarkups2$inboundSchema, CheckOnDecrease1, CheckOnDecrease1$inboundSchema, CheckOnDecrease2, CheckOnDecrease2$inboundSchema, CheckOnEnd1, CheckOnEnd1$inboundSchema, CheckOnEnd2, CheckOnEnd2$inboundSchema, CheckOnIncrease1, CheckOnIncrease1$inboundSchema, CheckOnIncrease2, CheckOnIncrease2$inboundSchema, type CheckOverageAllowed1, CheckOverageAllowed1$inboundSchema, type CheckOverageAllowed2, CheckOverageAllowed2$inboundSchema, type CheckParams, type CheckParams$Outbound, CheckParams$outboundSchema, type CheckProduct1, CheckProduct1$inboundSchema, type CheckProduct2, CheckProduct2$inboundSchema, type CheckProperties1, CheckProperties1$inboundSchema, type CheckProperties2, CheckProperties2$inboundSchema, type CheckProviderMarkups1, CheckProviderMarkups1$inboundSchema, type CheckProviderMarkups2, CheckProviderMarkups2$inboundSchema, type CheckPurchaseLimit1, CheckPurchaseLimit1$inboundSchema, type CheckPurchaseLimit2, CheckPurchaseLimit2$inboundSchema, CheckPurchaseLimitInterval1, CheckPurchaseLimitInterval1$inboundSchema, CheckPurchaseLimitInterval2, CheckPurchaseLimitInterval2$inboundSchema, type CheckResponse, CheckResponse$inboundSchema, type CheckResponseBody1, CheckResponseBody1$inboundSchema, type CheckResponseBody2, CheckResponseBody2$inboundSchema, type CheckRollover1, CheckRollover1$inboundSchema, type CheckRollover2, CheckRollover2$inboundSchema, type CheckSpendLimit1, CheckSpendLimit1$inboundSchema, type CheckSpendLimit2, CheckSpendLimit2$inboundSchema, CheckThresholdType1, CheckThresholdType1$inboundSchema, CheckThresholdType2, CheckThresholdType2$inboundSchema, CheckTierBehavior1, CheckTierBehavior1$inboundSchema, CheckTierBehavior2, CheckTierBehavior2$inboundSchema, type CheckUsageAlert1, CheckUsageAlert1$inboundSchema, type CheckUsageAlert2, CheckUsageAlert2$inboundSchema, type CheckUsageLimit1, CheckUsageLimit1$inboundSchema, type CheckUsageLimit2, CheckUsageLimit2$inboundSchema, CheckUsageLimitInterval1, CheckUsageLimitInterval1$inboundSchema, CheckUsageLimitInterval2, CheckUsageLimitInterval2$inboundSchema, ConfigDuration1, ConfigDuration1$inboundSchema, ConfigDuration2, ConfigDuration2$inboundSchema, ConnectionError, type Coupon, Coupon$inboundSchema, type CouponPromoCode, CouponPromoCode$inboundSchema, CouponType, CouponType$inboundSchema, CreateBalanceDuration, CreateBalanceDuration$outboundSchema, type CreateBalanceGlobals, CreateBalanceInterval, CreateBalanceInterval$outboundSchema, type CreateBalanceParams, type CreateBalanceParams$Outbound, CreateBalanceParams$outboundSchema, type CreateBalanceReset, type CreateBalanceReset$Outbound, CreateBalanceReset$outboundSchema, type CreateBalanceResponse, CreateBalanceResponse$inboundSchema, type CreateBalanceRollover, type CreateBalanceRollover$Outbound, CreateBalanceRollover$outboundSchema, type CreateEntityBillingControlsRequest, type CreateEntityBillingControlsRequest$Outbound, CreateEntityBillingControlsRequest$outboundSchema, type CreateEntityBillingControlsResponse, CreateEntityBillingControlsResponse$inboundSchema, type CreateEntityCreditSchema, CreateEntityCreditSchema$inboundSchema, type CreateEntityDisplay, CreateEntityDisplay$inboundSchema, CreateEntityEnv, CreateEntityEnv$inboundSchema, type CreateEntityFeature, CreateEntityFeature$inboundSchema, type CreateEntityFilterRequest, type CreateEntityFilterRequest$Outbound, CreateEntityFilterRequest$outboundSchema, type CreateEntityFilterResponse, CreateEntityFilterResponse$inboundSchema, type CreateEntityFlags, CreateEntityFlags$inboundSchema, type CreateEntityGlobals, CreateEntityIntervalRequestBody, CreateEntityIntervalRequestBody$outboundSchema, CreateEntityIntervalResponse, CreateEntityIntervalResponse$inboundSchema, type CreateEntityInvoice, CreateEntityInvoice$inboundSchema, CreateEntityLimitTypeRequestBody, CreateEntityLimitTypeRequestBody$outboundSchema, CreateEntityLimitTypeResponse, CreateEntityLimitTypeResponse$inboundSchema, type CreateEntityModelMarkups, CreateEntityModelMarkups$inboundSchema, type CreateEntityOverageAllowedRequest, type CreateEntityOverageAllowedRequest$Outbound, CreateEntityOverageAllowedRequest$outboundSchema, type CreateEntityOverageAllowedResponse, CreateEntityOverageAllowedResponse$inboundSchema, type CreateEntityParams, type CreateEntityParams$Outbound, CreateEntityParams$outboundSchema, CreateEntityProcessorType, CreateEntityProcessorType$inboundSchema, type CreateEntityProperties, type CreateEntityProperties$Outbound, CreateEntityProperties$outboundSchema, type CreateEntityProviderMarkups, CreateEntityProviderMarkups$inboundSchema, type CreateEntityPurchase, CreateEntityPurchase$inboundSchema, CreateEntityPurchaseScope, CreateEntityPurchaseScope$inboundSchema, type CreateEntityResponse, CreateEntityResponse$inboundSchema, type CreateEntitySpendLimitRequest, type CreateEntitySpendLimitRequest$Outbound, CreateEntitySpendLimitRequest$outboundSchema, type CreateEntitySpendLimitResponse, CreateEntitySpendLimitResponse$inboundSchema, CreateEntityStatus, CreateEntityStatus$inboundSchema, type CreateEntitySubscription, CreateEntitySubscription$inboundSchema, CreateEntitySubscriptionScope, CreateEntitySubscriptionScope$inboundSchema, CreateEntityThresholdTypeRequestBody, CreateEntityThresholdTypeRequestBody$outboundSchema, CreateEntityThresholdTypeResponse, CreateEntityThresholdTypeResponse$inboundSchema, CreateEntityType, CreateEntityType$inboundSchema, type CreateEntityUsageAlertRequestBody, type CreateEntityUsageAlertRequestBody$Outbound, CreateEntityUsageAlertRequestBody$outboundSchema, type CreateEntityUsageAlertResponse, CreateEntityUsageAlertResponse$inboundSchema, type CreateEntityUsageLimitRequest, type CreateEntityUsageLimitRequest$Outbound, CreateEntityUsageLimitRequest$outboundSchema, type CreateEntityUsageLimitResponse, CreateEntityUsageLimitResponse$inboundSchema, type CreateFeatureCreditSchemaRequestBody, type CreateFeatureCreditSchemaRequestBody$Outbound, CreateFeatureCreditSchemaRequestBody$outboundSchema, type CreateFeatureCreditSchemaResponse, CreateFeatureCreditSchemaResponse$inboundSchema, type CreateFeatureDisplayRequestBody, type CreateFeatureDisplayRequestBody$Outbound, CreateFeatureDisplayRequestBody$outboundSchema, type CreateFeatureDisplayResponse, CreateFeatureDisplayResponse$inboundSchema, type CreateFeatureGlobals, type CreateFeatureModelMarkupsRequest, type CreateFeatureModelMarkupsRequest$Outbound, CreateFeatureModelMarkupsRequest$outboundSchema, type CreateFeatureModelMarkupsResponse, CreateFeatureModelMarkupsResponse$inboundSchema, type CreateFeatureParams, type CreateFeatureParams$Outbound, CreateFeatureParams$outboundSchema, type CreateFeatureProviderMarkupsRequest, type CreateFeatureProviderMarkupsRequest$Outbound, CreateFeatureProviderMarkupsRequest$outboundSchema, type CreateFeatureProviderMarkupsResponse, CreateFeatureProviderMarkupsResponse$inboundSchema, type CreateFeatureResponse, CreateFeatureResponse$inboundSchema, CreateFeatureTypeRequestBody, CreateFeatureTypeRequestBody$outboundSchema, CreateFeatureTypeResponse, CreateFeatureTypeResponse$inboundSchema, CreatePlanAddItemBillingMethod, CreatePlanAddItemBillingMethod$inboundSchema, CreatePlanAddItemPriceInterval, CreatePlanAddItemPriceInterval$inboundSchema, CreatePlanAddItemResetInterval, CreatePlanAddItemResetInterval$inboundSchema, CreatePlanAttachAction, CreatePlanAttachAction$inboundSchema, type CreatePlanAutoTopupRequest, type CreatePlanAutoTopupRequest$Outbound, CreatePlanAutoTopupRequest$outboundSchema, type CreatePlanAutoTopupResponse, CreatePlanAutoTopupResponse$inboundSchema, type CreatePlanBasePrice, CreatePlanBasePrice$inboundSchema, type CreatePlanBillingControlsRequest, type CreatePlanBillingControlsRequest$Outbound, CreatePlanBillingControlsRequest$outboundSchema, type CreatePlanBillingControlsResponse, CreatePlanBillingControlsResponse$inboundSchema, CreatePlanBillingMethodRequestBody, CreatePlanBillingMethodRequestBody$outboundSchema, type CreatePlanConfigRequest, type CreatePlanConfigRequest$Outbound, CreatePlanConfigRequest$outboundSchema, type CreatePlanConfigResponse, CreatePlanConfigResponse$inboundSchema, type CreatePlanCreditSchema, CreatePlanCreditSchema$inboundSchema, type CreatePlanCustomerEligibility, CreatePlanCustomerEligibility$inboundSchema, type CreatePlanCustomize, CreatePlanCustomize$inboundSchema, CreatePlanDurationTypeRequest, CreatePlanDurationTypeRequest$outboundSchema, CreatePlanDurationTypeResponse, CreatePlanDurationTypeResponse$inboundSchema, CreatePlanEnv, CreatePlanEnv$inboundSchema, CreatePlanExpiryDurationTypeRequestBody, CreatePlanExpiryDurationTypeRequestBody$outboundSchema, type CreatePlanFeature, CreatePlanFeature$inboundSchema, type CreatePlanFeatureDisplay, CreatePlanFeatureDisplay$inboundSchema, type CreatePlanFilterRequest, type CreatePlanFilterRequest$Outbound, CreatePlanFilterRequest$outboundSchema, type CreatePlanFilterResponse, CreatePlanFilterResponse$inboundSchema, type CreatePlanFreeTrialParams, CreatePlanFreeTrialParams$inboundSchema, type CreatePlanFreeTrialResponse, CreatePlanFreeTrialResponse$inboundSchema, type CreatePlanGlobals, CreatePlanIntervalRemoveItemEnum1, CreatePlanIntervalRemoveItemEnum1$inboundSchema, CreatePlanIntervalRemoveItemEnum2, CreatePlanIntervalRemoveItemEnum2$inboundSchema, type CreatePlanIntervalUnion, CreatePlanIntervalUnion$inboundSchema, type CreatePlanItem, CreatePlanItem$inboundSchema, CreatePlanItemBillingMethodResponse, CreatePlanItemBillingMethodResponse$inboundSchema, type CreatePlanItemDisplay, CreatePlanItemDisplay$inboundSchema, CreatePlanItemExpiryDurationTypeResponse, CreatePlanItemExpiryDurationTypeResponse$inboundSchema, CreatePlanItemOnDecrease, CreatePlanItemOnDecrease$outboundSchema, CreatePlanItemOnIncrease, CreatePlanItemOnIncrease$outboundSchema, type CreatePlanItemPlanItem, type CreatePlanItemPlanItem$Outbound, CreatePlanItemPlanItem$outboundSchema, CreatePlanItemPriceIntervalRequestBody, CreatePlanItemPriceIntervalRequestBody$outboundSchema, type CreatePlanItemPriceRequestBody, type CreatePlanItemPriceRequestBody$Outbound, CreatePlanItemPriceRequestBody$outboundSchema, type CreatePlanItemPriceResponse, CreatePlanItemPriceResponse$inboundSchema, type CreatePlanItemProration, type CreatePlanItemProration$Outbound, CreatePlanItemProration$outboundSchema, type CreatePlanItemResetResponse, CreatePlanItemResetResponse$inboundSchema, type CreatePlanItemRolloverResponse, CreatePlanItemRolloverResponse$inboundSchema, CreatePlanItemTierBehaviorResponse, CreatePlanItemTierBehaviorResponse$inboundSchema, type CreatePlanItemTierResponse, CreatePlanItemTierResponse$inboundSchema, type CreatePlanItemToResponse, CreatePlanItemToResponse$inboundSchema, CreatePlanLimitTypeRequestBody, CreatePlanLimitTypeRequestBody$outboundSchema, CreatePlanLimitTypeResponse, CreatePlanLimitTypeResponse$inboundSchema, CreatePlanOnEndRequest, CreatePlanOnEndRequest$outboundSchema, CreatePlanOnEndResponse, CreatePlanOnEndResponse$inboundSchema, type CreatePlanOverageAllowedRequest, type CreatePlanOverageAllowedRequest$Outbound, CreatePlanOverageAllowedRequest$outboundSchema, type CreatePlanOverageAllowedResponse, CreatePlanOverageAllowedResponse$inboundSchema, type CreatePlanParams, type CreatePlanParams$Outbound, CreatePlanParams$outboundSchema, type CreatePlanPlanItemFilter, CreatePlanPlanItemFilter$inboundSchema, type CreatePlanPlanItemResponse, CreatePlanPlanItemResponse$inboundSchema, type CreatePlanPriceDisplay, CreatePlanPriceDisplay$inboundSchema, CreatePlanPriceIntervalRequestBody, CreatePlanPriceIntervalRequestBody$outboundSchema, CreatePlanPriceIntervalResponse, CreatePlanPriceIntervalResponse$inboundSchema, CreatePlanPriceItemIntervalResponse, CreatePlanPriceItemIntervalResponse$inboundSchema, type CreatePlanPriceRequestBody, type CreatePlanPriceRequestBody$Outbound, CreatePlanPriceRequestBody$outboundSchema, type CreatePlanPriceResponse, CreatePlanPriceResponse$inboundSchema, CreatePlanPriceVariantDetailsInterval, CreatePlanPriceVariantDetailsInterval$inboundSchema, type CreatePlanProperties, type CreatePlanProperties$Outbound, CreatePlanProperties$outboundSchema, type CreatePlanProrationResponse, CreatePlanProrationResponse$inboundSchema, CreatePlanPurchaseLimitIntervalRequestBody, CreatePlanPurchaseLimitIntervalRequestBody$outboundSchema, CreatePlanPurchaseLimitIntervalResponse, CreatePlanPurchaseLimitIntervalResponse$inboundSchema, type CreatePlanPurchaseLimitRequest, type CreatePlanPurchaseLimitRequest$Outbound, CreatePlanPurchaseLimitRequest$outboundSchema, type CreatePlanPurchaseLimitResponse, CreatePlanPurchaseLimitResponse$inboundSchema, CreatePlanRemoveItemBillingMethod, CreatePlanRemoveItemBillingMethod$inboundSchema, CreatePlanResetIntervalRequestBody, CreatePlanResetIntervalRequestBody$outboundSchema, CreatePlanResetItemIntervalResponse, CreatePlanResetItemIntervalResponse$inboundSchema, type CreatePlanResetRequestBody, type CreatePlanResetRequestBody$Outbound, CreatePlanResetRequestBody$outboundSchema, type CreatePlanResponse, CreatePlanResponse$inboundSchema, type CreatePlanRolloverRequestBody, type CreatePlanRolloverRequestBody$Outbound, CreatePlanRolloverRequestBody$outboundSchema, type CreatePlanSpendLimitRequest, type CreatePlanSpendLimitRequest$Outbound, CreatePlanSpendLimitRequest$outboundSchema, type CreatePlanSpendLimitResponse, CreatePlanSpendLimitResponse$inboundSchema, CreatePlanStatus, CreatePlanStatus$inboundSchema, CreatePlanThresholdTypeRequestBody, CreatePlanThresholdTypeRequestBody$outboundSchema, CreatePlanThresholdTypeResponse, CreatePlanThresholdTypeResponse$inboundSchema, CreatePlanTierBehaviorRequestBody, CreatePlanTierBehaviorRequestBody$outboundSchema, type CreatePlanTierRequestBody, type CreatePlanTierRequestBody$Outbound, CreatePlanTierRequestBody$outboundSchema, type CreatePlanToRequestBody, type CreatePlanToRequestBody$Outbound, CreatePlanToRequestBody$outboundSchema, CreatePlanType, CreatePlanType$inboundSchema, type CreatePlanUsageAlertRequestBody, type CreatePlanUsageAlertRequestBody$Outbound, CreatePlanUsageAlertRequestBody$outboundSchema, type CreatePlanUsageAlertResponse, CreatePlanUsageAlertResponse$inboundSchema, CreatePlanUsageLimitIntervalRequestBody, CreatePlanUsageLimitIntervalRequestBody$outboundSchema, CreatePlanUsageLimitIntervalResponse, CreatePlanUsageLimitIntervalResponse$inboundSchema, type CreatePlanUsageLimitRequest, type CreatePlanUsageLimitRequest$Outbound, CreatePlanUsageLimitRequest$outboundSchema, type CreatePlanUsageLimitResponse, CreatePlanUsageLimitResponse$inboundSchema, type CreatePlanVariantDetails, CreatePlanVariantDetails$inboundSchema, type CreatePlanVariantDetailsAutoTopup, CreatePlanVariantDetailsAutoTopup$inboundSchema, type CreatePlanVariantDetailsBillingControls, CreatePlanVariantDetailsBillingControls$inboundSchema, CreatePlanVariantDetailsDurationType, CreatePlanVariantDetailsDurationType$inboundSchema, CreatePlanVariantDetailsExpiryDurationType, CreatePlanVariantDetailsExpiryDurationType$inboundSchema, type CreatePlanVariantDetailsFilter, CreatePlanVariantDetailsFilter$inboundSchema, CreatePlanVariantDetailsLimitType, CreatePlanVariantDetailsLimitType$inboundSchema, CreatePlanVariantDetailsOnDecrease, CreatePlanVariantDetailsOnDecrease$inboundSchema, CreatePlanVariantDetailsOnEnd, CreatePlanVariantDetailsOnEnd$inboundSchema, CreatePlanVariantDetailsOnIncrease, CreatePlanVariantDetailsOnIncrease$inboundSchema, type CreatePlanVariantDetailsOverageAllowed, CreatePlanVariantDetailsOverageAllowed$inboundSchema, type CreatePlanVariantDetailsPrice, CreatePlanVariantDetailsPrice$inboundSchema, type CreatePlanVariantDetailsPurchaseLimit, CreatePlanVariantDetailsPurchaseLimit$inboundSchema, CreatePlanVariantDetailsPurchaseLimitInterval, CreatePlanVariantDetailsPurchaseLimitInterval$inboundSchema, type CreatePlanVariantDetailsReset, CreatePlanVariantDetailsReset$inboundSchema, type CreatePlanVariantDetailsRollover, CreatePlanVariantDetailsRollover$inboundSchema, type CreatePlanVariantDetailsSpendLimit, CreatePlanVariantDetailsSpendLimit$inboundSchema, CreatePlanVariantDetailsThresholdType, CreatePlanVariantDetailsThresholdType$inboundSchema, type CreatePlanVariantDetailsTier, CreatePlanVariantDetailsTier$inboundSchema, CreatePlanVariantDetailsTierBehavior, CreatePlanVariantDetailsTierBehavior$inboundSchema, type CreatePlanVariantDetailsTo, CreatePlanVariantDetailsTo$inboundSchema, type CreatePlanVariantDetailsUsageAlert, CreatePlanVariantDetailsUsageAlert$inboundSchema, type CreatePlanVariantDetailsUsageLimit, CreatePlanVariantDetailsUsageLimit$inboundSchema, CreatePlanVariantDetailsUsageLimitInterval, CreatePlanVariantDetailsUsageLimitInterval$inboundSchema, type CreateReferralCodeGlobals, type CreateReferralCodeParams, type CreateReferralCodeParams$Outbound, CreateReferralCodeParams$outboundSchema, type CreateReferralCodeResponse, CreateReferralCodeResponse$inboundSchema, CreateScheduleAddItemBillingMethod2, CreateScheduleAddItemBillingMethod2$outboundSchema, CreateScheduleAddItemExpiryDurationType2, CreateScheduleAddItemExpiryDurationType2$outboundSchema, CreateScheduleAddItemOnDecrease2, CreateScheduleAddItemOnDecrease2$outboundSchema, CreateScheduleAddItemOnIncrease2, CreateScheduleAddItemOnIncrease2$outboundSchema, type CreateScheduleAddItemPlanItem2, type CreateScheduleAddItemPlanItem2$Outbound, CreateScheduleAddItemPlanItem2$outboundSchema, type CreateScheduleAddItemPrice2, type CreateScheduleAddItemPrice2$Outbound, CreateScheduleAddItemPrice2$outboundSchema, CreateScheduleAddItemPriceInterval2, CreateScheduleAddItemPriceInterval2$outboundSchema, type CreateScheduleAddItemProration2, type CreateScheduleAddItemProration2$Outbound, CreateScheduleAddItemProration2$outboundSchema, type CreateScheduleAddItemReset2, type CreateScheduleAddItemReset2$Outbound, CreateScheduleAddItemReset2$outboundSchema, CreateScheduleAddItemResetInterval2, CreateScheduleAddItemResetInterval2$outboundSchema, type CreateScheduleAddItemRollover2, type CreateScheduleAddItemRollover2$Outbound, CreateScheduleAddItemRollover2$outboundSchema, type CreateScheduleAddItemTier2, type CreateScheduleAddItemTier2$Outbound, CreateScheduleAddItemTier2$outboundSchema, CreateScheduleAddItemTierBehavior2, CreateScheduleAddItemTierBehavior2$outboundSchema, type CreateScheduleAttachDiscount, type CreateScheduleAttachDiscount$Outbound, CreateScheduleAttachDiscount$outboundSchema, type CreateScheduleAutoTopup2, type CreateScheduleAutoTopup2$Outbound, CreateScheduleAutoTopup2$outboundSchema, type CreateScheduleBasePrice2, type CreateScheduleBasePrice2$Outbound, CreateScheduleBasePrice2$outboundSchema, CreateScheduleBillingBehavior, CreateScheduleBillingBehavior$outboundSchema, type CreateScheduleBillingControls2, type CreateScheduleBillingControls2$Outbound, CreateScheduleBillingControls2$outboundSchema, CreateScheduleCode, CreateScheduleCode$inboundSchema, type CreateScheduleCustomize2, type CreateScheduleCustomize2$Outbound, CreateScheduleCustomize2$outboundSchema, CreateScheduleDurationType2, CreateScheduleDurationType2$outboundSchema, type CreateScheduleFeatureQuantity2, type CreateScheduleFeatureQuantity2$Outbound, CreateScheduleFeatureQuantity2$outboundSchema, type CreateScheduleFilter2, type CreateScheduleFilter2$Outbound, CreateScheduleFilter2$outboundSchema, type CreateScheduleGlobals, CreateScheduleIntervalRemoveItemEnum3, CreateScheduleIntervalRemoveItemEnum3$outboundSchema, CreateScheduleIntervalRemoveItemEnum4, CreateScheduleIntervalRemoveItemEnum4$outboundSchema, type CreateScheduleIntervalUnion2, type CreateScheduleIntervalUnion2$Outbound, CreateScheduleIntervalUnion2$outboundSchema, type CreateScheduleInvoice, CreateScheduleInvoice$inboundSchema, type CreateScheduleInvoiceMode, type CreateScheduleInvoiceMode$Outbound, CreateScheduleInvoiceMode$outboundSchema, CreateScheduleItemBillingMethod2, CreateScheduleItemBillingMethod2$outboundSchema, CreateScheduleItemExpiryDurationType2, CreateScheduleItemExpiryDurationType2$outboundSchema, CreateScheduleItemOnDecrease2, CreateScheduleItemOnDecrease2$outboundSchema, CreateScheduleItemOnIncrease2, CreateScheduleItemOnIncrease2$outboundSchema, type CreateScheduleItemPlanItem2, type CreateScheduleItemPlanItem2$Outbound, CreateScheduleItemPlanItem2$outboundSchema, type CreateScheduleItemPrice2, type CreateScheduleItemPrice2$Outbound, CreateScheduleItemPrice2$outboundSchema, CreateScheduleItemPriceInterval2, CreateScheduleItemPriceInterval2$outboundSchema, type CreateScheduleItemProration2, type CreateScheduleItemProration2$Outbound, CreateScheduleItemProration2$outboundSchema, type CreateScheduleItemReset2, type CreateScheduleItemReset2$Outbound, CreateScheduleItemReset2$outboundSchema, CreateScheduleItemResetInterval2, CreateScheduleItemResetInterval2$outboundSchema, type CreateScheduleItemRollover2, type CreateScheduleItemRollover2$Outbound, CreateScheduleItemRollover2$outboundSchema, type CreateScheduleItemTier2, type CreateScheduleItemTier2$Outbound, CreateScheduleItemTier2$outboundSchema, CreateScheduleItemTierBehavior2, CreateScheduleItemTierBehavior2$outboundSchema, CreateScheduleLimitType2, CreateScheduleLimitType2$outboundSchema, type CreateScheduleOverageAllowed2, type CreateScheduleOverageAllowed2$Outbound, CreateScheduleOverageAllowed2$outboundSchema, type CreateScheduleParams, type CreateScheduleParams$Outbound, CreateScheduleParams$outboundSchema, type CreateSchedulePlan2, type CreateSchedulePlan2$Outbound, CreateSchedulePlan2$outboundSchema, type CreateSchedulePlanItemFilter2, type CreateSchedulePlanItemFilter2$Outbound, CreateSchedulePlanItemFilter2$outboundSchema, CreateSchedulePriceInterval2, CreateSchedulePriceInterval2$outboundSchema, type CreateSchedulePurchaseLimit2, type CreateSchedulePurchaseLimit2$Outbound, CreateSchedulePurchaseLimit2$outboundSchema, CreateSchedulePurchaseLimitInterval2, CreateSchedulePurchaseLimitInterval2$outboundSchema, CreateScheduleRedirectMode, CreateScheduleRedirectMode$outboundSchema, CreateScheduleRemoveItemBillingMethod2, CreateScheduleRemoveItemBillingMethod2$outboundSchema, type CreateScheduleRequiredAction, CreateScheduleRequiredAction$inboundSchema, type CreateScheduleResponse, CreateScheduleResponse$inboundSchema, type CreateScheduleSpendLimit2, type CreateScheduleSpendLimit2$Outbound, CreateScheduleSpendLimit2$outboundSchema, CreateScheduleStatus, CreateScheduleStatus$inboundSchema, CreateScheduleThresholdType2, CreateScheduleThresholdType2$outboundSchema, type CreateScheduleUsageAlert2, type CreateScheduleUsageAlert2$Outbound, CreateScheduleUsageAlert2$outboundSchema, type CreateScheduleUsageLimit2, type CreateScheduleUsageLimit2$Outbound, CreateScheduleUsageLimit2$outboundSchema, CreateScheduleUsageLimitInterval2, CreateScheduleUsageLimitInterval2$outboundSchema, type Customer, Customer$inboundSchema, type CustomerAutoTopup, CustomerAutoTopup$inboundSchema, type CustomerBillingControls, CustomerBillingControls$inboundSchema, type CustomerConfig, CustomerConfig$inboundSchema, type CustomerCreditSchema, CustomerCreditSchema$inboundSchema, type CustomerData, type CustomerData$Outbound, CustomerData$outboundSchema, type CustomerDataAutoTopup, type CustomerDataAutoTopup$Outbound, CustomerDataAutoTopup$outboundSchema, type CustomerDataBillingControls, type CustomerDataBillingControls$Outbound, CustomerDataBillingControls$outboundSchema, type CustomerDataConfig, type CustomerDataConfig$Outbound, CustomerDataConfig$outboundSchema, type CustomerDataFilter, type CustomerDataFilter$Outbound, CustomerDataFilter$outboundSchema, CustomerDataLimitType, CustomerDataLimitType$outboundSchema, type CustomerDataOverageAllowed, type CustomerDataOverageAllowed$Outbound, CustomerDataOverageAllowed$outboundSchema, type CustomerDataPurchaseLimit, type CustomerDataPurchaseLimit$Outbound, CustomerDataPurchaseLimit$outboundSchema, CustomerDataPurchaseLimitInterval, CustomerDataPurchaseLimitInterval$outboundSchema, type CustomerDataSpendLimit, type CustomerDataSpendLimit$Outbound, CustomerDataSpendLimit$outboundSchema, CustomerDataThresholdType, CustomerDataThresholdType$outboundSchema, type CustomerDataUsageAlert, type CustomerDataUsageAlert$Outbound, CustomerDataUsageAlert$outboundSchema, type CustomerDataUsageLimit, type CustomerDataUsageLimit$Outbound, CustomerDataUsageLimit$outboundSchema, CustomerDataUsageLimitInterval, CustomerDataUsageLimitInterval$outboundSchema, CustomerDiscountType, CustomerDiscountType$inboundSchema, type CustomerDisplay, CustomerDisplay$inboundSchema, CustomerDurationType, CustomerDurationType$inboundSchema, type CustomerEligibility, CustomerEligibility$inboundSchema, CustomerEntityEnv, CustomerEntityEnv$inboundSchema, CustomerEnv, CustomerEnv$inboundSchema, CustomerExpand, CustomerExpand$outboundSchema, type CustomerFeature, CustomerFeature$inboundSchema, type CustomerFilter, CustomerFilter$inboundSchema, CustomerFlagsType, CustomerFlagsType$inboundSchema, CustomerLimitType, CustomerLimitType$inboundSchema, type CustomerModelMarkups, CustomerModelMarkups$inboundSchema, type CustomerOverageAllowed, CustomerOverageAllowed$inboundSchema, type CustomerProviderMarkups, CustomerProviderMarkups$inboundSchema, type CustomerPurchaseLimit1, CustomerPurchaseLimit1$inboundSchema, type CustomerPurchaseLimit2, CustomerPurchaseLimit2$inboundSchema, CustomerPurchaseLimitInterval1, CustomerPurchaseLimitInterval1$inboundSchema, CustomerPurchaseLimitInterval2, CustomerPurchaseLimitInterval2$inboundSchema, type CustomerPurchaseLimitUnion, CustomerPurchaseLimitUnion$inboundSchema, type CustomerSpendLimit, CustomerSpendLimit$inboundSchema, CustomerStatus, CustomerStatus$inboundSchema, CustomerThresholdType, CustomerThresholdType$inboundSchema, type CustomerUsageAlert, CustomerUsageAlert$inboundSchema, type CustomerUsageLimit, CustomerUsageLimit$inboundSchema, CustomerUsageLimitInterval, CustomerUsageLimitInterval$inboundSchema, type Customize, Customize$inboundSchema, type Deductions, Deductions$inboundSchema, type DeleteBalanceGlobals, DeleteBalanceInterval, DeleteBalanceInterval$outboundSchema, type DeleteBalanceParams, type DeleteBalanceParams$Outbound, DeleteBalanceParams$outboundSchema, type DeleteBalanceResponse, DeleteBalanceResponse$inboundSchema, type DeleteCustomerGlobals, type DeleteCustomerParams, type DeleteCustomerParams$Outbound, DeleteCustomerParams$outboundSchema, type DeleteCustomerResponse, DeleteCustomerResponse$inboundSchema, type DeleteEntityGlobals, type DeleteEntityParams, type DeleteEntityParams$Outbound, DeleteEntityParams$outboundSchema, type DeleteEntityResponse, DeleteEntityResponse$inboundSchema, type DeleteFeatureGlobals, type DeleteFeatureParams, type DeleteFeatureParams$Outbound, DeleteFeatureParams$outboundSchema, type DeleteFeatureResponse, DeleteFeatureResponse$inboundSchema, type DeletePlanGlobals, type DeletePlanParams, type DeletePlanParams$Outbound, DeletePlanParams$outboundSchema, type DeletePlanResponse, DeletePlanResponse$inboundSchema, type DfuFlashParams, type DfuFlashParams$Outbound, DfuFlashParams$outboundSchema, type DfuFlashResult, DfuFlashResult$inboundSchema, type Discount, Discount$inboundSchema, DurationType, DurationType$inboundSchema, type EntitlementsGranted, EntitlementsGranted$inboundSchema, type Entity, Entity$inboundSchema, type EventsAggregateParams, type EventsAggregateParams$Outbound, EventsAggregateParams$outboundSchema, type EventsListParams, type EventsListParams$Outbound, EventsListParams$outboundSchema, type Expiry, Expiry$inboundSchema, ExpiryType, ExpiryType$inboundSchema, type FeatureGrant, FeatureGrant$inboundSchema, type FeatureGrantPromoCode, FeatureGrantPromoCode$inboundSchema, FeatureType1, FeatureType1$inboundSchema, FeatureType2, FeatureType2$inboundSchema, type Fetcher, type FinalizeBalanceParams, type FinalizeBalanceParams$Outbound, FinalizeBalanceParams$outboundSchema, FinalizeLockAction, FinalizeLockAction$outboundSchema, type FinalizeLockGlobals, type FinalizeLockResponse, FinalizeLockResponse$inboundSchema, type FinalizeLockResponseBody1, FinalizeLockResponseBody1$inboundSchema, type FinalizeLockResponseBody2, FinalizeLockResponseBody2$inboundSchema, type Flag1, Flag1$inboundSchema, type Flag2, Flag2$inboundSchema, type FlagDisplay1, FlagDisplay1$inboundSchema, type FlagDisplay2, FlagDisplay2$inboundSchema, FlagType1, FlagType1$inboundSchema, FlagType2, FlagType2$inboundSchema, type Flags, Flags$inboundSchema, type Flashed, Flashed$inboundSchema, type FreeTrial, FreeTrial$inboundSchema, FreeTrialDuration1, FreeTrialDuration1$inboundSchema, FreeTrialDuration2, FreeTrialDuration2$inboundSchema, type FreeTrialParams, FreeTrialParams$inboundSchema, type FreeTrialRequest, type FreeTrialRequest$Outbound, FreeTrialRequest$outboundSchema, type GetCustomerAutoTopup, GetCustomerAutoTopup$inboundSchema, type GetCustomerBillingControls, GetCustomerBillingControls$inboundSchema, type GetCustomerConfig, GetCustomerConfig$inboundSchema, type GetCustomerCreditSchema, GetCustomerCreditSchema$inboundSchema, type GetCustomerCustomer, GetCustomerCustomer$inboundSchema, type GetCustomerDiscount, GetCustomerDiscount$inboundSchema, GetCustomerDiscountType, GetCustomerDiscountType$inboundSchema, type GetCustomerDisplay, GetCustomerDisplay$inboundSchema, GetCustomerDurationType, GetCustomerDurationType$inboundSchema, type GetCustomerEntity, GetCustomerEntity$inboundSchema, GetCustomerEntityEnv, GetCustomerEntityEnv$inboundSchema, GetCustomerEnv, GetCustomerEnv$inboundSchema, type GetCustomerFeature, GetCustomerFeature$inboundSchema, type GetCustomerFilter, GetCustomerFilter$inboundSchema, type GetCustomerFlags, GetCustomerFlags$inboundSchema, GetCustomerFlagsType, GetCustomerFlagsType$inboundSchema, type GetCustomerGlobals, type GetCustomerInvoice, GetCustomerInvoice$inboundSchema, GetCustomerLimitType, GetCustomerLimitType$inboundSchema, type GetCustomerModelMarkups, GetCustomerModelMarkups$inboundSchema, type GetCustomerOverageAllowed, GetCustomerOverageAllowed$inboundSchema, type GetCustomerParams, type GetCustomerParams$Outbound, GetCustomerParams$outboundSchema, GetCustomerProcessorType, GetCustomerProcessorType$inboundSchema, type GetCustomerProcessors, GetCustomerProcessors$inboundSchema, type GetCustomerProviderMarkups, GetCustomerProviderMarkups$inboundSchema, type GetCustomerPurchase, GetCustomerPurchase$inboundSchema, type GetCustomerPurchaseLimit1, GetCustomerPurchaseLimit1$inboundSchema, type GetCustomerPurchaseLimit2, GetCustomerPurchaseLimit2$inboundSchema, GetCustomerPurchaseLimitInterval1, GetCustomerPurchaseLimitInterval1$inboundSchema, GetCustomerPurchaseLimitInterval2, GetCustomerPurchaseLimitInterval2$inboundSchema, type GetCustomerPurchaseLimitUnion, GetCustomerPurchaseLimitUnion$inboundSchema, GetCustomerPurchaseScope, GetCustomerPurchaseScope$inboundSchema, type GetCustomerReferral, GetCustomerReferral$inboundSchema, type GetCustomerResponse, GetCustomerResponse$inboundSchema, type GetCustomerRevenuecat, GetCustomerRevenuecat$inboundSchema, type GetCustomerRewards, GetCustomerRewards$inboundSchema, type GetCustomerSpendLimit, GetCustomerSpendLimit$inboundSchema, GetCustomerStatus, GetCustomerStatus$inboundSchema, type GetCustomerStripe, GetCustomerStripe$inboundSchema, type GetCustomerSubscription, GetCustomerSubscription$inboundSchema, GetCustomerSubscriptionScope, GetCustomerSubscriptionScope$inboundSchema, GetCustomerThresholdType, GetCustomerThresholdType$inboundSchema, type GetCustomerTrialsUsed, GetCustomerTrialsUsed$inboundSchema, type GetCustomerUsageAlert, GetCustomerUsageAlert$inboundSchema, type GetCustomerUsageLimit, GetCustomerUsageLimit$inboundSchema, GetCustomerUsageLimitInterval, GetCustomerUsageLimitInterval$inboundSchema, type GetCustomerVercel, GetCustomerVercel$inboundSchema, type GetEntityBillingControls, GetEntityBillingControls$inboundSchema, type GetEntityCreditSchema, GetEntityCreditSchema$inboundSchema, type GetEntityDisplay, GetEntityDisplay$inboundSchema, GetEntityEnv, GetEntityEnv$inboundSchema, type GetEntityFeature, GetEntityFeature$inboundSchema, type GetEntityFilter, GetEntityFilter$inboundSchema, type GetEntityFlags, GetEntityFlags$inboundSchema, type GetEntityGlobals, GetEntityInterval, GetEntityInterval$inboundSchema, type GetEntityInvoice, GetEntityInvoice$inboundSchema, GetEntityLimitType, GetEntityLimitType$inboundSchema, type GetEntityModelMarkups, GetEntityModelMarkups$inboundSchema, type GetEntityOverageAllowed, GetEntityOverageAllowed$inboundSchema, type GetEntityParams, type GetEntityParams$Outbound, GetEntityParams$outboundSchema, GetEntityProcessorType, GetEntityProcessorType$inboundSchema, type GetEntityProviderMarkups, GetEntityProviderMarkups$inboundSchema, type GetEntityPurchase, GetEntityPurchase$inboundSchema, GetEntityPurchaseScope, GetEntityPurchaseScope$inboundSchema, type GetEntityResponse, GetEntityResponse$inboundSchema, type GetEntitySpendLimit, GetEntitySpendLimit$inboundSchema, GetEntityStatus, GetEntityStatus$inboundSchema, type GetEntitySubscription, GetEntitySubscription$inboundSchema, GetEntitySubscriptionScope, GetEntitySubscriptionScope$inboundSchema, GetEntityThresholdType, GetEntityThresholdType$inboundSchema, GetEntityType, GetEntityType$inboundSchema, type GetEntityUsageAlert, GetEntityUsageAlert$inboundSchema, type GetEntityUsageLimit, GetEntityUsageLimit$inboundSchema, type GetFeatureCreditSchema, GetFeatureCreditSchema$inboundSchema, type GetFeatureDisplay, GetFeatureDisplay$inboundSchema, type GetFeatureGlobals, type GetFeatureModelMarkups, GetFeatureModelMarkups$inboundSchema, type GetFeatureParams, type GetFeatureParams$Outbound, GetFeatureParams$outboundSchema, type GetFeatureProviderMarkups, GetFeatureProviderMarkups$inboundSchema, type GetFeatureResponse, GetFeatureResponse$inboundSchema, GetFeatureType, GetFeatureType$inboundSchema, type GetOrCreateCustomerAutoTopup, type GetOrCreateCustomerAutoTopup$Outbound, GetOrCreateCustomerAutoTopup$outboundSchema, type GetOrCreateCustomerBillingControls, type GetOrCreateCustomerBillingControls$Outbound, GetOrCreateCustomerBillingControls$outboundSchema, type GetOrCreateCustomerConfig, type GetOrCreateCustomerConfig$Outbound, GetOrCreateCustomerConfig$outboundSchema, type GetOrCreateCustomerFilter, type GetOrCreateCustomerFilter$Outbound, GetOrCreateCustomerFilter$outboundSchema, type GetOrCreateCustomerGlobals, GetOrCreateCustomerLimitType, GetOrCreateCustomerLimitType$outboundSchema, type GetOrCreateCustomerOverageAllowed, type GetOrCreateCustomerOverageAllowed$Outbound, GetOrCreateCustomerOverageAllowed$outboundSchema, type GetOrCreateCustomerParams, type GetOrCreateCustomerParams$Outbound, GetOrCreateCustomerParams$outboundSchema, type GetOrCreateCustomerProperties, type GetOrCreateCustomerProperties$Outbound, GetOrCreateCustomerProperties$outboundSchema, type GetOrCreateCustomerPurchaseLimit, type GetOrCreateCustomerPurchaseLimit$Outbound, GetOrCreateCustomerPurchaseLimit$outboundSchema, GetOrCreateCustomerPurchaseLimitInterval, GetOrCreateCustomerPurchaseLimitInterval$outboundSchema, type GetOrCreateCustomerSpendLimit, type GetOrCreateCustomerSpendLimit$Outbound, GetOrCreateCustomerSpendLimit$outboundSchema, GetOrCreateCustomerThresholdType, GetOrCreateCustomerThresholdType$outboundSchema, type GetOrCreateCustomerUsageAlert, type GetOrCreateCustomerUsageAlert$Outbound, GetOrCreateCustomerUsageAlert$outboundSchema, type GetOrCreateCustomerUsageLimit, type GetOrCreateCustomerUsageLimit$Outbound, GetOrCreateCustomerUsageLimit$outboundSchema, GetOrCreateCustomerUsageLimitInterval, GetOrCreateCustomerUsageLimitInterval$outboundSchema, GetPlanAddItemBillingMethod, GetPlanAddItemBillingMethod$inboundSchema, GetPlanAddItemPriceInterval, GetPlanAddItemPriceInterval$inboundSchema, GetPlanAddItemResetInterval, GetPlanAddItemResetInterval$inboundSchema, GetPlanAttachAction, GetPlanAttachAction$inboundSchema, type GetPlanAutoTopup, GetPlanAutoTopup$inboundSchema, type GetPlanBasePrice, GetPlanBasePrice$inboundSchema, type GetPlanBillingControls, GetPlanBillingControls$inboundSchema, type GetPlanConfig, GetPlanConfig$inboundSchema, type GetPlanCreditSchema, GetPlanCreditSchema$inboundSchema, type GetPlanCustomerEligibility, GetPlanCustomerEligibility$inboundSchema, type GetPlanCustomize, GetPlanCustomize$inboundSchema, GetPlanDurationType, GetPlanDurationType$inboundSchema, GetPlanEnv, GetPlanEnv$inboundSchema, type GetPlanFeature, GetPlanFeature$inboundSchema, type GetPlanFeatureDisplay, GetPlanFeatureDisplay$inboundSchema, type GetPlanFilter, GetPlanFilter$inboundSchema, type GetPlanFreeTrial, GetPlanFreeTrial$inboundSchema, type GetPlanFreeTrialParams, GetPlanFreeTrialParams$inboundSchema, type GetPlanGlobals, GetPlanIntervalRemoveItemEnum1, GetPlanIntervalRemoveItemEnum1$inboundSchema, GetPlanIntervalRemoveItemEnum2, GetPlanIntervalRemoveItemEnum2$inboundSchema, type GetPlanIntervalUnion, GetPlanIntervalUnion$inboundSchema, type GetPlanItem, GetPlanItem$inboundSchema, GetPlanItemBillingMethod, GetPlanItemBillingMethod$inboundSchema, type GetPlanItemDisplay, GetPlanItemDisplay$inboundSchema, GetPlanItemExpiryDurationType, GetPlanItemExpiryDurationType$inboundSchema, type GetPlanItemPrice, GetPlanItemPrice$inboundSchema, type GetPlanItemReset, GetPlanItemReset$inboundSchema, type GetPlanItemRollover, GetPlanItemRollover$inboundSchema, type GetPlanItemTier, GetPlanItemTier$inboundSchema, GetPlanItemTierBehavior, GetPlanItemTierBehavior$inboundSchema, type GetPlanItemTo, GetPlanItemTo$inboundSchema, GetPlanLimitType, GetPlanLimitType$inboundSchema, GetPlanOnDecrease, GetPlanOnDecrease$inboundSchema, GetPlanOnEnd, GetPlanOnEnd$inboundSchema, GetPlanOnIncrease, GetPlanOnIncrease$inboundSchema, type GetPlanOverageAllowed, GetPlanOverageAllowed$inboundSchema, type GetPlanParams, type GetPlanParams$Outbound, GetPlanParams$outboundSchema, type GetPlanPlanItem, GetPlanPlanItem$inboundSchema, type GetPlanPlanItemFilter, GetPlanPlanItemFilter$inboundSchema, type GetPlanPrice, GetPlanPrice$inboundSchema, type GetPlanPriceDisplay, GetPlanPriceDisplay$inboundSchema, GetPlanPriceInterval, GetPlanPriceInterval$inboundSchema, GetPlanPriceItemInterval, GetPlanPriceItemInterval$inboundSchema, GetPlanPriceVariantDetailsInterval, GetPlanPriceVariantDetailsInterval$inboundSchema, type GetPlanProration, GetPlanProration$inboundSchema, type GetPlanPurchaseLimit, GetPlanPurchaseLimit$inboundSchema, GetPlanPurchaseLimitInterval, GetPlanPurchaseLimitInterval$inboundSchema, GetPlanRemoveItemBillingMethod, GetPlanRemoveItemBillingMethod$inboundSchema, GetPlanResetItemInterval, GetPlanResetItemInterval$inboundSchema, type GetPlanResponse, GetPlanResponse$inboundSchema, type GetPlanSpendLimit, GetPlanSpendLimit$inboundSchema, GetPlanStatus, GetPlanStatus$inboundSchema, GetPlanThresholdType, GetPlanThresholdType$inboundSchema, GetPlanType, GetPlanType$inboundSchema, type GetPlanUsageAlert, GetPlanUsageAlert$inboundSchema, type GetPlanUsageLimit, GetPlanUsageLimit$inboundSchema, GetPlanUsageLimitInterval, GetPlanUsageLimitInterval$inboundSchema, type GetPlanVariantDetails, GetPlanVariantDetails$inboundSchema, type GetPlanVariantDetailsAutoTopup, GetPlanVariantDetailsAutoTopup$inboundSchema, type GetPlanVariantDetailsBillingControls, GetPlanVariantDetailsBillingControls$inboundSchema, GetPlanVariantDetailsDurationType, GetPlanVariantDetailsDurationType$inboundSchema, GetPlanVariantDetailsExpiryDurationType, GetPlanVariantDetailsExpiryDurationType$inboundSchema, type GetPlanVariantDetailsFilter, GetPlanVariantDetailsFilter$inboundSchema, GetPlanVariantDetailsLimitType, GetPlanVariantDetailsLimitType$inboundSchema, GetPlanVariantDetailsOnEnd, GetPlanVariantDetailsOnEnd$inboundSchema, type GetPlanVariantDetailsOverageAllowed, GetPlanVariantDetailsOverageAllowed$inboundSchema, type GetPlanVariantDetailsPrice, GetPlanVariantDetailsPrice$inboundSchema, type GetPlanVariantDetailsPurchaseLimit, GetPlanVariantDetailsPurchaseLimit$inboundSchema, GetPlanVariantDetailsPurchaseLimitInterval, GetPlanVariantDetailsPurchaseLimitInterval$inboundSchema, type GetPlanVariantDetailsReset, GetPlanVariantDetailsReset$inboundSchema, type GetPlanVariantDetailsRollover, GetPlanVariantDetailsRollover$inboundSchema, type GetPlanVariantDetailsSpendLimit, GetPlanVariantDetailsSpendLimit$inboundSchema, GetPlanVariantDetailsThresholdType, GetPlanVariantDetailsThresholdType$inboundSchema, type GetPlanVariantDetailsTier, GetPlanVariantDetailsTier$inboundSchema, GetPlanVariantDetailsTierBehavior, GetPlanVariantDetailsTierBehavior$inboundSchema, type GetPlanVariantDetailsTo, GetPlanVariantDetailsTo$inboundSchema, type GetPlanVariantDetailsUsageAlert, GetPlanVariantDetailsUsageAlert$inboundSchema, type GetPlanVariantDetailsUsageLimit, GetPlanVariantDetailsUsageLimit$inboundSchema, GetPlanVariantDetailsUsageLimitInterval, GetPlanVariantDetailsUsageLimitInterval$inboundSchema, type GetRevenueCatKeysApp, GetRevenueCatKeysApp$inboundSchema, GetRevenueCatKeysEnv, GetRevenueCatKeysEnv$outboundSchema, type GetRevenueCatKeysGlobals, type GetRevenueCatKeysParams, type GetRevenueCatKeysParams$Outbound, GetRevenueCatKeysParams$outboundSchema, type GetRevenueCatKeysResponse, GetRevenueCatKeysResponse$inboundSchema, type Grant, Grant$inboundSchema, HTTPClient, HTTPClientError, type HTTPClientOptions, type ImportBalance, type ImportBalance$Outbound, ImportBalance$outboundSchema, ImportBillingBehavior, ImportBillingBehavior$outboundSchema, type ImportCustomerData, type ImportCustomerData$Outbound, ImportCustomerData$outboundSchema, type ImportFeatureQuantity, type ImportFeatureQuantity$Outbound, ImportFeatureQuantity$outboundSchema, type ImportFilter, type ImportFilter$Outbound, ImportFilter$outboundSchema, type ImportGlobals, ImportInterval, ImportInterval$outboundSchema, type ImportPlan, type ImportPlan$Outbound, ImportPlan$outboundSchema, type ImportProcessor, type ImportProcessor$Outbound, ImportProcessor$outboundSchema, ImportStatus, ImportStatus$outboundSchema, ImportType, ImportType$outboundSchema, type IncludedUsage1, IncludedUsage1$inboundSchema, type IncludedUsage2, IncludedUsage2$inboundSchema, Intent, Intent$inboundSchema, IntervalVariantRemoveItemEnum1, IntervalVariantRemoveItemEnum1$outboundSchema, IntervalVariantRemoveItemEnum2, IntervalVariantRemoveItemEnum2$outboundSchema, InvalidRequestError, type Invoice, Invoice$inboundSchema, type Item, Item$inboundSchema, ItemExpiryDurationType, ItemExpiryDurationType$inboundSchema, type Link, type Link$Outbound, Link$outboundSchema, LinkRevenueCatEnv, LinkRevenueCatEnv$outboundSchema, type LinkRevenueCatGlobals, type LinkRevenueCatParams, type LinkRevenueCatParams$Outbound, LinkRevenueCatParams$outboundSchema, type LinkRevenueCatResponse, LinkRevenueCatResponse$inboundSchema, type ListCustomersAutoTopup, ListCustomersAutoTopup$inboundSchema, type ListCustomersBillingControls, ListCustomersBillingControls$inboundSchema, type ListCustomersConfig, ListCustomersConfig$inboundSchema, type ListCustomersCreditSchema, ListCustomersCreditSchema$inboundSchema, type ListCustomersDisplay, ListCustomersDisplay$inboundSchema, ListCustomersEnv, ListCustomersEnv$inboundSchema, type ListCustomersFeature, ListCustomersFeature$inboundSchema, type ListCustomersFilter, ListCustomersFilter$inboundSchema, type ListCustomersFlags, ListCustomersFlags$inboundSchema, type ListCustomersGlobals, ListCustomersLimitType, ListCustomersLimitType$inboundSchema, type ListCustomersList, ListCustomersList$inboundSchema, type ListCustomersModelMarkups, ListCustomersModelMarkups$inboundSchema, type ListCustomersOverageAllowed, ListCustomersOverageAllowed$inboundSchema, type ListCustomersParams, type ListCustomersParams$Outbound, ListCustomersParams$outboundSchema, type ListCustomersPlan, type ListCustomersPlan$Outbound, ListCustomersPlan$outboundSchema, ListCustomersProcessor, ListCustomersProcessor$outboundSchema, type ListCustomersProcessors, ListCustomersProcessors$inboundSchema, type ListCustomersProviderMarkups, ListCustomersProviderMarkups$inboundSchema, type ListCustomersPurchase, ListCustomersPurchase$inboundSchema, type ListCustomersPurchaseLimit1, ListCustomersPurchaseLimit1$inboundSchema, type ListCustomersPurchaseLimit2, ListCustomersPurchaseLimit2$inboundSchema, ListCustomersPurchaseLimitInterval1, ListCustomersPurchaseLimitInterval1$inboundSchema, ListCustomersPurchaseLimitInterval2, ListCustomersPurchaseLimitInterval2$inboundSchema, type ListCustomersPurchaseLimitUnion, ListCustomersPurchaseLimitUnion$inboundSchema, ListCustomersPurchaseScope, ListCustomersPurchaseScope$inboundSchema, type ListCustomersResponse, ListCustomersResponse$inboundSchema, type ListCustomersRevenuecat, ListCustomersRevenuecat$inboundSchema, type ListCustomersSpendLimit, ListCustomersSpendLimit$inboundSchema, ListCustomersStatus, ListCustomersStatus$inboundSchema, type ListCustomersStripe, ListCustomersStripe$inboundSchema, type ListCustomersSubscription, ListCustomersSubscription$inboundSchema, ListCustomersSubscriptionScope, ListCustomersSubscriptionScope$inboundSchema, ListCustomersSubscriptionStatus, ListCustomersSubscriptionStatus$outboundSchema, ListCustomersThresholdType, ListCustomersThresholdType$inboundSchema, ListCustomersType, ListCustomersType$inboundSchema, type ListCustomersUsageAlert, ListCustomersUsageAlert$inboundSchema, type ListCustomersUsageLimit, ListCustomersUsageLimit$inboundSchema, ListCustomersUsageLimitInterval, ListCustomersUsageLimitInterval$inboundSchema, type ListCustomersVercel, ListCustomersVercel$inboundSchema, type ListEntitiesBillingControls, ListEntitiesBillingControls$inboundSchema, type ListEntitiesCreditSchema, ListEntitiesCreditSchema$inboundSchema, type ListEntitiesDisplay, ListEntitiesDisplay$inboundSchema, ListEntitiesEnv, ListEntitiesEnv$inboundSchema, type ListEntitiesFeature, ListEntitiesFeature$inboundSchema, type ListEntitiesFilter, ListEntitiesFilter$inboundSchema, type ListEntitiesFlags, ListEntitiesFlags$inboundSchema, type ListEntitiesGlobals, ListEntitiesInterval, ListEntitiesInterval$inboundSchema, type ListEntitiesInvoice, ListEntitiesInvoice$inboundSchema, ListEntitiesLimitType, ListEntitiesLimitType$inboundSchema, type ListEntitiesList, ListEntitiesList$inboundSchema, type ListEntitiesModelMarkups, ListEntitiesModelMarkups$inboundSchema, type ListEntitiesOverageAllowed, ListEntitiesOverageAllowed$inboundSchema, type ListEntitiesParams, type ListEntitiesParams$Outbound, ListEntitiesParams$outboundSchema, type ListEntitiesPlan, type ListEntitiesPlan$Outbound, ListEntitiesPlan$outboundSchema, ListEntitiesProcessor, ListEntitiesProcessor$outboundSchema, ListEntitiesProcessorType, ListEntitiesProcessorType$inboundSchema, type ListEntitiesProviderMarkups, ListEntitiesProviderMarkups$inboundSchema, type ListEntitiesPurchase, ListEntitiesPurchase$inboundSchema, ListEntitiesPurchaseScope, ListEntitiesPurchaseScope$inboundSchema, type ListEntitiesResponse, ListEntitiesResponse$inboundSchema, type ListEntitiesSpendLimit, ListEntitiesSpendLimit$inboundSchema, ListEntitiesStatus, ListEntitiesStatus$inboundSchema, type ListEntitiesSubscription, ListEntitiesSubscription$inboundSchema, ListEntitiesSubscriptionScope, ListEntitiesSubscriptionScope$inboundSchema, ListEntitiesSubscriptionStatus, ListEntitiesSubscriptionStatus$outboundSchema, ListEntitiesThresholdType, ListEntitiesThresholdType$inboundSchema, ListEntitiesType, ListEntitiesType$inboundSchema, type ListEntitiesUsageAlert, ListEntitiesUsageAlert$inboundSchema, type ListEntitiesUsageLimit, ListEntitiesUsageLimit$inboundSchema, type ListEventsCustomRange, type ListEventsCustomRange$Outbound, ListEventsCustomRange$outboundSchema, type ListEventsFeatureId, type ListEventsFeatureId$Outbound, ListEventsFeatureId$outboundSchema, type ListEventsGlobals, ListEventsIntervalEnum, ListEventsIntervalEnum$inboundSchema, type ListEventsIntervalUnion, ListEventsIntervalUnion$inboundSchema, type ListEventsList, ListEventsList$inboundSchema, type ListEventsReset, ListEventsReset$inboundSchema, type ListEventsResponse, ListEventsResponse$inboundSchema, type ListFeaturesCreditSchema, ListFeaturesCreditSchema$inboundSchema, type ListFeaturesDisplay, ListFeaturesDisplay$inboundSchema, type ListFeaturesGlobals, type ListFeaturesList, ListFeaturesList$inboundSchema, type ListFeaturesModelMarkups, ListFeaturesModelMarkups$inboundSchema, type ListFeaturesProviderMarkups, ListFeaturesProviderMarkups$inboundSchema, type ListFeaturesRequest, type ListFeaturesRequest$Outbound, ListFeaturesRequest$outboundSchema, type ListFeaturesResponse, ListFeaturesResponse$inboundSchema, ListFeaturesType, ListFeaturesType$inboundSchema, ListPlansAddItemBillingMethod, ListPlansAddItemBillingMethod$inboundSchema, ListPlansAddItemPriceInterval, ListPlansAddItemPriceInterval$inboundSchema, ListPlansAddItemResetInterval, ListPlansAddItemResetInterval$inboundSchema, ListPlansAttachAction, ListPlansAttachAction$inboundSchema, type ListPlansAutoTopup, ListPlansAutoTopup$inboundSchema, type ListPlansBasePrice, ListPlansBasePrice$inboundSchema, type ListPlansBillingControls, ListPlansBillingControls$inboundSchema, type ListPlansConfig, ListPlansConfig$inboundSchema, type ListPlansCreditSchema, ListPlansCreditSchema$inboundSchema, type ListPlansCustomerEligibility, ListPlansCustomerEligibility$inboundSchema, type ListPlansCustomize, ListPlansCustomize$inboundSchema, ListPlansDurationType, ListPlansDurationType$inboundSchema, ListPlansEnv, ListPlansEnv$inboundSchema, type ListPlansFeature, ListPlansFeature$inboundSchema, type ListPlansFeatureDisplay, ListPlansFeatureDisplay$inboundSchema, type ListPlansFilter, ListPlansFilter$inboundSchema, type ListPlansFreeTrial, ListPlansFreeTrial$inboundSchema, type ListPlansFreeTrialParams, ListPlansFreeTrialParams$inboundSchema, type ListPlansGlobals, ListPlansIntervalRemoveItemEnum1, ListPlansIntervalRemoveItemEnum1$inboundSchema, ListPlansIntervalRemoveItemEnum2, ListPlansIntervalRemoveItemEnum2$inboundSchema, type ListPlansIntervalUnion, ListPlansIntervalUnion$inboundSchema, type ListPlansItem, ListPlansItem$inboundSchema, ListPlansItemBillingMethod, ListPlansItemBillingMethod$inboundSchema, type ListPlansItemDisplay, ListPlansItemDisplay$inboundSchema, ListPlansItemExpiryDurationType, ListPlansItemExpiryDurationType$inboundSchema, type ListPlansItemPrice, ListPlansItemPrice$inboundSchema, type ListPlansItemReset, ListPlansItemReset$inboundSchema, type ListPlansItemRollover, ListPlansItemRollover$inboundSchema, type ListPlansItemTier, ListPlansItemTier$inboundSchema, ListPlansItemTierBehavior, ListPlansItemTierBehavior$inboundSchema, ListPlansLimitType, ListPlansLimitType$inboundSchema, type ListPlansList, ListPlansList$inboundSchema, ListPlansOnDecrease, ListPlansOnDecrease$inboundSchema, ListPlansOnEnd, ListPlansOnEnd$inboundSchema, ListPlansOnIncrease, ListPlansOnIncrease$inboundSchema, type ListPlansOverageAllowed, ListPlansOverageAllowed$inboundSchema, type ListPlansParams, type ListPlansParams$Outbound, ListPlansParams$outboundSchema, type ListPlansPlanItem, ListPlansPlanItem$inboundSchema, type ListPlansPlanItemFilter, ListPlansPlanItemFilter$inboundSchema, type ListPlansPrice, ListPlansPrice$inboundSchema, type ListPlansPriceDisplay, ListPlansPriceDisplay$inboundSchema, ListPlansPriceInterval, ListPlansPriceInterval$inboundSchema, ListPlansPriceItemInterval, ListPlansPriceItemInterval$inboundSchema, ListPlansPriceVariantDetailsInterval, ListPlansPriceVariantDetailsInterval$inboundSchema, type ListPlansProration, ListPlansProration$inboundSchema, type ListPlansPurchaseLimit, ListPlansPurchaseLimit$inboundSchema, ListPlansPurchaseLimitInterval, ListPlansPurchaseLimitInterval$inboundSchema, ListPlansRemoveItemBillingMethod, ListPlansRemoveItemBillingMethod$inboundSchema, ListPlansResetItemInterval, ListPlansResetItemInterval$inboundSchema, type ListPlansResponse, ListPlansResponse$inboundSchema, type ListPlansSpendLimit, ListPlansSpendLimit$inboundSchema, ListPlansStatus, ListPlansStatus$inboundSchema, ListPlansThresholdType, ListPlansThresholdType$inboundSchema, type ListPlansTo, ListPlansTo$inboundSchema, ListPlansType, ListPlansType$inboundSchema, type ListPlansUsageAlert, ListPlansUsageAlert$inboundSchema, type ListPlansUsageLimit, ListPlansUsageLimit$inboundSchema, ListPlansUsageLimitInterval, ListPlansUsageLimitInterval$inboundSchema, type ListPlansVariantDetails, ListPlansVariantDetails$inboundSchema, type ListPlansVariantDetailsAutoTopup, ListPlansVariantDetailsAutoTopup$inboundSchema, type ListPlansVariantDetailsBillingControls, ListPlansVariantDetailsBillingControls$inboundSchema, ListPlansVariantDetailsDurationType, ListPlansVariantDetailsDurationType$inboundSchema, ListPlansVariantDetailsExpiryDurationType, ListPlansVariantDetailsExpiryDurationType$inboundSchema, type ListPlansVariantDetailsFilter, ListPlansVariantDetailsFilter$inboundSchema, ListPlansVariantDetailsLimitType, ListPlansVariantDetailsLimitType$inboundSchema, ListPlansVariantDetailsOnEnd, ListPlansVariantDetailsOnEnd$inboundSchema, type ListPlansVariantDetailsOverageAllowed, ListPlansVariantDetailsOverageAllowed$inboundSchema, type ListPlansVariantDetailsPrice, ListPlansVariantDetailsPrice$inboundSchema, type ListPlansVariantDetailsPurchaseLimit, ListPlansVariantDetailsPurchaseLimit$inboundSchema, ListPlansVariantDetailsPurchaseLimitInterval, ListPlansVariantDetailsPurchaseLimitInterval$inboundSchema, type ListPlansVariantDetailsReset, ListPlansVariantDetailsReset$inboundSchema, type ListPlansVariantDetailsRollover, ListPlansVariantDetailsRollover$inboundSchema, type ListPlansVariantDetailsSpendLimit, ListPlansVariantDetailsSpendLimit$inboundSchema, ListPlansVariantDetailsThresholdType, ListPlansVariantDetailsThresholdType$inboundSchema, type ListPlansVariantDetailsTier, ListPlansVariantDetailsTier$inboundSchema, ListPlansVariantDetailsTierBehavior, ListPlansVariantDetailsTierBehavior$inboundSchema, type ListPlansVariantDetailsUsageAlert, ListPlansVariantDetailsUsageAlert$inboundSchema, type ListPlansVariantDetailsUsageLimit, ListPlansVariantDetailsUsageLimit$inboundSchema, ListPlansVariantDetailsUsageLimitInterval, ListPlansVariantDetailsUsageLimitInterval$inboundSchema, type ListRewardsDuration, ListRewardsDuration$inboundSchema, type ListRewardsGlobals, type ListRewardsResponse, ListRewardsResponse$inboundSchema, type Migration, type Migration$Outbound, Migration$outboundSchema, type MintKeyGlobals, type MintKeyParams, type MintKeyParams$Outbound, MintKeyParams$outboundSchema, type MintKeyResponse, MintKeyResponse$inboundSchema, type MultiAttachAttachDiscount, type MultiAttachAttachDiscount$Outbound, MultiAttachAttachDiscount$outboundSchema, type MultiAttachBasePrice, type MultiAttachBasePrice$Outbound, MultiAttachBasePrice$outboundSchema, type MultiAttachBillingControls, type MultiAttachBillingControls$Outbound, MultiAttachBillingControls$outboundSchema, MultiAttachBillingMethod, MultiAttachBillingMethod$outboundSchema, MultiAttachCode, MultiAttachCode$inboundSchema, type MultiAttachCustomize, type MultiAttachCustomize$Outbound, MultiAttachCustomize$outboundSchema, MultiAttachDurationType, MultiAttachDurationType$outboundSchema, type MultiAttachEntityData, type MultiAttachEntityData$Outbound, MultiAttachEntityData$outboundSchema, MultiAttachEntityDataInterval, MultiAttachEntityDataInterval$outboundSchema, MultiAttachExpiryDurationType, MultiAttachExpiryDurationType$outboundSchema, type MultiAttachFeatureQuantity, type MultiAttachFeatureQuantity$Outbound, MultiAttachFeatureQuantity$outboundSchema, type MultiAttachFilter, type MultiAttachFilter$Outbound, MultiAttachFilter$outboundSchema, type MultiAttachFreeTrialParams, type MultiAttachFreeTrialParams$Outbound, MultiAttachFreeTrialParams$outboundSchema, type MultiAttachGlobals, type MultiAttachInvoice, MultiAttachInvoice$inboundSchema, type MultiAttachInvoiceMode, type MultiAttachInvoiceMode$Outbound, MultiAttachInvoiceMode$outboundSchema, MultiAttachItemPriceInterval, MultiAttachItemPriceInterval$outboundSchema, MultiAttachLimitType, MultiAttachLimitType$outboundSchema, MultiAttachOnDecrease, MultiAttachOnDecrease$outboundSchema, MultiAttachOnEnd, MultiAttachOnEnd$outboundSchema, MultiAttachOnIncrease, MultiAttachOnIncrease$outboundSchema, type MultiAttachOverageAllowed, type MultiAttachOverageAllowed$Outbound, MultiAttachOverageAllowed$outboundSchema, type MultiAttachParams, type MultiAttachParams$Outbound, MultiAttachParams$outboundSchema, type MultiAttachPlan, type MultiAttachPlan$Outbound, MultiAttachPlan$outboundSchema, type MultiAttachPlanItem, type MultiAttachPlanItem$Outbound, MultiAttachPlanItem$outboundSchema, type MultiAttachPrice, type MultiAttachPrice$Outbound, MultiAttachPrice$outboundSchema, MultiAttachPriceInterval, MultiAttachPriceInterval$outboundSchema, type MultiAttachProperties, type MultiAttachProperties$Outbound, MultiAttachProperties$outboundSchema, type MultiAttachProration, type MultiAttachProration$Outbound, MultiAttachProration$outboundSchema, MultiAttachRedirectMode, MultiAttachRedirectMode$outboundSchema, type MultiAttachRequiredAction, MultiAttachRequiredAction$inboundSchema, type MultiAttachReset, type MultiAttachReset$Outbound, MultiAttachReset$outboundSchema, MultiAttachResetInterval, MultiAttachResetInterval$outboundSchema, type MultiAttachResponse, MultiAttachResponse$inboundSchema, type MultiAttachRollover, type MultiAttachRollover$Outbound, MultiAttachRollover$outboundSchema, type MultiAttachSpendLimit, type MultiAttachSpendLimit$Outbound, MultiAttachSpendLimit$outboundSchema, MultiAttachThresholdType, MultiAttachThresholdType$outboundSchema, type MultiAttachTier, type MultiAttachTier$Outbound, MultiAttachTier$outboundSchema, MultiAttachTierBehavior, MultiAttachTierBehavior$outboundSchema, type MultiAttachTo, type MultiAttachTo$Outbound, MultiAttachTo$outboundSchema, type MultiAttachUsageAlert, type MultiAttachUsageAlert$Outbound, MultiAttachUsageAlert$outboundSchema, type MultiAttachUsageLimit, type MultiAttachUsageLimit$Outbound, MultiAttachUsageLimit$outboundSchema, OnDecrease, OnDecrease$inboundSchema, OnEnd, OnEnd$inboundSchema, OnIncrease, OnIncrease$inboundSchema, type OpenCustomerPortalGlobals, type OpenCustomerPortalParams, type OpenCustomerPortalParams$Outbound, OpenCustomerPortalParams$outboundSchema, type OpenCustomerPortalResponse, OpenCustomerPortalResponse$inboundSchema, type PhaseResponse, PhaseResponse$inboundSchema, type PhaseStart, type PhaseStart$Outbound, PhaseStart$outboundSchema, type PhaseStartUnion, type PhaseStartUnion$Outbound, PhaseStartUnion$outboundSchema, type Plan, Plan$inboundSchema, PlanAddItemBillingMethod, PlanAddItemBillingMethod$inboundSchema, PlanAddItemPriceInterval, PlanAddItemPriceInterval$inboundSchema, PlanAddItemResetInterval, PlanAddItemResetInterval$inboundSchema, type PlanAutoTopup, PlanAutoTopup$inboundSchema, type PlanBillingControls, PlanBillingControls$inboundSchema, type PlanConfig, PlanConfig$inboundSchema, type PlanCreditSchema, PlanCreditSchema$inboundSchema, PlanDurationType, PlanDurationType$inboundSchema, PlanEnv, PlanEnv$inboundSchema, type PlanFeature, PlanFeature$inboundSchema, type PlanFeatureDisplay, PlanFeatureDisplay$inboundSchema, type PlanFilter, PlanFilter$inboundSchema, PlanIntervalRemoveItemEnum1, PlanIntervalRemoveItemEnum1$inboundSchema, PlanIntervalRemoveItemEnum2, PlanIntervalRemoveItemEnum2$inboundSchema, type PlanIntervalUnion, PlanIntervalUnion$inboundSchema, type PlanItem, PlanItem$inboundSchema, PlanItemBillingMethod, PlanItemBillingMethod$inboundSchema, type PlanItemDisplay, PlanItemDisplay$inboundSchema, type PlanItemFilter, PlanItemFilter$inboundSchema, type PlanItemPrice, PlanItemPrice$inboundSchema, type PlanItemReset, PlanItemReset$inboundSchema, type PlanItemRollover, PlanItemRollover$inboundSchema, type PlanItemTier, PlanItemTier$inboundSchema, PlanItemTierBehavior, PlanItemTierBehavior$inboundSchema, type PlanItemTo, PlanItemTo$inboundSchema, PlanLimitType, PlanLimitType$inboundSchema, type PlanOverageAllowed, PlanOverageAllowed$inboundSchema, type PlanPrice, PlanPrice$inboundSchema, type PlanPriceDisplay, PlanPriceDisplay$inboundSchema, PlanPriceInterval, PlanPriceInterval$inboundSchema, PlanPriceItemInterval, PlanPriceItemInterval$inboundSchema, PlanPriceVariantDetailsInterval, PlanPriceVariantDetailsInterval$inboundSchema, type PlanPurchaseLimit, PlanPurchaseLimit$inboundSchema, PlanPurchaseLimitInterval, PlanPurchaseLimitInterval$inboundSchema, PlanRemoveItemBillingMethod, PlanRemoveItemBillingMethod$inboundSchema, PlanResetItemInterval, PlanResetItemInterval$inboundSchema, type PlanSpendLimit, PlanSpendLimit$inboundSchema, PlanStatus, PlanStatus$inboundSchema, PlanThresholdType, PlanThresholdType$inboundSchema, PlanType, PlanType$inboundSchema, type PlanUsageAlert, PlanUsageAlert$inboundSchema, type PlanUsageLimit, PlanUsageLimit$inboundSchema, PlanUsageLimitInterval, PlanUsageLimitInterval$inboundSchema, type PlanVariantDetailsAutoTopup, PlanVariantDetailsAutoTopup$inboundSchema, type PlanVariantDetailsBillingControls, PlanVariantDetailsBillingControls$inboundSchema, PlanVariantDetailsDurationType, PlanVariantDetailsDurationType$inboundSchema, type PlanVariantDetailsFilter, PlanVariantDetailsFilter$inboundSchema, PlanVariantDetailsLimitType, PlanVariantDetailsLimitType$inboundSchema, type PlanVariantDetailsOverageAllowed, PlanVariantDetailsOverageAllowed$inboundSchema, type PlanVariantDetailsPrice, PlanVariantDetailsPrice$inboundSchema, type PlanVariantDetailsPurchaseLimit, PlanVariantDetailsPurchaseLimit$inboundSchema, PlanVariantDetailsPurchaseLimitInterval, PlanVariantDetailsPurchaseLimitInterval$inboundSchema, type PlanVariantDetailsReset, PlanVariantDetailsReset$inboundSchema, type PlanVariantDetailsRollover, PlanVariantDetailsRollover$inboundSchema, type PlanVariantDetailsSpendLimit, PlanVariantDetailsSpendLimit$inboundSchema, PlanVariantDetailsThresholdType, PlanVariantDetailsThresholdType$inboundSchema, type PlanVariantDetailsTier, PlanVariantDetailsTier$inboundSchema, PlanVariantDetailsTierBehavior, PlanVariantDetailsTierBehavior$inboundSchema, type PlanVariantDetailsTo, PlanVariantDetailsTo$inboundSchema, type PlanVariantDetailsUsageAlert, PlanVariantDetailsUsageAlert$inboundSchema, type PlanVariantDetailsUsageLimit, PlanVariantDetailsUsageLimit$inboundSchema, PlanVariantDetailsUsageLimitInterval, PlanVariantDetailsUsageLimitInterval$inboundSchema, type Preview1, Preview1$inboundSchema, type Preview2, Preview2$inboundSchema, PreviewAttachAddItemBillingMethod, PreviewAttachAddItemBillingMethod$outboundSchema, PreviewAttachAddItemExpiryDurationType, PreviewAttachAddItemExpiryDurationType$outboundSchema, PreviewAttachAddItemOnDecrease, PreviewAttachAddItemOnDecrease$outboundSchema, PreviewAttachAddItemOnIncrease, PreviewAttachAddItemOnIncrease$outboundSchema, type PreviewAttachAddItemPlanItem, type PreviewAttachAddItemPlanItem$Outbound, PreviewAttachAddItemPlanItem$outboundSchema, type PreviewAttachAddItemPrice, type PreviewAttachAddItemPrice$Outbound, PreviewAttachAddItemPrice$outboundSchema, PreviewAttachAddItemPriceInterval, PreviewAttachAddItemPriceInterval$outboundSchema, type PreviewAttachAddItemProration, type PreviewAttachAddItemProration$Outbound, PreviewAttachAddItemProration$outboundSchema, type PreviewAttachAddItemReset, type PreviewAttachAddItemReset$Outbound, PreviewAttachAddItemReset$outboundSchema, PreviewAttachAddItemResetInterval, PreviewAttachAddItemResetInterval$outboundSchema, type PreviewAttachAddItemRollover, type PreviewAttachAddItemRollover$Outbound, PreviewAttachAddItemRollover$outboundSchema, type PreviewAttachAddItemTier, type PreviewAttachAddItemTier$Outbound, PreviewAttachAddItemTier$outboundSchema, PreviewAttachAddItemTierBehavior, PreviewAttachAddItemTierBehavior$outboundSchema, type PreviewAttachAddItemTo, type PreviewAttachAddItemTo$Outbound, PreviewAttachAddItemTo$outboundSchema, type PreviewAttachAttachDiscount, type PreviewAttachAttachDiscount$Outbound, PreviewAttachAttachDiscount$outboundSchema, type PreviewAttachAutoTopup, type PreviewAttachAutoTopup$Outbound, PreviewAttachAutoTopup$outboundSchema, type PreviewAttachBasePrice, type PreviewAttachBasePrice$Outbound, PreviewAttachBasePrice$outboundSchema, type PreviewAttachBillingControls, type PreviewAttachBillingControls$Outbound, PreviewAttachBillingControls$outboundSchema, type PreviewAttachCarryOverBalances, type PreviewAttachCarryOverBalances$Outbound, PreviewAttachCarryOverBalances$outboundSchema, type PreviewAttachCarryOverUsages, type PreviewAttachCarryOverUsages$Outbound, PreviewAttachCarryOverUsages$outboundSchema, PreviewAttachCheckoutType, PreviewAttachCheckoutType$inboundSchema, type PreviewAttachCustomLineItem, type PreviewAttachCustomLineItem$Outbound, PreviewAttachCustomLineItem$outboundSchema, type PreviewAttachCustomize, type PreviewAttachCustomize$Outbound, PreviewAttachCustomize$outboundSchema, type PreviewAttachDiscount, PreviewAttachDiscount$inboundSchema, PreviewAttachDurationType, PreviewAttachDurationType$outboundSchema, type PreviewAttachFeatureQuantityRequest, type PreviewAttachFeatureQuantityRequest$Outbound, PreviewAttachFeatureQuantityRequest$outboundSchema, type PreviewAttachFilter, type PreviewAttachFilter$Outbound, PreviewAttachFilter$outboundSchema, type PreviewAttachFreeTrialParams, type PreviewAttachFreeTrialParams$Outbound, PreviewAttachFreeTrialParams$outboundSchema, type PreviewAttachGlobals, type PreviewAttachIncoming, PreviewAttachIncoming$inboundSchema, type PreviewAttachIncomingFeatureQuantity, PreviewAttachIncomingFeatureQuantity$inboundSchema, PreviewAttachIntervalRemoveItemEnum1, PreviewAttachIntervalRemoveItemEnum1$outboundSchema, PreviewAttachIntervalRemoveItemEnum2, PreviewAttachIntervalRemoveItemEnum2$outboundSchema, type PreviewAttachIntervalUnion, type PreviewAttachIntervalUnion$Outbound, PreviewAttachIntervalUnion$outboundSchema, type PreviewAttachInvoiceCredits, PreviewAttachInvoiceCredits$inboundSchema, type PreviewAttachInvoiceMode, type PreviewAttachInvoiceMode$Outbound, PreviewAttachInvoiceMode$outboundSchema, PreviewAttachItemBillingMethod, PreviewAttachItemBillingMethod$outboundSchema, PreviewAttachItemExpiryDurationType, PreviewAttachItemExpiryDurationType$outboundSchema, PreviewAttachItemOnDecrease, PreviewAttachItemOnDecrease$outboundSchema, PreviewAttachItemOnIncrease, PreviewAttachItemOnIncrease$outboundSchema, type PreviewAttachItemPlanItem, type PreviewAttachItemPlanItem$Outbound, PreviewAttachItemPlanItem$outboundSchema, type PreviewAttachItemPrice, type PreviewAttachItemPrice$Outbound, PreviewAttachItemPrice$outboundSchema, PreviewAttachItemPriceInterval, PreviewAttachItemPriceInterval$outboundSchema, type PreviewAttachItemProration, type PreviewAttachItemProration$Outbound, PreviewAttachItemProration$outboundSchema, type PreviewAttachItemReset, type PreviewAttachItemReset$Outbound, PreviewAttachItemReset$outboundSchema, PreviewAttachItemResetInterval, PreviewAttachItemResetInterval$outboundSchema, type PreviewAttachItemRollover, type PreviewAttachItemRollover$Outbound, PreviewAttachItemRollover$outboundSchema, type PreviewAttachItemTier, type PreviewAttachItemTier$Outbound, PreviewAttachItemTier$outboundSchema, PreviewAttachItemTierBehavior, PreviewAttachItemTierBehavior$outboundSchema, type PreviewAttachItemTo, type PreviewAttachItemTo$Outbound, PreviewAttachItemTo$outboundSchema, PreviewAttachLimitType, PreviewAttachLimitType$outboundSchema, type PreviewAttachLineItem, PreviewAttachLineItem$inboundSchema, type PreviewAttachLineItemPeriod, PreviewAttachLineItemPeriod$inboundSchema, type PreviewAttachNextCycle, PreviewAttachNextCycle$inboundSchema, type PreviewAttachNextCycleDiscount, PreviewAttachNextCycleDiscount$inboundSchema, type PreviewAttachNextCycleLineItem, PreviewAttachNextCycleLineItem$inboundSchema, type PreviewAttachNextCycleLineItemPeriod, PreviewAttachNextCycleLineItemPeriod$inboundSchema, PreviewAttachOnEnd, PreviewAttachOnEnd$outboundSchema, type PreviewAttachOutgoing, PreviewAttachOutgoing$inboundSchema, type PreviewAttachOutgoingFeatureQuantity, PreviewAttachOutgoingFeatureQuantity$inboundSchema, type PreviewAttachOverageAllowed, type PreviewAttachOverageAllowed$Outbound, PreviewAttachOverageAllowed$outboundSchema, type PreviewAttachParams, type PreviewAttachParams$Outbound, PreviewAttachParams$outboundSchema, type PreviewAttachPlanItemFilter, type PreviewAttachPlanItemFilter$Outbound, PreviewAttachPlanItemFilter$outboundSchema, PreviewAttachPlanSchedule, PreviewAttachPlanSchedule$outboundSchema, PreviewAttachPriceInterval, PreviewAttachPriceInterval$outboundSchema, type PreviewAttachProperties, type PreviewAttachProperties$Outbound, PreviewAttachProperties$outboundSchema, PreviewAttachProrationBehavior, PreviewAttachProrationBehavior$outboundSchema, type PreviewAttachPurchaseLimit, type PreviewAttachPurchaseLimit$Outbound, PreviewAttachPurchaseLimit$outboundSchema, PreviewAttachPurchaseLimitInterval, PreviewAttachPurchaseLimitInterval$outboundSchema, PreviewAttachRedirectMode, PreviewAttachRedirectMode$outboundSchema, PreviewAttachRemoveItemBillingMethod, PreviewAttachRemoveItemBillingMethod$outboundSchema, type PreviewAttachResponse, PreviewAttachResponse$inboundSchema, type PreviewAttachSpendLimit, type PreviewAttachSpendLimit$Outbound, PreviewAttachSpendLimit$outboundSchema, PreviewAttachStatus, PreviewAttachStatus$inboundSchema, type PreviewAttachTax, PreviewAttachTax$inboundSchema, PreviewAttachThresholdType, PreviewAttachThresholdType$outboundSchema, type PreviewAttachUsageAlert, type PreviewAttachUsageAlert$Outbound, PreviewAttachUsageAlert$outboundSchema, type PreviewAttachUsageLimit, type PreviewAttachUsageLimit$Outbound, PreviewAttachUsageLimit$outboundSchema, PreviewAttachUsageLimitInterval, PreviewAttachUsageLimitInterval$outboundSchema, type PreviewAttachUsageLineItem, PreviewAttachUsageLineItem$inboundSchema, type PreviewAttachUsageLineItemPeriod, PreviewAttachUsageLineItemPeriod$inboundSchema, type PreviewMultiAttachAttachDiscount, type PreviewMultiAttachAttachDiscount$Outbound, PreviewMultiAttachAttachDiscount$outboundSchema, type PreviewMultiAttachBasePrice, type PreviewMultiAttachBasePrice$Outbound, PreviewMultiAttachBasePrice$outboundSchema, type PreviewMultiAttachBillingControls, type PreviewMultiAttachBillingControls$Outbound, PreviewMultiAttachBillingControls$outboundSchema, PreviewMultiAttachBillingMethod, PreviewMultiAttachBillingMethod$outboundSchema, PreviewMultiAttachCheckoutType, PreviewMultiAttachCheckoutType$inboundSchema, type PreviewMultiAttachCustomize, type PreviewMultiAttachCustomize$Outbound, PreviewMultiAttachCustomize$outboundSchema, type PreviewMultiAttachDiscount, PreviewMultiAttachDiscount$inboundSchema, PreviewMultiAttachDurationType, PreviewMultiAttachDurationType$outboundSchema, type PreviewMultiAttachEntityData, type PreviewMultiAttachEntityData$Outbound, PreviewMultiAttachEntityData$outboundSchema, PreviewMultiAttachEntityDataInterval, PreviewMultiAttachEntityDataInterval$outboundSchema, PreviewMultiAttachExpiryDurationType, PreviewMultiAttachExpiryDurationType$outboundSchema, type PreviewMultiAttachFilter, type PreviewMultiAttachFilter$Outbound, PreviewMultiAttachFilter$outboundSchema, type PreviewMultiAttachFreeTrialParams, type PreviewMultiAttachFreeTrialParams$Outbound, PreviewMultiAttachFreeTrialParams$outboundSchema, type PreviewMultiAttachGlobals, type PreviewMultiAttachIncoming, PreviewMultiAttachIncoming$inboundSchema, type PreviewMultiAttachIncomingFeatureQuantity, PreviewMultiAttachIncomingFeatureQuantity$inboundSchema, type PreviewMultiAttachInvoiceCredits, PreviewMultiAttachInvoiceCredits$inboundSchema, type PreviewMultiAttachInvoiceMode, type PreviewMultiAttachInvoiceMode$Outbound, PreviewMultiAttachInvoiceMode$outboundSchema, PreviewMultiAttachItemPriceInterval, PreviewMultiAttachItemPriceInterval$outboundSchema, PreviewMultiAttachLimitType, PreviewMultiAttachLimitType$outboundSchema, type PreviewMultiAttachLineItem, PreviewMultiAttachLineItem$inboundSchema, type PreviewMultiAttachLineItemPeriod, PreviewMultiAttachLineItemPeriod$inboundSchema, type PreviewMultiAttachNextCycle, PreviewMultiAttachNextCycle$inboundSchema, type PreviewMultiAttachNextCycleDiscount, PreviewMultiAttachNextCycleDiscount$inboundSchema, type PreviewMultiAttachNextCycleLineItem, PreviewMultiAttachNextCycleLineItem$inboundSchema, type PreviewMultiAttachNextCycleLineItemPeriod, PreviewMultiAttachNextCycleLineItemPeriod$inboundSchema, PreviewMultiAttachOnDecrease, PreviewMultiAttachOnDecrease$outboundSchema, PreviewMultiAttachOnEnd, PreviewMultiAttachOnEnd$outboundSchema, PreviewMultiAttachOnIncrease, PreviewMultiAttachOnIncrease$outboundSchema, type PreviewMultiAttachOutgoing, PreviewMultiAttachOutgoing$inboundSchema, type PreviewMultiAttachOutgoingFeatureQuantity, PreviewMultiAttachOutgoingFeatureQuantity$inboundSchema, type PreviewMultiAttachOverageAllowed, type PreviewMultiAttachOverageAllowed$Outbound, PreviewMultiAttachOverageAllowed$outboundSchema, type PreviewMultiAttachParams, type PreviewMultiAttachParams$Outbound, PreviewMultiAttachParams$outboundSchema, type PreviewMultiAttachPlan, type PreviewMultiAttachPlan$Outbound, PreviewMultiAttachPlan$outboundSchema, type PreviewMultiAttachPlanFeatureQuantity, type PreviewMultiAttachPlanFeatureQuantity$Outbound, PreviewMultiAttachPlanFeatureQuantity$outboundSchema, type PreviewMultiAttachPlanItem, type PreviewMultiAttachPlanItem$Outbound, PreviewMultiAttachPlanItem$outboundSchema, type PreviewMultiAttachPrice, type PreviewMultiAttachPrice$Outbound, PreviewMultiAttachPrice$outboundSchema, PreviewMultiAttachPriceInterval, PreviewMultiAttachPriceInterval$outboundSchema, type PreviewMultiAttachProperties, type PreviewMultiAttachProperties$Outbound, PreviewMultiAttachProperties$outboundSchema, type PreviewMultiAttachProration, type PreviewMultiAttachProration$Outbound, PreviewMultiAttachProration$outboundSchema, PreviewMultiAttachRedirectMode, PreviewMultiAttachRedirectMode$outboundSchema, type PreviewMultiAttachReset, type PreviewMultiAttachReset$Outbound, PreviewMultiAttachReset$outboundSchema, PreviewMultiAttachResetInterval, PreviewMultiAttachResetInterval$outboundSchema, type PreviewMultiAttachResponse, PreviewMultiAttachResponse$inboundSchema, type PreviewMultiAttachRollover, type PreviewMultiAttachRollover$Outbound, PreviewMultiAttachRollover$outboundSchema, type PreviewMultiAttachSpendLimit, type PreviewMultiAttachSpendLimit$Outbound, PreviewMultiAttachSpendLimit$outboundSchema, PreviewMultiAttachStatus, PreviewMultiAttachStatus$inboundSchema, type PreviewMultiAttachTax, PreviewMultiAttachTax$inboundSchema, PreviewMultiAttachThresholdType, PreviewMultiAttachThresholdType$outboundSchema, type PreviewMultiAttachTier, type PreviewMultiAttachTier$Outbound, PreviewMultiAttachTier$outboundSchema, PreviewMultiAttachTierBehavior, PreviewMultiAttachTierBehavior$outboundSchema, type PreviewMultiAttachTo, type PreviewMultiAttachTo$Outbound, PreviewMultiAttachTo$outboundSchema, type PreviewMultiAttachUsageAlert, type PreviewMultiAttachUsageAlert$Outbound, PreviewMultiAttachUsageAlert$outboundSchema, type PreviewMultiAttachUsageLimit, type PreviewMultiAttachUsageLimit$Outbound, PreviewMultiAttachUsageLimit$outboundSchema, type PreviewMultiAttachUsageLineItem, PreviewMultiAttachUsageLineItem$inboundSchema, type PreviewMultiAttachUsageLineItemPeriod, PreviewMultiAttachUsageLineItemPeriod$inboundSchema, PreviewUpdateAddItemBillingMethod, PreviewUpdateAddItemBillingMethod$outboundSchema, PreviewUpdateAddItemExpiryDurationType, PreviewUpdateAddItemExpiryDurationType$outboundSchema, PreviewUpdateAddItemOnDecrease, PreviewUpdateAddItemOnDecrease$outboundSchema, PreviewUpdateAddItemOnIncrease, PreviewUpdateAddItemOnIncrease$outboundSchema, type PreviewUpdateAddItemPlanItem, type PreviewUpdateAddItemPlanItem$Outbound, PreviewUpdateAddItemPlanItem$outboundSchema, type PreviewUpdateAddItemPrice, type PreviewUpdateAddItemPrice$Outbound, PreviewUpdateAddItemPrice$outboundSchema, PreviewUpdateAddItemPriceInterval, PreviewUpdateAddItemPriceInterval$outboundSchema, type PreviewUpdateAddItemProration, type PreviewUpdateAddItemProration$Outbound, PreviewUpdateAddItemProration$outboundSchema, type PreviewUpdateAddItemReset, type PreviewUpdateAddItemReset$Outbound, PreviewUpdateAddItemReset$outboundSchema, PreviewUpdateAddItemResetInterval, PreviewUpdateAddItemResetInterval$outboundSchema, type PreviewUpdateAddItemRollover, type PreviewUpdateAddItemRollover$Outbound, PreviewUpdateAddItemRollover$outboundSchema, type PreviewUpdateAddItemTier, type PreviewUpdateAddItemTier$Outbound, PreviewUpdateAddItemTier$outboundSchema, PreviewUpdateAddItemTierBehavior, PreviewUpdateAddItemTierBehavior$outboundSchema, type PreviewUpdateAddItemTo, type PreviewUpdateAddItemTo$Outbound, PreviewUpdateAddItemTo$outboundSchema, type PreviewUpdateAttachDiscount, type PreviewUpdateAttachDiscount$Outbound, PreviewUpdateAttachDiscount$outboundSchema, type PreviewUpdateAutoTopup, type PreviewUpdateAutoTopup$Outbound, PreviewUpdateAutoTopup$outboundSchema, type PreviewUpdateBasePrice, type PreviewUpdateBasePrice$Outbound, PreviewUpdateBasePrice$outboundSchema, type PreviewUpdateBillingControls, type PreviewUpdateBillingControls$Outbound, PreviewUpdateBillingControls$outboundSchema, PreviewUpdateCancelAction, PreviewUpdateCancelAction$outboundSchema, type PreviewUpdateCarryOverUsages, type PreviewUpdateCarryOverUsages$Outbound, PreviewUpdateCarryOverUsages$outboundSchema, type PreviewUpdateCustomize, type PreviewUpdateCustomize$Outbound, PreviewUpdateCustomize$outboundSchema, type PreviewUpdateDiscount, PreviewUpdateDiscount$inboundSchema, PreviewUpdateDurationType, PreviewUpdateDurationType$outboundSchema, type PreviewUpdateFeatureQuantityRequest, type PreviewUpdateFeatureQuantityRequest$Outbound, PreviewUpdateFeatureQuantityRequest$outboundSchema, type PreviewUpdateFilter, type PreviewUpdateFilter$Outbound, PreviewUpdateFilter$outboundSchema, type PreviewUpdateFreeTrialParams, type PreviewUpdateFreeTrialParams$Outbound, PreviewUpdateFreeTrialParams$outboundSchema, type PreviewUpdateGlobals, type PreviewUpdateIncoming, PreviewUpdateIncoming$inboundSchema, type PreviewUpdateIncomingFeatureQuantity, PreviewUpdateIncomingFeatureQuantity$inboundSchema, PreviewUpdateIntervalRemoveItemEnum1, PreviewUpdateIntervalRemoveItemEnum1$outboundSchema, PreviewUpdateIntervalRemoveItemEnum2, PreviewUpdateIntervalRemoveItemEnum2$outboundSchema, type PreviewUpdateIntervalUnion, type PreviewUpdateIntervalUnion$Outbound, PreviewUpdateIntervalUnion$outboundSchema, type PreviewUpdateInvoiceCredits, PreviewUpdateInvoiceCredits$inboundSchema, type PreviewUpdateInvoiceMode, type PreviewUpdateInvoiceMode$Outbound, PreviewUpdateInvoiceMode$outboundSchema, PreviewUpdateItemBillingMethod, PreviewUpdateItemBillingMethod$outboundSchema, PreviewUpdateItemExpiryDurationType, PreviewUpdateItemExpiryDurationType$outboundSchema, PreviewUpdateItemOnDecrease, PreviewUpdateItemOnDecrease$outboundSchema, PreviewUpdateItemOnIncrease, PreviewUpdateItemOnIncrease$outboundSchema, type PreviewUpdateItemPlanItem, type PreviewUpdateItemPlanItem$Outbound, PreviewUpdateItemPlanItem$outboundSchema, type PreviewUpdateItemPrice, type PreviewUpdateItemPrice$Outbound, PreviewUpdateItemPrice$outboundSchema, PreviewUpdateItemPriceInterval, PreviewUpdateItemPriceInterval$outboundSchema, type PreviewUpdateItemProration, type PreviewUpdateItemProration$Outbound, PreviewUpdateItemProration$outboundSchema, type PreviewUpdateItemReset, type PreviewUpdateItemReset$Outbound, PreviewUpdateItemReset$outboundSchema, PreviewUpdateItemResetInterval, PreviewUpdateItemResetInterval$outboundSchema, type PreviewUpdateItemRollover, type PreviewUpdateItemRollover$Outbound, PreviewUpdateItemRollover$outboundSchema, type PreviewUpdateItemTier, type PreviewUpdateItemTier$Outbound, PreviewUpdateItemTier$outboundSchema, PreviewUpdateItemTierBehavior, PreviewUpdateItemTierBehavior$outboundSchema, type PreviewUpdateItemTo, type PreviewUpdateItemTo$Outbound, PreviewUpdateItemTo$outboundSchema, PreviewUpdateLimitType, PreviewUpdateLimitType$outboundSchema, type PreviewUpdateLineItem, PreviewUpdateLineItem$inboundSchema, type PreviewUpdateLineItemPeriod, PreviewUpdateLineItemPeriod$inboundSchema, type PreviewUpdateNextCycle, PreviewUpdateNextCycle$inboundSchema, type PreviewUpdateNextCycleDiscount, PreviewUpdateNextCycleDiscount$inboundSchema, type PreviewUpdateNextCycleLineItem, PreviewUpdateNextCycleLineItem$inboundSchema, type PreviewUpdateNextCycleLineItemPeriod, PreviewUpdateNextCycleLineItemPeriod$inboundSchema, PreviewUpdateOnEnd, PreviewUpdateOnEnd$outboundSchema, type PreviewUpdateOutgoing, PreviewUpdateOutgoing$inboundSchema, type PreviewUpdateOutgoingFeatureQuantity, PreviewUpdateOutgoingFeatureQuantity$inboundSchema, type PreviewUpdateOverageAllowed, type PreviewUpdateOverageAllowed$Outbound, PreviewUpdateOverageAllowed$outboundSchema, type PreviewUpdateParams, type PreviewUpdateParams$Outbound, PreviewUpdateParams$outboundSchema, type PreviewUpdatePlanItemFilter, type PreviewUpdatePlanItemFilter$Outbound, PreviewUpdatePlanItemFilter$outboundSchema, PreviewUpdatePriceInterval, PreviewUpdatePriceInterval$outboundSchema, type PreviewUpdateProperties, type PreviewUpdateProperties$Outbound, PreviewUpdateProperties$outboundSchema, PreviewUpdateProrationBehavior, PreviewUpdateProrationBehavior$outboundSchema, type PreviewUpdatePurchaseLimit, type PreviewUpdatePurchaseLimit$Outbound, PreviewUpdatePurchaseLimit$outboundSchema, PreviewUpdatePurchaseLimitInterval, PreviewUpdatePurchaseLimitInterval$outboundSchema, type PreviewUpdateRecalculateBalances, type PreviewUpdateRecalculateBalances$Outbound, PreviewUpdateRecalculateBalances$outboundSchema, PreviewUpdateRedirectMode, PreviewUpdateRedirectMode$outboundSchema, PreviewUpdateRefundLastPayment, PreviewUpdateRefundLastPayment$outboundSchema, PreviewUpdateRemoveItemBillingMethod, PreviewUpdateRemoveItemBillingMethod$outboundSchema, type PreviewUpdateResponse, PreviewUpdateResponse$inboundSchema, type PreviewUpdateSpendLimit, type PreviewUpdateSpendLimit$Outbound, PreviewUpdateSpendLimit$outboundSchema, PreviewUpdateStatus, PreviewUpdateStatus$inboundSchema, type PreviewUpdateTax, PreviewUpdateTax$inboundSchema, PreviewUpdateThresholdType, PreviewUpdateThresholdType$outboundSchema, type PreviewUpdateUsageAlert, type PreviewUpdateUsageAlert$Outbound, PreviewUpdateUsageAlert$outboundSchema, type PreviewUpdateUsageLimit, type PreviewUpdateUsageLimit$Outbound, PreviewUpdateUsageLimit$outboundSchema, PreviewUpdateUsageLimitInterval, PreviewUpdateUsageLimitInterval$outboundSchema, type PreviewUpdateUsageLineItem, PreviewUpdateUsageLineItem$inboundSchema, type PreviewUpdateUsageLineItemPeriod, PreviewUpdateUsageLineItemPeriod$inboundSchema, PriceVariantInterval, PriceVariantInterval$outboundSchema, ProcessorType, ProcessorType$inboundSchema, type Processors, Processors$inboundSchema, type ProductDisplay1, ProductDisplay1$inboundSchema, type ProductDisplay2, ProductDisplay2$inboundSchema, ProductScenario1, ProductScenario1$inboundSchema, ProductScenario2, ProductScenario2$inboundSchema, ProductType1, ProductType1$inboundSchema, ProductType2, ProductType2$inboundSchema, type Properties, type Properties$Outbound, Properties$outboundSchema, type Proration, Proration$inboundSchema, type Purchase, Purchase$inboundSchema, PurchaseScope, PurchaseScope$inboundSchema, Range, Range$outboundSchema, type RedeemReferralCodeGlobals, type RedeemReferralCodeParams, type RedeemReferralCodeParams$Outbound, RedeemReferralCodeParams$outboundSchema, type RedeemReferralCodeResponse, RedeemReferralCodeResponse$inboundSchema, type RedeemRewardCodeGlobals, type RedeemRewardCodeParams, type RedeemRewardCodeParams$Outbound, RedeemRewardCodeParams$outboundSchema, type RedeemRewardCodeResponse, RedeemRewardCodeResponse$inboundSchema, type Referral, Referral$inboundSchema, type ReferralCustomer, ReferralCustomer$inboundSchema, type RefreshKeyGlobals, type RefreshKeyParams, type RefreshKeyParams$Outbound, RefreshKeyParams$outboundSchema, type RefreshKeyResponse, RefreshKeyResponse$inboundSchema, RequestAbortedError, type RequestBody, type RequestBody$Outbound, RequestBody$outboundSchema, RequestTimeoutError, ResponseValidationError, type Result, Result$inboundSchema, type Revenuecat, Revenuecat$inboundSchema, type RevokeKeyGlobals, type RevokeKeyParams, type RevokeKeyParams$Outbound, RevokeKeyParams$outboundSchema, type RevokeKeyResponse, RevokeKeyResponse$inboundSchema, type Rewards$1 as Rewards, Rewards$inboundSchema, type RewardsListParams, type RewardsListParams$Outbound, RewardsListParams$outboundSchema, type SDKOptions, SDKValidationError, SDK_METADATA, Scenario1, Scenario1$inboundSchema, Scenario2, Scenario2$inboundSchema, type Security, type Security$Outbound, Security$outboundSchema, ServerList, SetupPaymentAddItemBillingMethod, SetupPaymentAddItemBillingMethod$outboundSchema, SetupPaymentAddItemExpiryDurationType, SetupPaymentAddItemExpiryDurationType$outboundSchema, SetupPaymentAddItemOnDecrease, SetupPaymentAddItemOnDecrease$outboundSchema, SetupPaymentAddItemOnIncrease, SetupPaymentAddItemOnIncrease$outboundSchema, type SetupPaymentAddItemPlanItem, type SetupPaymentAddItemPlanItem$Outbound, SetupPaymentAddItemPlanItem$outboundSchema, type SetupPaymentAddItemPrice, type SetupPaymentAddItemPrice$Outbound, SetupPaymentAddItemPrice$outboundSchema, SetupPaymentAddItemPriceInterval, SetupPaymentAddItemPriceInterval$outboundSchema, type SetupPaymentAddItemProration, type SetupPaymentAddItemProration$Outbound, SetupPaymentAddItemProration$outboundSchema, type SetupPaymentAddItemReset, type SetupPaymentAddItemReset$Outbound, SetupPaymentAddItemReset$outboundSchema, SetupPaymentAddItemResetInterval, SetupPaymentAddItemResetInterval$outboundSchema, type SetupPaymentAddItemRollover, type SetupPaymentAddItemRollover$Outbound, SetupPaymentAddItemRollover$outboundSchema, type SetupPaymentAddItemTier, type SetupPaymentAddItemTier$Outbound, SetupPaymentAddItemTier$outboundSchema, SetupPaymentAddItemTierBehavior, SetupPaymentAddItemTierBehavior$outboundSchema, type SetupPaymentAddItemTo, type SetupPaymentAddItemTo$Outbound, SetupPaymentAddItemTo$outboundSchema, type SetupPaymentAttachDiscount, type SetupPaymentAttachDiscount$Outbound, SetupPaymentAttachDiscount$outboundSchema, type SetupPaymentAutoTopup, type SetupPaymentAutoTopup$Outbound, SetupPaymentAutoTopup$outboundSchema, type SetupPaymentBasePrice, type SetupPaymentBasePrice$Outbound, SetupPaymentBasePrice$outboundSchema, type SetupPaymentBillingControls, type SetupPaymentBillingControls$Outbound, SetupPaymentBillingControls$outboundSchema, type SetupPaymentCarryOverBalances, type SetupPaymentCarryOverBalances$Outbound, SetupPaymentCarryOverBalances$outboundSchema, type SetupPaymentCarryOverUsages, type SetupPaymentCarryOverUsages$Outbound, SetupPaymentCarryOverUsages$outboundSchema, type SetupPaymentCustomLineItem, type SetupPaymentCustomLineItem$Outbound, SetupPaymentCustomLineItem$outboundSchema, type SetupPaymentCustomize, type SetupPaymentCustomize$Outbound, SetupPaymentCustomize$outboundSchema, SetupPaymentDurationType, SetupPaymentDurationType$outboundSchema, type SetupPaymentFeatureQuantity, type SetupPaymentFeatureQuantity$Outbound, SetupPaymentFeatureQuantity$outboundSchema, type SetupPaymentFilter, type SetupPaymentFilter$Outbound, SetupPaymentFilter$outboundSchema, type SetupPaymentFreeTrialParams, type SetupPaymentFreeTrialParams$Outbound, SetupPaymentFreeTrialParams$outboundSchema, type SetupPaymentGlobals, SetupPaymentIntervalRemoveItemEnum1, SetupPaymentIntervalRemoveItemEnum1$outboundSchema, SetupPaymentIntervalRemoveItemEnum2, SetupPaymentIntervalRemoveItemEnum2$outboundSchema, type SetupPaymentIntervalUnion, type SetupPaymentIntervalUnion$Outbound, SetupPaymentIntervalUnion$outboundSchema, SetupPaymentItemBillingMethod, SetupPaymentItemBillingMethod$outboundSchema, SetupPaymentItemExpiryDurationType, SetupPaymentItemExpiryDurationType$outboundSchema, SetupPaymentItemOnDecrease, SetupPaymentItemOnDecrease$outboundSchema, SetupPaymentItemOnIncrease, SetupPaymentItemOnIncrease$outboundSchema, type SetupPaymentItemPlanItem, type SetupPaymentItemPlanItem$Outbound, SetupPaymentItemPlanItem$outboundSchema, type SetupPaymentItemPrice, type SetupPaymentItemPrice$Outbound, SetupPaymentItemPrice$outboundSchema, SetupPaymentItemPriceInterval, SetupPaymentItemPriceInterval$outboundSchema, type SetupPaymentItemProration, type SetupPaymentItemProration$Outbound, SetupPaymentItemProration$outboundSchema, type SetupPaymentItemReset, type SetupPaymentItemReset$Outbound, SetupPaymentItemReset$outboundSchema, SetupPaymentItemResetInterval, SetupPaymentItemResetInterval$outboundSchema, type SetupPaymentItemRollover, type SetupPaymentItemRollover$Outbound, SetupPaymentItemRollover$outboundSchema, type SetupPaymentItemTier, type SetupPaymentItemTier$Outbound, SetupPaymentItemTier$outboundSchema, SetupPaymentItemTierBehavior, SetupPaymentItemTierBehavior$outboundSchema, type SetupPaymentItemTo, type SetupPaymentItemTo$Outbound, SetupPaymentItemTo$outboundSchema, SetupPaymentLimitType, SetupPaymentLimitType$outboundSchema, SetupPaymentOnEnd, SetupPaymentOnEnd$outboundSchema, type SetupPaymentOverageAllowed, type SetupPaymentOverageAllowed$Outbound, SetupPaymentOverageAllowed$outboundSchema, type SetupPaymentParams, type SetupPaymentParams$Outbound, SetupPaymentParams$outboundSchema, type SetupPaymentPlanItemFilter, type SetupPaymentPlanItemFilter$Outbound, SetupPaymentPlanItemFilter$outboundSchema, SetupPaymentPriceInterval, SetupPaymentPriceInterval$outboundSchema, type SetupPaymentProperties, type SetupPaymentProperties$Outbound, SetupPaymentProperties$outboundSchema, SetupPaymentProrationBehavior, SetupPaymentProrationBehavior$outboundSchema, type SetupPaymentPurchaseLimit, type SetupPaymentPurchaseLimit$Outbound, SetupPaymentPurchaseLimit$outboundSchema, SetupPaymentPurchaseLimitInterval, SetupPaymentPurchaseLimitInterval$outboundSchema, SetupPaymentRemoveItemBillingMethod, SetupPaymentRemoveItemBillingMethod$outboundSchema, type SetupPaymentResponse, SetupPaymentResponse$inboundSchema, type SetupPaymentSpendLimit, type SetupPaymentSpendLimit$Outbound, SetupPaymentSpendLimit$outboundSchema, SetupPaymentThresholdType, SetupPaymentThresholdType$outboundSchema, type SetupPaymentUsageAlert, type SetupPaymentUsageAlert$Outbound, SetupPaymentUsageAlert$outboundSchema, type SetupPaymentUsageLimit, type SetupPaymentUsageLimit$Outbound, SetupPaymentUsageLimit$outboundSchema, SetupPaymentUsageLimitInterval, SetupPaymentUsageLimitInterval$outboundSchema, type StartingAfter2, type StartingAfter2$Outbound, StartingAfter2$outboundSchema, type StartsAt2, type StartsAt2$Outbound, StartsAt2$outboundSchema, StorePush, StorePush$inboundSchema, type Stripe, Stripe$inboundSchema, type Subscription, Subscription$inboundSchema, SubscriptionScope, SubscriptionScope$inboundSchema, type SyncRevenueCatApp, SyncRevenueCatApp$inboundSchema, SyncRevenueCatEnv, SyncRevenueCatEnv$outboundSchema, type SyncRevenueCatGlobals, type SyncRevenueCatParams, type SyncRevenueCatParams$Outbound, SyncRevenueCatParams$outboundSchema, SyncRevenueCatPrice, SyncRevenueCatPrice$inboundSchema, SyncRevenueCatProduct, SyncRevenueCatProduct$inboundSchema, type SyncRevenueCatResponse, SyncRevenueCatResponse$inboundSchema, SyncRevenueCatStatus, SyncRevenueCatStatus$inboundSchema, type Total, Total$inboundSchema, type TrackDeduction1, TrackDeduction1$inboundSchema, type TrackDeduction2, TrackDeduction2$inboundSchema, type TrackGlobals, TrackIntervalEnum1, TrackIntervalEnum1$inboundSchema, TrackIntervalEnum2, TrackIntervalEnum2$inboundSchema, type TrackIntervalUnion1, TrackIntervalUnion1$inboundSchema, type TrackIntervalUnion2, TrackIntervalUnion2$inboundSchema, type TrackLock, type TrackLock$Outbound, TrackLock$outboundSchema, type TrackParams, type TrackParams$Outbound, TrackParams$outboundSchema, type TrackReset1, TrackReset1$inboundSchema, type TrackReset2, TrackReset2$inboundSchema, type TrackResponse, TrackResponse$inboundSchema, type TrackResponseBody1, TrackResponseBody1$inboundSchema, type TrackResponseBody2, TrackResponseBody2$inboundSchema, type TrackTokensDeduction1, TrackTokensDeduction1$inboundSchema, type TrackTokensDeduction2, TrackTokensDeduction2$inboundSchema, type TrackTokensGlobals, TrackTokensIntervalEnum1, TrackTokensIntervalEnum1$inboundSchema, TrackTokensIntervalEnum2, TrackTokensIntervalEnum2$inboundSchema, type TrackTokensIntervalUnion1, TrackTokensIntervalUnion1$inboundSchema, type TrackTokensIntervalUnion2, TrackTokensIntervalUnion2$inboundSchema, type TrackTokensParams, type TrackTokensParams$Outbound, TrackTokensParams$outboundSchema, type TrackTokensReset1, TrackTokensReset1$inboundSchema, type TrackTokensReset2, TrackTokensReset2$inboundSchema, type TrackTokensResponse, TrackTokensResponse$inboundSchema, type TrackTokensResponseBody1, TrackTokensResponseBody1$inboundSchema, type TrackTokensResponseBody2, TrackTokensResponseBody2$inboundSchema, type TrialsUsed, TrialsUsed$inboundSchema, UnexpectedClientError, type UpdateBalanceGlobals, UpdateBalanceInterval, UpdateBalanceInterval$outboundSchema, type UpdateBalanceParams, type UpdateBalanceParams$Outbound, UpdateBalanceParams$outboundSchema, type UpdateBalanceResponse, UpdateBalanceResponse$inboundSchema, type UpdateCustomerAutoTopupRequest, type UpdateCustomerAutoTopupRequest$Outbound, UpdateCustomerAutoTopupRequest$outboundSchema, type UpdateCustomerAutoTopupResponse, UpdateCustomerAutoTopupResponse$inboundSchema, type UpdateCustomerBillingControlsRequest, type UpdateCustomerBillingControlsRequest$Outbound, UpdateCustomerBillingControlsRequest$outboundSchema, type UpdateCustomerBillingControlsResponse, UpdateCustomerBillingControlsResponse$inboundSchema, type UpdateCustomerConfigRequest, type UpdateCustomerConfigRequest$Outbound, UpdateCustomerConfigRequest$outboundSchema, type UpdateCustomerConfigResponse, UpdateCustomerConfigResponse$inboundSchema, type UpdateCustomerCreditSchema, UpdateCustomerCreditSchema$inboundSchema, type UpdateCustomerDisplay, UpdateCustomerDisplay$inboundSchema, UpdateCustomerEnv, UpdateCustomerEnv$inboundSchema, type UpdateCustomerFeature, UpdateCustomerFeature$inboundSchema, type UpdateCustomerFilterRequest, type UpdateCustomerFilterRequest$Outbound, UpdateCustomerFilterRequest$outboundSchema, type UpdateCustomerFilterResponse, UpdateCustomerFilterResponse$inboundSchema, type UpdateCustomerFlags, UpdateCustomerFlags$inboundSchema, type UpdateCustomerGlobals, UpdateCustomerLimitTypeRequestBody, UpdateCustomerLimitTypeRequestBody$outboundSchema, UpdateCustomerLimitTypeResponse, UpdateCustomerLimitTypeResponse$inboundSchema, type UpdateCustomerModelMarkups, UpdateCustomerModelMarkups$inboundSchema, type UpdateCustomerOverageAllowedRequest, type UpdateCustomerOverageAllowedRequest$Outbound, UpdateCustomerOverageAllowedRequest$outboundSchema, type UpdateCustomerOverageAllowedResponse, UpdateCustomerOverageAllowedResponse$inboundSchema, type UpdateCustomerParams, type UpdateCustomerParams$Outbound, UpdateCustomerParams$outboundSchema, type UpdateCustomerProcessors, UpdateCustomerProcessors$inboundSchema, type UpdateCustomerProperties, type UpdateCustomerProperties$Outbound, UpdateCustomerProperties$outboundSchema, type UpdateCustomerProviderMarkups, UpdateCustomerProviderMarkups$inboundSchema, type UpdateCustomerPurchase, UpdateCustomerPurchase$inboundSchema, UpdateCustomerPurchaseLimitIntervalRequestBody, UpdateCustomerPurchaseLimitIntervalRequestBody$outboundSchema, UpdateCustomerPurchaseLimitIntervalResponse1, UpdateCustomerPurchaseLimitIntervalResponse1$inboundSchema, UpdateCustomerPurchaseLimitIntervalResponse2, UpdateCustomerPurchaseLimitIntervalResponse2$inboundSchema, type UpdateCustomerPurchaseLimitRequest, type UpdateCustomerPurchaseLimitRequest$Outbound, UpdateCustomerPurchaseLimitRequest$outboundSchema, type UpdateCustomerPurchaseLimitResponse1, UpdateCustomerPurchaseLimitResponse1$inboundSchema, type UpdateCustomerPurchaseLimitResponse2, UpdateCustomerPurchaseLimitResponse2$inboundSchema, type UpdateCustomerPurchaseLimitUnion, UpdateCustomerPurchaseLimitUnion$inboundSchema, UpdateCustomerPurchaseScope, UpdateCustomerPurchaseScope$inboundSchema, type UpdateCustomerResponse, UpdateCustomerResponse$inboundSchema, type UpdateCustomerRevenuecat, UpdateCustomerRevenuecat$inboundSchema, type UpdateCustomerSpendLimitRequest, type UpdateCustomerSpendLimitRequest$Outbound, UpdateCustomerSpendLimitRequest$outboundSchema, type UpdateCustomerSpendLimitResponse, UpdateCustomerSpendLimitResponse$inboundSchema, UpdateCustomerStatus, UpdateCustomerStatus$inboundSchema, type UpdateCustomerStripe, UpdateCustomerStripe$inboundSchema, type UpdateCustomerSubscription, UpdateCustomerSubscription$inboundSchema, UpdateCustomerSubscriptionScope, UpdateCustomerSubscriptionScope$inboundSchema, UpdateCustomerThresholdTypeRequestBody, UpdateCustomerThresholdTypeRequestBody$outboundSchema, UpdateCustomerThresholdTypeResponse, UpdateCustomerThresholdTypeResponse$inboundSchema, UpdateCustomerType, UpdateCustomerType$inboundSchema, type UpdateCustomerUsageAlertRequestBody, type UpdateCustomerUsageAlertRequestBody$Outbound, UpdateCustomerUsageAlertRequestBody$outboundSchema, type UpdateCustomerUsageAlertResponse, UpdateCustomerUsageAlertResponse$inboundSchema, UpdateCustomerUsageLimitIntervalRequestBody, UpdateCustomerUsageLimitIntervalRequestBody$outboundSchema, UpdateCustomerUsageLimitIntervalResponse, UpdateCustomerUsageLimitIntervalResponse$inboundSchema, type UpdateCustomerUsageLimitRequest, type UpdateCustomerUsageLimitRequest$Outbound, UpdateCustomerUsageLimitRequest$outboundSchema, type UpdateCustomerUsageLimitResponse, UpdateCustomerUsageLimitResponse$inboundSchema, type UpdateCustomerVercel, UpdateCustomerVercel$inboundSchema, type UpdateEntityBillingControlsRequest, type UpdateEntityBillingControlsRequest$Outbound, UpdateEntityBillingControlsRequest$outboundSchema, type UpdateEntityBillingControlsResponse, UpdateEntityBillingControlsResponse$inboundSchema, type UpdateEntityCreditSchema, UpdateEntityCreditSchema$inboundSchema, type UpdateEntityDisplay, UpdateEntityDisplay$inboundSchema, UpdateEntityEnv, UpdateEntityEnv$inboundSchema, type UpdateEntityFeature, UpdateEntityFeature$inboundSchema, type UpdateEntityFilterRequest, type UpdateEntityFilterRequest$Outbound, UpdateEntityFilterRequest$outboundSchema, type UpdateEntityFilterResponse, UpdateEntityFilterResponse$inboundSchema, type UpdateEntityFlags, UpdateEntityFlags$inboundSchema, type UpdateEntityGlobals, UpdateEntityIntervalRequestBody, UpdateEntityIntervalRequestBody$outboundSchema, UpdateEntityIntervalResponse, UpdateEntityIntervalResponse$inboundSchema, type UpdateEntityInvoice, UpdateEntityInvoice$inboundSchema, UpdateEntityLimitTypeRequestBody, UpdateEntityLimitTypeRequestBody$outboundSchema, UpdateEntityLimitTypeResponse, UpdateEntityLimitTypeResponse$inboundSchema, type UpdateEntityModelMarkups, UpdateEntityModelMarkups$inboundSchema, type UpdateEntityOverageAllowedRequest, type UpdateEntityOverageAllowedRequest$Outbound, UpdateEntityOverageAllowedRequest$outboundSchema, type UpdateEntityOverageAllowedResponse, UpdateEntityOverageAllowedResponse$inboundSchema, type UpdateEntityParams, type UpdateEntityParams$Outbound, UpdateEntityParams$outboundSchema, UpdateEntityProcessorType, UpdateEntityProcessorType$inboundSchema, type UpdateEntityProperties, type UpdateEntityProperties$Outbound, UpdateEntityProperties$outboundSchema, type UpdateEntityProviderMarkups, UpdateEntityProviderMarkups$inboundSchema, type UpdateEntityPurchase, UpdateEntityPurchase$inboundSchema, UpdateEntityPurchaseScope, UpdateEntityPurchaseScope$inboundSchema, type UpdateEntityResponse, UpdateEntityResponse$inboundSchema, type UpdateEntitySpendLimitRequest, type UpdateEntitySpendLimitRequest$Outbound, UpdateEntitySpendLimitRequest$outboundSchema, type UpdateEntitySpendLimitResponse, UpdateEntitySpendLimitResponse$inboundSchema, UpdateEntityStatus, UpdateEntityStatus$inboundSchema, type UpdateEntitySubscription, UpdateEntitySubscription$inboundSchema, UpdateEntitySubscriptionScope, UpdateEntitySubscriptionScope$inboundSchema, UpdateEntityThresholdTypeRequestBody, UpdateEntityThresholdTypeRequestBody$outboundSchema, UpdateEntityThresholdTypeResponse, UpdateEntityThresholdTypeResponse$inboundSchema, UpdateEntityType, UpdateEntityType$inboundSchema, type UpdateEntityUsageAlertRequestBody, type UpdateEntityUsageAlertRequestBody$Outbound, UpdateEntityUsageAlertRequestBody$outboundSchema, type UpdateEntityUsageAlertResponse, UpdateEntityUsageAlertResponse$inboundSchema, type UpdateEntityUsageLimitRequest, type UpdateEntityUsageLimitRequest$Outbound, UpdateEntityUsageLimitRequest$outboundSchema, type UpdateEntityUsageLimitResponse, UpdateEntityUsageLimitResponse$inboundSchema, type UpdateFeatureCreditSchemaRequestBody, type UpdateFeatureCreditSchemaRequestBody$Outbound, UpdateFeatureCreditSchemaRequestBody$outboundSchema, type UpdateFeatureCreditSchemaResponse, UpdateFeatureCreditSchemaResponse$inboundSchema, type UpdateFeatureDisplayRequestBody, type UpdateFeatureDisplayRequestBody$Outbound, UpdateFeatureDisplayRequestBody$outboundSchema, type UpdateFeatureDisplayResponse, UpdateFeatureDisplayResponse$inboundSchema, type UpdateFeatureGlobals, type UpdateFeatureModelMarkupsRequest, type UpdateFeatureModelMarkupsRequest$Outbound, UpdateFeatureModelMarkupsRequest$outboundSchema, type UpdateFeatureModelMarkupsResponse, UpdateFeatureModelMarkupsResponse$inboundSchema, type UpdateFeatureParams, type UpdateFeatureParams$Outbound, UpdateFeatureParams$outboundSchema, type UpdateFeatureProviderMarkupsRequest, type UpdateFeatureProviderMarkupsRequest$Outbound, UpdateFeatureProviderMarkupsRequest$outboundSchema, type UpdateFeatureProviderMarkupsResponse, UpdateFeatureProviderMarkupsResponse$inboundSchema, type UpdateFeatureResponse, UpdateFeatureResponse$inboundSchema, UpdateFeatureTypeRequestBody, UpdateFeatureTypeRequestBody$outboundSchema, UpdateFeatureTypeResponse, UpdateFeatureTypeResponse$inboundSchema, UpdatePlanAttachAction, UpdatePlanAttachAction$inboundSchema, type UpdatePlanAutoTopupRequest, type UpdatePlanAutoTopupRequest$Outbound, UpdatePlanAutoTopupRequest$outboundSchema, type UpdatePlanAutoTopupResponse, UpdatePlanAutoTopupResponse$inboundSchema, type UpdatePlanBasePriceRequest, type UpdatePlanBasePriceRequest$Outbound, UpdatePlanBasePriceRequest$outboundSchema, type UpdatePlanBasePriceResponse, UpdatePlanBasePriceResponse$inboundSchema, type UpdatePlanBillingControlsRequest, type UpdatePlanBillingControlsRequest$Outbound, UpdatePlanBillingControlsRequest$outboundSchema, type UpdatePlanBillingControlsResponse, UpdatePlanBillingControlsResponse$inboundSchema, type UpdatePlanConfigRequest, type UpdatePlanConfigRequest$Outbound, UpdatePlanConfigRequest$outboundSchema, type UpdatePlanConfigResponse, UpdatePlanConfigResponse$inboundSchema, type UpdatePlanCreditSchema, UpdatePlanCreditSchema$inboundSchema, type UpdatePlanCustomerEligibility, UpdatePlanCustomerEligibility$inboundSchema, type UpdatePlanCustomizeResponse, UpdatePlanCustomizeResponse$inboundSchema, UpdatePlanDurationTypeRequest, UpdatePlanDurationTypeRequest$outboundSchema, UpdatePlanDurationTypeResponse, UpdatePlanDurationTypeResponse$inboundSchema, UpdatePlanEnv, UpdatePlanEnv$inboundSchema, type UpdatePlanFeature, UpdatePlanFeature$inboundSchema, type UpdatePlanFeatureDisplay, UpdatePlanFeatureDisplay$inboundSchema, type UpdatePlanFilterRequest, type UpdatePlanFilterRequest$Outbound, UpdatePlanFilterRequest$outboundSchema, type UpdatePlanFilterResponse, UpdatePlanFilterResponse$inboundSchema, type UpdatePlanFreeTrial, UpdatePlanFreeTrial$inboundSchema, type UpdatePlanFreeTrialParamsRequest, type UpdatePlanFreeTrialParamsRequest$Outbound, UpdatePlanFreeTrialParamsRequest$outboundSchema, type UpdatePlanFreeTrialParamsResponse, UpdatePlanFreeTrialParamsResponse$inboundSchema, type UpdatePlanGlobals, UpdatePlanIntervalVariantDetailsRemoveItemEnum1, UpdatePlanIntervalVariantDetailsRemoveItemEnum1$inboundSchema, UpdatePlanIntervalVariantDetailsRemoveItemEnum2, UpdatePlanIntervalVariantDetailsRemoveItemEnum2$inboundSchema, type UpdatePlanItem, UpdatePlanItem$inboundSchema, UpdatePlanItemBillingMethodRequestBody, UpdatePlanItemBillingMethodRequestBody$outboundSchema, UpdatePlanItemBillingMethodResponse, UpdatePlanItemBillingMethodResponse$inboundSchema, type UpdatePlanItemDisplay, UpdatePlanItemDisplay$inboundSchema, UpdatePlanItemExpiryDurationTypeRequestBody, UpdatePlanItemExpiryDurationTypeRequestBody$outboundSchema, UpdatePlanItemExpiryDurationTypeResponse, UpdatePlanItemExpiryDurationTypeResponse$inboundSchema, UpdatePlanItemOnDecrease, UpdatePlanItemOnDecrease$outboundSchema, UpdatePlanItemOnIncrease, UpdatePlanItemOnIncrease$outboundSchema, type UpdatePlanItemPlanItem, type UpdatePlanItemPlanItem$Outbound, UpdatePlanItemPlanItem$outboundSchema, UpdatePlanItemPriceIntervalRequestBody, UpdatePlanItemPriceIntervalRequestBody$outboundSchema, type UpdatePlanItemPriceRequestBody, type UpdatePlanItemPriceRequestBody$Outbound, UpdatePlanItemPriceRequestBody$outboundSchema, type UpdatePlanItemPriceResponse, UpdatePlanItemPriceResponse$inboundSchema, type UpdatePlanItemProration, type UpdatePlanItemProration$Outbound, UpdatePlanItemProration$outboundSchema, UpdatePlanItemResetIntervalRequestBody, UpdatePlanItemResetIntervalRequestBody$outboundSchema, type UpdatePlanItemResetRequestBody, type UpdatePlanItemResetRequestBody$Outbound, UpdatePlanItemResetRequestBody$outboundSchema, type UpdatePlanItemResetResponse, UpdatePlanItemResetResponse$inboundSchema, type UpdatePlanItemRolloverRequestBody, type UpdatePlanItemRolloverRequestBody$Outbound, UpdatePlanItemRolloverRequestBody$outboundSchema, type UpdatePlanItemRolloverResponse, UpdatePlanItemRolloverResponse$inboundSchema, UpdatePlanItemTierBehaviorRequestBody, UpdatePlanItemTierBehaviorRequestBody$outboundSchema, UpdatePlanItemTierBehaviorResponse, UpdatePlanItemTierBehaviorResponse$inboundSchema, type UpdatePlanItemTierRequestBody, type UpdatePlanItemTierRequestBody$Outbound, UpdatePlanItemTierRequestBody$outboundSchema, type UpdatePlanItemTierResponse, UpdatePlanItemTierResponse$inboundSchema, type UpdatePlanItemToRequestBody, type UpdatePlanItemToRequestBody$Outbound, UpdatePlanItemToRequestBody$outboundSchema, type UpdatePlanItemToResponse, UpdatePlanItemToResponse$inboundSchema, UpdatePlanLimitTypeRequestBody, UpdatePlanLimitTypeRequestBody$outboundSchema, UpdatePlanLimitTypeResponse, UpdatePlanLimitTypeResponse$inboundSchema, UpdatePlanOnEndRequest, UpdatePlanOnEndRequest$outboundSchema, UpdatePlanOnEndResponse, UpdatePlanOnEndResponse$inboundSchema, type UpdatePlanOverageAllowedRequest, type UpdatePlanOverageAllowedRequest$Outbound, UpdatePlanOverageAllowedRequest$outboundSchema, type UpdatePlanOverageAllowedResponse, UpdatePlanOverageAllowedResponse$inboundSchema, type UpdatePlanParams, type UpdatePlanParams$Outbound, UpdatePlanParams$outboundSchema, type UpdatePlanPlanItemFilterResponse, UpdatePlanPlanItemFilterResponse$inboundSchema, type UpdatePlanPlanItemResponse, UpdatePlanPlanItemResponse$inboundSchema, type UpdatePlanPriceDisplay, UpdatePlanPriceDisplay$inboundSchema, UpdatePlanPriceIntervalRequestBody, UpdatePlanPriceIntervalRequestBody$outboundSchema, UpdatePlanPriceIntervalResponse, UpdatePlanPriceIntervalResponse$inboundSchema, UpdatePlanPriceItemIntervalResponse, UpdatePlanPriceItemIntervalResponse$inboundSchema, type UpdatePlanPriceResponse, UpdatePlanPriceResponse$inboundSchema, UpdatePlanPriceVariantDetailsInterval, UpdatePlanPriceVariantDetailsInterval$inboundSchema, type UpdatePlanProperties, type UpdatePlanProperties$Outbound, UpdatePlanProperties$outboundSchema, type UpdatePlanProrationResponse, UpdatePlanProrationResponse$inboundSchema, UpdatePlanPurchaseLimitIntervalRequestBody, UpdatePlanPurchaseLimitIntervalRequestBody$outboundSchema, UpdatePlanPurchaseLimitIntervalResponse, UpdatePlanPurchaseLimitIntervalResponse$inboundSchema, type UpdatePlanPurchaseLimitRequest, type UpdatePlanPurchaseLimitRequest$Outbound, UpdatePlanPurchaseLimitRequest$outboundSchema, type UpdatePlanPurchaseLimitResponse, UpdatePlanPurchaseLimitResponse$inboundSchema, UpdatePlanResetItemIntervalResponse, UpdatePlanResetItemIntervalResponse$inboundSchema, type UpdatePlanResponse, UpdatePlanResponse$inboundSchema, type UpdatePlanSpendLimitRequest, type UpdatePlanSpendLimitRequest$Outbound, UpdatePlanSpendLimitRequest$outboundSchema, type UpdatePlanSpendLimitResponse, UpdatePlanSpendLimitResponse$inboundSchema, UpdatePlanStatus, UpdatePlanStatus$inboundSchema, UpdatePlanThresholdTypeRequestBody, UpdatePlanThresholdTypeRequestBody$outboundSchema, UpdatePlanThresholdTypeResponse, UpdatePlanThresholdTypeResponse$inboundSchema, UpdatePlanType, UpdatePlanType$inboundSchema, type UpdatePlanUsageAlertRequestBody, type UpdatePlanUsageAlertRequestBody$Outbound, UpdatePlanUsageAlertRequestBody$outboundSchema, type UpdatePlanUsageAlertResponse, UpdatePlanUsageAlertResponse$inboundSchema, UpdatePlanUsageLimitIntervalRequestBody, UpdatePlanUsageLimitIntervalRequestBody$outboundSchema, UpdatePlanUsageLimitIntervalResponse, UpdatePlanUsageLimitIntervalResponse$inboundSchema, type UpdatePlanUsageLimitRequest, type UpdatePlanUsageLimitRequest$Outbound, UpdatePlanUsageLimitRequest$outboundSchema, type UpdatePlanUsageLimitResponse, UpdatePlanUsageLimitResponse$inboundSchema, type UpdatePlanVariantDetails, UpdatePlanVariantDetails$inboundSchema, UpdatePlanVariantDetailsAddItemBillingMethod, UpdatePlanVariantDetailsAddItemBillingMethod$inboundSchema, UpdatePlanVariantDetailsAddItemPriceInterval, UpdatePlanVariantDetailsAddItemPriceInterval$inboundSchema, type UpdatePlanVariantDetailsAutoTopup, UpdatePlanVariantDetailsAutoTopup$inboundSchema, type UpdatePlanVariantDetailsBillingControls, UpdatePlanVariantDetailsBillingControls$inboundSchema, UpdatePlanVariantDetailsDurationType, UpdatePlanVariantDetailsDurationType$inboundSchema, UpdatePlanVariantDetailsExpiryDurationType, UpdatePlanVariantDetailsExpiryDurationType$inboundSchema, type UpdatePlanVariantDetailsFilter, UpdatePlanVariantDetailsFilter$inboundSchema, type UpdatePlanVariantDetailsIntervalUnion, UpdatePlanVariantDetailsIntervalUnion$inboundSchema, UpdatePlanVariantDetailsLimitType, UpdatePlanVariantDetailsLimitType$inboundSchema, UpdatePlanVariantDetailsOnDecrease, UpdatePlanVariantDetailsOnDecrease$inboundSchema, UpdatePlanVariantDetailsOnEnd, UpdatePlanVariantDetailsOnEnd$inboundSchema, UpdatePlanVariantDetailsOnIncrease, UpdatePlanVariantDetailsOnIncrease$inboundSchema, type UpdatePlanVariantDetailsOverageAllowed, UpdatePlanVariantDetailsOverageAllowed$inboundSchema, type UpdatePlanVariantDetailsPrice, UpdatePlanVariantDetailsPrice$inboundSchema, type UpdatePlanVariantDetailsPurchaseLimit, UpdatePlanVariantDetailsPurchaseLimit$inboundSchema, UpdatePlanVariantDetailsPurchaseLimitInterval, UpdatePlanVariantDetailsPurchaseLimitInterval$inboundSchema, UpdatePlanVariantDetailsRemoveItemBillingMethod, UpdatePlanVariantDetailsRemoveItemBillingMethod$inboundSchema, type UpdatePlanVariantDetailsReset, UpdatePlanVariantDetailsReset$inboundSchema, UpdatePlanVariantDetailsResetInterval, UpdatePlanVariantDetailsResetInterval$inboundSchema, type UpdatePlanVariantDetailsRollover, UpdatePlanVariantDetailsRollover$inboundSchema, type UpdatePlanVariantDetailsSpendLimit, UpdatePlanVariantDetailsSpendLimit$inboundSchema, UpdatePlanVariantDetailsThresholdType, UpdatePlanVariantDetailsThresholdType$inboundSchema, type UpdatePlanVariantDetailsTier, UpdatePlanVariantDetailsTier$inboundSchema, UpdatePlanVariantDetailsTierBehavior, UpdatePlanVariantDetailsTierBehavior$inboundSchema, type UpdatePlanVariantDetailsTo, UpdatePlanVariantDetailsTo$inboundSchema, type UpdatePlanVariantDetailsUsageAlert, UpdatePlanVariantDetailsUsageAlert$inboundSchema, type UpdatePlanVariantDetailsUsageLimit, UpdatePlanVariantDetailsUsageLimit$inboundSchema, UpdatePlanVariantDetailsUsageLimitInterval, UpdatePlanVariantDetailsUsageLimitInterval$inboundSchema, type UpdateSubscriptionParams, type UpdateSubscriptionParams$Outbound, UpdateSubscriptionParams$outboundSchema, UsageModel1, UsageModel1$inboundSchema, UsageModel2, UsageModel2$inboundSchema, type Variant, type Variant$Outbound, Variant$outboundSchema, VariantAddItemBillingMethod, VariantAddItemBillingMethod$outboundSchema, VariantAddItemPriceInterval, VariantAddItemPriceInterval$outboundSchema, type VariantAutoTopup, type VariantAutoTopup$Outbound, VariantAutoTopup$outboundSchema, type VariantBasePrice, type VariantBasePrice$Outbound, VariantBasePrice$outboundSchema, type VariantBillingControls, type VariantBillingControls$Outbound, VariantBillingControls$outboundSchema, type VariantCustomize, type VariantCustomize$Outbound, VariantCustomize$outboundSchema, type VariantDetails, VariantDetails$inboundSchema, VariantDetailsExpiryDurationType, VariantDetailsExpiryDurationType$inboundSchema, VariantDetailsOnEnd, VariantDetailsOnEnd$inboundSchema, VariantDurationType, VariantDurationType$outboundSchema, VariantExpiryDurationType, VariantExpiryDurationType$outboundSchema, type VariantFilter, type VariantFilter$Outbound, VariantFilter$outboundSchema, type VariantFreeTrialParams, type VariantFreeTrialParams$Outbound, VariantFreeTrialParams$outboundSchema, type VariantIntervalUnion, type VariantIntervalUnion$Outbound, VariantIntervalUnion$outboundSchema, VariantLimitType, VariantLimitType$outboundSchema, type VariantMigration, type VariantMigration$Outbound, VariantMigration$outboundSchema, VariantOnDecrease, VariantOnDecrease$outboundSchema, VariantOnEnd, VariantOnEnd$outboundSchema, VariantOnIncrease, VariantOnIncrease$outboundSchema, type VariantOverageAllowed, type VariantOverageAllowed$Outbound, VariantOverageAllowed$outboundSchema, type VariantPlanItem, type VariantPlanItem$Outbound, VariantPlanItem$outboundSchema, type VariantPlanItemFilter, type VariantPlanItemFilter$Outbound, VariantPlanItemFilter$outboundSchema, type VariantPrice, type VariantPrice$Outbound, VariantPrice$outboundSchema, type VariantProperties, type VariantProperties$Outbound, VariantProperties$outboundSchema, type VariantProration, type VariantProration$Outbound, VariantProration$outboundSchema, type VariantPurchaseLimit, type VariantPurchaseLimit$Outbound, VariantPurchaseLimit$outboundSchema, VariantPurchaseLimitInterval, VariantPurchaseLimitInterval$outboundSchema, VariantRemoveItemBillingMethod, VariantRemoveItemBillingMethod$outboundSchema, type VariantReset, type VariantReset$Outbound, VariantReset$outboundSchema, VariantResetInterval, VariantResetInterval$outboundSchema, type VariantRollover, type VariantRollover$Outbound, VariantRollover$outboundSchema, type VariantSpendLimit, type VariantSpendLimit$Outbound, VariantSpendLimit$outboundSchema, VariantThresholdType, VariantThresholdType$outboundSchema, type VariantTier, type VariantTier$Outbound, VariantTier$outboundSchema, VariantTierBehavior, VariantTierBehavior$outboundSchema, type VariantTo, type VariantTo$Outbound, VariantTo$outboundSchema, type VariantUsageAlert, type VariantUsageAlert$Outbound, VariantUsageAlert$outboundSchema, type VariantUsageLimit, type VariantUsageLimit$Outbound, VariantUsageLimit$outboundSchema, VariantUsageLimitInterval, VariantUsageLimitInterval$outboundSchema, type Vercel, Vercel$inboundSchema, aggregateEventsCustomRangeToJSON, aggregateEventsFeatureIdToJSON, aggregateEventsListFromJSON, aggregateEventsResponseFromJSON, apiKeyFromJSON, attachAddItemPlanItemToJSON, attachAddItemPriceToJSON, attachAddItemProrationToJSON, attachAddItemResetToJSON, attachAddItemRolloverToJSON, attachAddItemTierToJSON, attachAddItemToToJSON, attachAttachDiscountToJSON, attachAutoTopupToJSON, attachBasePriceToJSON, attachBillingControlsToJSON, attachCarryOverBalancesToJSON, attachCarryOverUsagesToJSON, attachCustomLineItemToJSON, attachCustomizeToJSON, attachFeatureQuantityToJSON, attachFilterToJSON, attachFreeTrialParamsToJSON, attachIntervalUnionToJSON, attachInvoiceFromJSON, attachInvoiceModeToJSON, attachItemPlanItemToJSON, attachItemPriceToJSON, attachItemProrationToJSON, attachItemResetToJSON, attachItemRolloverToJSON, attachItemTierToJSON, attachItemToToJSON, attachOverageAllowedToJSON, attachParamsToJSON, attachPlanItemFilterToJSON, attachPropertiesToJSON, attachPurchaseLimitToJSON, attachRequiredActionFromJSON, attachResponseFromJSON, attachSpendLimitToJSON, attachUsageAlertToJSON, attachUsageLimitToJSON, balanceCreditSchemaFromJSON, balanceDisplayFromJSON, balanceFeatureFromJSON, balanceFromJSON, balanceIntervalUnionFromJSON, balanceModelMarkupsFromJSON, balancePriceFromJSON, balanceProviderMarkupsFromJSON, balanceResetFromJSON, balanceRolloverFromJSON, balanceTierFromJSON, balanceToFromJSON, basePriceFromJSON, batchTrackLockToJSON, batchTrackResponseFromJSON, billableToJSON, billingUpdateAddItemPlanItemToJSON, billingUpdateAddItemPriceToJSON, billingUpdateAddItemProrationToJSON, billingUpdateAddItemResetToJSON, billingUpdateAddItemRolloverToJSON, billingUpdateAddItemTierToJSON, billingUpdateAddItemToToJSON, billingUpdateAttachDiscountToJSON, billingUpdateAutoTopupToJSON, billingUpdateBasePriceToJSON, billingUpdateBillingControlsToJSON, billingUpdateCarryOverUsagesToJSON, billingUpdateCustomizeToJSON, billingUpdateFeatureQuantityToJSON, billingUpdateFilterToJSON, billingUpdateFreeTrialParamsToJSON, billingUpdateIntervalUnionToJSON, billingUpdateInvoiceFromJSON, billingUpdateInvoiceModeToJSON, billingUpdateItemPlanItemToJSON, billingUpdateItemPriceToJSON, billingUpdateItemProrationToJSON, billingUpdateItemResetToJSON, billingUpdateItemRolloverToJSON, billingUpdateItemTierToJSON, billingUpdateItemToToJSON, billingUpdateOverageAllowedToJSON, billingUpdatePlanItemFilterToJSON, billingUpdatePropertiesToJSON, billingUpdatePurchaseLimitToJSON, billingUpdateRecalculateBalancesToJSON, billingUpdateRequiredActionFromJSON, billingUpdateResponseFromJSON, billingUpdateSpendLimitToJSON, billingUpdateUsageAlertToJSON, billingUpdateUsageLimitToJSON, breakdownFromJSON, checkAutoTopup1FromJSON, checkAutoTopup2FromJSON, checkBillingControls1FromJSON, checkBillingControls2FromJSON, checkConfig1FromJSON, checkConfig2FromJSON, checkCreditSchema1FromJSON, checkCreditSchema2FromJSON, checkFeature1FromJSON, checkFeature2FromJSON, checkFilter1FromJSON, checkFilter2FromJSON, checkFreeTrial1FromJSON, checkFreeTrial2FromJSON, checkItem1FromJSON, checkItem2FromJSON, checkLockToJSON, checkModelMarkups1FromJSON, checkModelMarkups2FromJSON, checkOverageAllowed1FromJSON, checkOverageAllowed2FromJSON, checkParamsToJSON, checkProduct1FromJSON, checkProduct2FromJSON, checkProperties1FromJSON, checkProperties2FromJSON, checkProviderMarkups1FromJSON, checkProviderMarkups2FromJSON, checkPurchaseLimit1FromJSON, checkPurchaseLimit2FromJSON, checkResponseBody1FromJSON, checkResponseBody2FromJSON, checkResponseFromJSON, checkRollover1FromJSON, checkRollover2FromJSON, checkSpendLimit1FromJSON, checkSpendLimit2FromJSON, checkUsageAlert1FromJSON, checkUsageAlert2FromJSON, checkUsageLimit1FromJSON, checkUsageLimit2FromJSON, couponFromJSON, couponPromoCodeFromJSON, createBalanceParamsToJSON, createBalanceResetToJSON, createBalanceResponseFromJSON, createBalanceRolloverToJSON, createEntityBillingControlsRequestToJSON, createEntityBillingControlsResponseFromJSON, createEntityCreditSchemaFromJSON, createEntityDisplayFromJSON, createEntityFeatureFromJSON, createEntityFilterRequestToJSON, createEntityFilterResponseFromJSON, createEntityFlagsFromJSON, createEntityInvoiceFromJSON, createEntityModelMarkupsFromJSON, createEntityOverageAllowedRequestToJSON, createEntityOverageAllowedResponseFromJSON, createEntityParamsToJSON, createEntityPropertiesToJSON, createEntityProviderMarkupsFromJSON, createEntityPurchaseFromJSON, createEntityResponseFromJSON, createEntitySpendLimitRequestToJSON, createEntitySpendLimitResponseFromJSON, createEntitySubscriptionFromJSON, createEntityUsageAlertRequestBodyToJSON, createEntityUsageAlertResponseFromJSON, createEntityUsageLimitRequestToJSON, createEntityUsageLimitResponseFromJSON, createFeatureCreditSchemaRequestBodyToJSON, createFeatureCreditSchemaResponseFromJSON, createFeatureDisplayRequestBodyToJSON, createFeatureDisplayResponseFromJSON, createFeatureModelMarkupsRequestToJSON, createFeatureModelMarkupsResponseFromJSON, createFeatureParamsToJSON, createFeatureProviderMarkupsRequestToJSON, createFeatureProviderMarkupsResponseFromJSON, createFeatureResponseFromJSON, createPlanAutoTopupRequestToJSON, createPlanAutoTopupResponseFromJSON, createPlanBasePriceFromJSON, createPlanBillingControlsRequestToJSON, createPlanBillingControlsResponseFromJSON, createPlanConfigRequestToJSON, createPlanConfigResponseFromJSON, createPlanCreditSchemaFromJSON, createPlanCustomerEligibilityFromJSON, createPlanCustomizeFromJSON, createPlanFeatureDisplayFromJSON, createPlanFeatureFromJSON, createPlanFilterRequestToJSON, createPlanFilterResponseFromJSON, createPlanFreeTrialParamsFromJSON, createPlanFreeTrialResponseFromJSON, createPlanIntervalUnionFromJSON, createPlanItemDisplayFromJSON, createPlanItemFromJSON, createPlanItemPlanItemToJSON, createPlanItemPriceRequestBodyToJSON, createPlanItemPriceResponseFromJSON, createPlanItemProrationToJSON, createPlanItemResetResponseFromJSON, createPlanItemRolloverResponseFromJSON, createPlanItemTierResponseFromJSON, createPlanItemToResponseFromJSON, createPlanOverageAllowedRequestToJSON, createPlanOverageAllowedResponseFromJSON, createPlanParamsToJSON, createPlanPlanItemFilterFromJSON, createPlanPlanItemResponseFromJSON, createPlanPriceDisplayFromJSON, createPlanPriceRequestBodyToJSON, createPlanPriceResponseFromJSON, createPlanPropertiesToJSON, createPlanProrationResponseFromJSON, createPlanPurchaseLimitRequestToJSON, createPlanPurchaseLimitResponseFromJSON, createPlanResetRequestBodyToJSON, createPlanResponseFromJSON, createPlanRolloverRequestBodyToJSON, createPlanSpendLimitRequestToJSON, createPlanSpendLimitResponseFromJSON, createPlanTierRequestBodyToJSON, createPlanToRequestBodyToJSON, createPlanUsageAlertRequestBodyToJSON, createPlanUsageAlertResponseFromJSON, createPlanUsageLimitRequestToJSON, createPlanUsageLimitResponseFromJSON, createPlanVariantDetailsAutoTopupFromJSON, createPlanVariantDetailsBillingControlsFromJSON, createPlanVariantDetailsFilterFromJSON, createPlanVariantDetailsFromJSON, createPlanVariantDetailsOverageAllowedFromJSON, createPlanVariantDetailsPriceFromJSON, createPlanVariantDetailsPurchaseLimitFromJSON, createPlanVariantDetailsResetFromJSON, createPlanVariantDetailsRolloverFromJSON, createPlanVariantDetailsSpendLimitFromJSON, createPlanVariantDetailsTierFromJSON, createPlanVariantDetailsToFromJSON, createPlanVariantDetailsUsageAlertFromJSON, createPlanVariantDetailsUsageLimitFromJSON, createReferralCodeParamsToJSON, createReferralCodeResponseFromJSON, createScheduleAddItemPlanItem2ToJSON, createScheduleAddItemPrice2ToJSON, createScheduleAddItemProration2ToJSON, createScheduleAddItemReset2ToJSON, createScheduleAddItemRollover2ToJSON, createScheduleAddItemTier2ToJSON, createScheduleAttachDiscountToJSON, createScheduleAutoTopup2ToJSON, createScheduleBasePrice2ToJSON, createScheduleBillingControls2ToJSON, createScheduleCustomize2ToJSON, createScheduleFeatureQuantity2ToJSON, createScheduleFilter2ToJSON, createScheduleIntervalUnion2ToJSON, createScheduleInvoiceFromJSON, createScheduleInvoiceModeToJSON, createScheduleItemPlanItem2ToJSON, createScheduleItemPrice2ToJSON, createScheduleItemProration2ToJSON, createScheduleItemReset2ToJSON, createScheduleItemRollover2ToJSON, createScheduleItemTier2ToJSON, createScheduleOverageAllowed2ToJSON, createScheduleParamsToJSON, createSchedulePlan2ToJSON, createSchedulePlanItemFilter2ToJSON, createSchedulePurchaseLimit2ToJSON, createScheduleRequiredActionFromJSON, createScheduleResponseFromJSON, createScheduleSpendLimit2ToJSON, createScheduleUsageAlert2ToJSON, createScheduleUsageLimit2ToJSON, customerAutoTopupFromJSON, customerBillingControlsFromJSON, customerConfigFromJSON, customerCreditSchemaFromJSON, customerDataAutoTopupToJSON, customerDataBillingControlsToJSON, customerDataConfigToJSON, customerDataFilterToJSON, customerDataOverageAllowedToJSON, customerDataPurchaseLimitToJSON, customerDataSpendLimitToJSON, customerDataToJSON, customerDataUsageAlertToJSON, customerDataUsageLimitToJSON, customerDisplayFromJSON, customerEligibilityFromJSON, customerFeatureFromJSON, customerFilterFromJSON, customerFromJSON, customerModelMarkupsFromJSON, customerOverageAllowedFromJSON, customerProviderMarkupsFromJSON, customerPurchaseLimit1FromJSON, customerPurchaseLimit2FromJSON, customerPurchaseLimitUnionFromJSON, customerSpendLimitFromJSON, customerUsageAlertFromJSON, customerUsageLimitFromJSON, customizeFromJSON, deductionsFromJSON, deleteBalanceParamsToJSON, deleteBalanceResponseFromJSON, deleteCustomerParamsToJSON, deleteCustomerResponseFromJSON, deleteEntityParamsToJSON, deleteEntityResponseFromJSON, deleteFeatureParamsToJSON, deleteFeatureResponseFromJSON, deletePlanParamsToJSON, deletePlanResponseFromJSON, dfuFlashParamsToJSON, dfuFlashResultFromJSON, discountFromJSON, entitlementsGrantedFromJSON, entityFromJSON, eventsAggregateParamsToJSON, eventsListParamsToJSON, expiryFromJSON, featureGrantFromJSON, featureGrantPromoCodeFromJSON, files, finalizeBalanceParamsToJSON, finalizeLockResponseBody1FromJSON, finalizeLockResponseBody2FromJSON, finalizeLockResponseFromJSON, flag1FromJSON, flag2FromJSON, flagDisplay1FromJSON, flagDisplay2FromJSON, flagsFromJSON, flashedFromJSON, formatZodError, freeTrialFromJSON, freeTrialParamsFromJSON, freeTrialRequestToJSON, getCustomerAutoTopupFromJSON, getCustomerBillingControlsFromJSON, getCustomerConfigFromJSON, getCustomerCreditSchemaFromJSON, getCustomerCustomerFromJSON, getCustomerDiscountFromJSON, getCustomerDisplayFromJSON, getCustomerEntityFromJSON, getCustomerFeatureFromJSON, getCustomerFilterFromJSON, getCustomerFlagsFromJSON, getCustomerInvoiceFromJSON, getCustomerModelMarkupsFromJSON, getCustomerOverageAllowedFromJSON, getCustomerParamsToJSON, getCustomerProcessorsFromJSON, getCustomerProviderMarkupsFromJSON, getCustomerPurchaseFromJSON, getCustomerPurchaseLimit1FromJSON, getCustomerPurchaseLimit2FromJSON, getCustomerPurchaseLimitUnionFromJSON, getCustomerReferralFromJSON, getCustomerResponseFromJSON, getCustomerRevenuecatFromJSON, getCustomerRewardsFromJSON, getCustomerSpendLimitFromJSON, getCustomerStripeFromJSON, getCustomerSubscriptionFromJSON, getCustomerTrialsUsedFromJSON, getCustomerUsageAlertFromJSON, getCustomerUsageLimitFromJSON, getCustomerVercelFromJSON, getEntityBillingControlsFromJSON, getEntityCreditSchemaFromJSON, getEntityDisplayFromJSON, getEntityFeatureFromJSON, getEntityFilterFromJSON, getEntityFlagsFromJSON, getEntityInvoiceFromJSON, getEntityModelMarkupsFromJSON, getEntityOverageAllowedFromJSON, getEntityParamsToJSON, getEntityProviderMarkupsFromJSON, getEntityPurchaseFromJSON, getEntityResponseFromJSON, getEntitySpendLimitFromJSON, getEntitySubscriptionFromJSON, getEntityUsageAlertFromJSON, getEntityUsageLimitFromJSON, getFeatureCreditSchemaFromJSON, getFeatureDisplayFromJSON, getFeatureModelMarkupsFromJSON, getFeatureParamsToJSON, getFeatureProviderMarkupsFromJSON, getFeatureResponseFromJSON, getOrCreateCustomerAutoTopupToJSON, getOrCreateCustomerBillingControlsToJSON, getOrCreateCustomerConfigToJSON, getOrCreateCustomerFilterToJSON, getOrCreateCustomerOverageAllowedToJSON, getOrCreateCustomerParamsToJSON, getOrCreateCustomerPropertiesToJSON, getOrCreateCustomerPurchaseLimitToJSON, getOrCreateCustomerSpendLimitToJSON, getOrCreateCustomerUsageAlertToJSON, getOrCreateCustomerUsageLimitToJSON, getPlanAutoTopupFromJSON, getPlanBasePriceFromJSON, getPlanBillingControlsFromJSON, getPlanConfigFromJSON, getPlanCreditSchemaFromJSON, getPlanCustomerEligibilityFromJSON, getPlanCustomizeFromJSON, getPlanFeatureDisplayFromJSON, getPlanFeatureFromJSON, getPlanFilterFromJSON, getPlanFreeTrialFromJSON, getPlanFreeTrialParamsFromJSON, getPlanIntervalUnionFromJSON, getPlanItemDisplayFromJSON, getPlanItemFromJSON, getPlanItemPriceFromJSON, getPlanItemResetFromJSON, getPlanItemRolloverFromJSON, getPlanItemTierFromJSON, getPlanItemToFromJSON, getPlanOverageAllowedFromJSON, getPlanParamsToJSON, getPlanPlanItemFilterFromJSON, getPlanPlanItemFromJSON, getPlanPriceDisplayFromJSON, getPlanPriceFromJSON, getPlanProrationFromJSON, getPlanPurchaseLimitFromJSON, getPlanResponseFromJSON, getPlanSpendLimitFromJSON, getPlanUsageAlertFromJSON, getPlanUsageLimitFromJSON, getPlanVariantDetailsAutoTopupFromJSON, getPlanVariantDetailsBillingControlsFromJSON, getPlanVariantDetailsFilterFromJSON, getPlanVariantDetailsFromJSON, getPlanVariantDetailsOverageAllowedFromJSON, getPlanVariantDetailsPriceFromJSON, getPlanVariantDetailsPurchaseLimitFromJSON, getPlanVariantDetailsResetFromJSON, getPlanVariantDetailsRolloverFromJSON, getPlanVariantDetailsSpendLimitFromJSON, getPlanVariantDetailsTierFromJSON, getPlanVariantDetailsToFromJSON, getPlanVariantDetailsUsageAlertFromJSON, getPlanVariantDetailsUsageLimitFromJSON, getRevenueCatKeysAppFromJSON, getRevenueCatKeysParamsToJSON, getRevenueCatKeysResponseFromJSON, grantFromJSON, importBalanceToJSON, importCustomerDataToJSON, importFeatureQuantityToJSON, importFilterToJSON, importPlanToJSON, importProcessorToJSON, includedUsage1FromJSON, includedUsage2FromJSON, invoiceFromJSON, itemFromJSON, linkRevenueCatParamsToJSON, linkRevenueCatResponseFromJSON, linkToJSON, listCustomersAutoTopupFromJSON, listCustomersBillingControlsFromJSON, listCustomersConfigFromJSON, listCustomersCreditSchemaFromJSON, listCustomersDisplayFromJSON, listCustomersFeatureFromJSON, listCustomersFilterFromJSON, listCustomersFlagsFromJSON, listCustomersListFromJSON, listCustomersModelMarkupsFromJSON, listCustomersOverageAllowedFromJSON, listCustomersParamsToJSON, listCustomersPlanToJSON, listCustomersProcessorsFromJSON, listCustomersProviderMarkupsFromJSON, listCustomersPurchaseFromJSON, listCustomersPurchaseLimit1FromJSON, listCustomersPurchaseLimit2FromJSON, listCustomersPurchaseLimitUnionFromJSON, listCustomersResponseFromJSON, listCustomersRevenuecatFromJSON, listCustomersSpendLimitFromJSON, listCustomersStripeFromJSON, listCustomersSubscriptionFromJSON, listCustomersUsageAlertFromJSON, listCustomersUsageLimitFromJSON, listCustomersVercelFromJSON, listEntitiesBillingControlsFromJSON, listEntitiesCreditSchemaFromJSON, listEntitiesDisplayFromJSON, listEntitiesFeatureFromJSON, listEntitiesFilterFromJSON, listEntitiesFlagsFromJSON, listEntitiesInvoiceFromJSON, listEntitiesListFromJSON, listEntitiesModelMarkupsFromJSON, listEntitiesOverageAllowedFromJSON, listEntitiesParamsToJSON, listEntitiesPlanToJSON, listEntitiesProviderMarkupsFromJSON, listEntitiesPurchaseFromJSON, listEntitiesResponseFromJSON, listEntitiesSpendLimitFromJSON, listEntitiesSubscriptionFromJSON, listEntitiesUsageAlertFromJSON, listEntitiesUsageLimitFromJSON, listEventsCustomRangeToJSON, listEventsFeatureIdToJSON, listEventsIntervalUnionFromJSON, listEventsListFromJSON, listEventsResetFromJSON, listEventsResponseFromJSON, listFeaturesCreditSchemaFromJSON, listFeaturesDisplayFromJSON, listFeaturesListFromJSON, listFeaturesModelMarkupsFromJSON, listFeaturesProviderMarkupsFromJSON, listFeaturesRequestToJSON, listFeaturesResponseFromJSON, listPlansAutoTopupFromJSON, listPlansBasePriceFromJSON, listPlansBillingControlsFromJSON, listPlansConfigFromJSON, listPlansCreditSchemaFromJSON, listPlansCustomerEligibilityFromJSON, listPlansCustomizeFromJSON, listPlansFeatureDisplayFromJSON, listPlansFeatureFromJSON, listPlansFilterFromJSON, listPlansFreeTrialFromJSON, listPlansFreeTrialParamsFromJSON, listPlansIntervalUnionFromJSON, listPlansItemDisplayFromJSON, listPlansItemFromJSON, listPlansItemPriceFromJSON, listPlansItemResetFromJSON, listPlansItemRolloverFromJSON, listPlansItemTierFromJSON, listPlansListFromJSON, listPlansOverageAllowedFromJSON, listPlansParamsToJSON, listPlansPlanItemFilterFromJSON, listPlansPlanItemFromJSON, listPlansPriceDisplayFromJSON, listPlansPriceFromJSON, listPlansProrationFromJSON, listPlansPurchaseLimitFromJSON, listPlansResponseFromJSON, listPlansSpendLimitFromJSON, listPlansToFromJSON, listPlansUsageAlertFromJSON, listPlansUsageLimitFromJSON, listPlansVariantDetailsAutoTopupFromJSON, listPlansVariantDetailsBillingControlsFromJSON, listPlansVariantDetailsFilterFromJSON, listPlansVariantDetailsFromJSON, listPlansVariantDetailsOverageAllowedFromJSON, listPlansVariantDetailsPriceFromJSON, listPlansVariantDetailsPurchaseLimitFromJSON, listPlansVariantDetailsResetFromJSON, listPlansVariantDetailsRolloverFromJSON, listPlansVariantDetailsSpendLimitFromJSON, listPlansVariantDetailsTierFromJSON, listPlansVariantDetailsUsageAlertFromJSON, listPlansVariantDetailsUsageLimitFromJSON, listRewardsDurationFromJSON, listRewardsResponseFromJSON, migrationToJSON, mintKeyParamsToJSON, mintKeyResponseFromJSON, multiAttachAttachDiscountToJSON, multiAttachBasePriceToJSON, multiAttachBillingControlsToJSON, multiAttachCustomizeToJSON, multiAttachEntityDataToJSON, multiAttachFeatureQuantityToJSON, multiAttachFilterToJSON, multiAttachFreeTrialParamsToJSON, multiAttachInvoiceFromJSON, multiAttachInvoiceModeToJSON, multiAttachOverageAllowedToJSON, multiAttachParamsToJSON, multiAttachPlanItemToJSON, multiAttachPlanToJSON, multiAttachPriceToJSON, multiAttachPropertiesToJSON, multiAttachProrationToJSON, multiAttachRequiredActionFromJSON, multiAttachResetToJSON, multiAttachResponseFromJSON, multiAttachRolloverToJSON, multiAttachSpendLimitToJSON, multiAttachTierToJSON, multiAttachToToJSON, multiAttachUsageAlertToJSON, multiAttachUsageLimitToJSON, openCustomerPortalParamsToJSON, openCustomerPortalResponseFromJSON, phaseResponseFromJSON, phaseStartToJSON, phaseStartUnionToJSON, planAutoTopupFromJSON, planBillingControlsFromJSON, planConfigFromJSON, planCreditSchemaFromJSON, planFeatureDisplayFromJSON, planFeatureFromJSON, planFilterFromJSON, planFromJSON, planIntervalUnionFromJSON, planItemDisplayFromJSON, planItemFilterFromJSON, planItemFromJSON, planItemPriceFromJSON, planItemResetFromJSON, planItemRolloverFromJSON, planItemTierFromJSON, planItemToFromJSON, planOverageAllowedFromJSON, planPriceDisplayFromJSON, planPriceFromJSON, planPurchaseLimitFromJSON, planSpendLimitFromJSON, planUsageAlertFromJSON, planUsageLimitFromJSON, planVariantDetailsAutoTopupFromJSON, planVariantDetailsBillingControlsFromJSON, planVariantDetailsFilterFromJSON, planVariantDetailsOverageAllowedFromJSON, planVariantDetailsPriceFromJSON, planVariantDetailsPurchaseLimitFromJSON, planVariantDetailsResetFromJSON, planVariantDetailsRolloverFromJSON, planVariantDetailsSpendLimitFromJSON, planVariantDetailsTierFromJSON, planVariantDetailsToFromJSON, planVariantDetailsUsageAlertFromJSON, planVariantDetailsUsageLimitFromJSON, preview1FromJSON, preview2FromJSON, previewAttachAddItemPlanItemToJSON, previewAttachAddItemPriceToJSON, previewAttachAddItemProrationToJSON, previewAttachAddItemResetToJSON, previewAttachAddItemRolloverToJSON, previewAttachAddItemTierToJSON, previewAttachAddItemToToJSON, previewAttachAttachDiscountToJSON, previewAttachAutoTopupToJSON, previewAttachBasePriceToJSON, previewAttachBillingControlsToJSON, previewAttachCarryOverBalancesToJSON, previewAttachCarryOverUsagesToJSON, previewAttachCustomLineItemToJSON, previewAttachCustomizeToJSON, previewAttachDiscountFromJSON, previewAttachFeatureQuantityRequestToJSON, previewAttachFilterToJSON, previewAttachFreeTrialParamsToJSON, previewAttachIncomingFeatureQuantityFromJSON, previewAttachIncomingFromJSON, previewAttachIntervalUnionToJSON, previewAttachInvoiceCreditsFromJSON, previewAttachInvoiceModeToJSON, previewAttachItemPlanItemToJSON, previewAttachItemPriceToJSON, previewAttachItemProrationToJSON, previewAttachItemResetToJSON, previewAttachItemRolloverToJSON, previewAttachItemTierToJSON, previewAttachItemToToJSON, previewAttachLineItemFromJSON, previewAttachLineItemPeriodFromJSON, previewAttachNextCycleDiscountFromJSON, previewAttachNextCycleFromJSON, previewAttachNextCycleLineItemFromJSON, previewAttachNextCycleLineItemPeriodFromJSON, previewAttachOutgoingFeatureQuantityFromJSON, previewAttachOutgoingFromJSON, previewAttachOverageAllowedToJSON, previewAttachParamsToJSON, previewAttachPlanItemFilterToJSON, previewAttachPropertiesToJSON, previewAttachPurchaseLimitToJSON, previewAttachResponseFromJSON, previewAttachSpendLimitToJSON, previewAttachTaxFromJSON, previewAttachUsageAlertToJSON, previewAttachUsageLimitToJSON, previewAttachUsageLineItemFromJSON, previewAttachUsageLineItemPeriodFromJSON, previewMultiAttachAttachDiscountToJSON, previewMultiAttachBasePriceToJSON, previewMultiAttachBillingControlsToJSON, previewMultiAttachCustomizeToJSON, previewMultiAttachDiscountFromJSON, previewMultiAttachEntityDataToJSON, previewMultiAttachFilterToJSON, previewMultiAttachFreeTrialParamsToJSON, previewMultiAttachIncomingFeatureQuantityFromJSON, previewMultiAttachIncomingFromJSON, previewMultiAttachInvoiceCreditsFromJSON, previewMultiAttachInvoiceModeToJSON, previewMultiAttachLineItemFromJSON, previewMultiAttachLineItemPeriodFromJSON, previewMultiAttachNextCycleDiscountFromJSON, previewMultiAttachNextCycleFromJSON, previewMultiAttachNextCycleLineItemFromJSON, previewMultiAttachNextCycleLineItemPeriodFromJSON, previewMultiAttachOutgoingFeatureQuantityFromJSON, previewMultiAttachOutgoingFromJSON, previewMultiAttachOverageAllowedToJSON, previewMultiAttachParamsToJSON, previewMultiAttachPlanFeatureQuantityToJSON, previewMultiAttachPlanItemToJSON, previewMultiAttachPlanToJSON, previewMultiAttachPriceToJSON, previewMultiAttachPropertiesToJSON, previewMultiAttachProrationToJSON, previewMultiAttachResetToJSON, previewMultiAttachResponseFromJSON, previewMultiAttachRolloverToJSON, previewMultiAttachSpendLimitToJSON, previewMultiAttachTaxFromJSON, previewMultiAttachTierToJSON, previewMultiAttachToToJSON, previewMultiAttachUsageAlertToJSON, previewMultiAttachUsageLimitToJSON, previewMultiAttachUsageLineItemFromJSON, previewMultiAttachUsageLineItemPeriodFromJSON, previewUpdateAddItemPlanItemToJSON, previewUpdateAddItemPriceToJSON, previewUpdateAddItemProrationToJSON, previewUpdateAddItemResetToJSON, previewUpdateAddItemRolloverToJSON, previewUpdateAddItemTierToJSON, previewUpdateAddItemToToJSON, previewUpdateAttachDiscountToJSON, previewUpdateAutoTopupToJSON, previewUpdateBasePriceToJSON, previewUpdateBillingControlsToJSON, previewUpdateCarryOverUsagesToJSON, previewUpdateCustomizeToJSON, previewUpdateDiscountFromJSON, previewUpdateFeatureQuantityRequestToJSON, previewUpdateFilterToJSON, previewUpdateFreeTrialParamsToJSON, previewUpdateIncomingFeatureQuantityFromJSON, previewUpdateIncomingFromJSON, previewUpdateIntervalUnionToJSON, previewUpdateInvoiceCreditsFromJSON, previewUpdateInvoiceModeToJSON, previewUpdateItemPlanItemToJSON, previewUpdateItemPriceToJSON, previewUpdateItemProrationToJSON, previewUpdateItemResetToJSON, previewUpdateItemRolloverToJSON, previewUpdateItemTierToJSON, previewUpdateItemToToJSON, previewUpdateLineItemFromJSON, previewUpdateLineItemPeriodFromJSON, previewUpdateNextCycleDiscountFromJSON, previewUpdateNextCycleFromJSON, previewUpdateNextCycleLineItemFromJSON, previewUpdateNextCycleLineItemPeriodFromJSON, previewUpdateOutgoingFeatureQuantityFromJSON, previewUpdateOutgoingFromJSON, previewUpdateOverageAllowedToJSON, previewUpdateParamsToJSON, previewUpdatePlanItemFilterToJSON, previewUpdatePropertiesToJSON, previewUpdatePurchaseLimitToJSON, previewUpdateRecalculateBalancesToJSON, previewUpdateResponseFromJSON, previewUpdateSpendLimitToJSON, previewUpdateTaxFromJSON, previewUpdateUsageAlertToJSON, previewUpdateUsageLimitToJSON, previewUpdateUsageLineItemFromJSON, previewUpdateUsageLineItemPeriodFromJSON, processorsFromJSON, productDisplay1FromJSON, productDisplay2FromJSON, propertiesToJSON, prorationFromJSON, purchaseFromJSON, redeemReferralCodeParamsToJSON, redeemReferralCodeResponseFromJSON, redeemRewardCodeParamsToJSON, redeemRewardCodeResponseFromJSON, referralCustomerFromJSON, referralFromJSON, refreshKeyParamsToJSON, refreshKeyResponseFromJSON, requestBodyToJSON, resultFromJSON, revenuecatFromJSON, revokeKeyParamsToJSON, revokeKeyResponseFromJSON, rewardsFromJSON, rewardsListParamsToJSON, securityToJSON, serverURLFromOptions, setupPaymentAddItemPlanItemToJSON, setupPaymentAddItemPriceToJSON, setupPaymentAddItemProrationToJSON, setupPaymentAddItemResetToJSON, setupPaymentAddItemRolloverToJSON, setupPaymentAddItemTierToJSON, setupPaymentAddItemToToJSON, setupPaymentAttachDiscountToJSON, setupPaymentAutoTopupToJSON, setupPaymentBasePriceToJSON, setupPaymentBillingControlsToJSON, setupPaymentCarryOverBalancesToJSON, setupPaymentCarryOverUsagesToJSON, setupPaymentCustomLineItemToJSON, setupPaymentCustomizeToJSON, setupPaymentFeatureQuantityToJSON, setupPaymentFilterToJSON, setupPaymentFreeTrialParamsToJSON, setupPaymentIntervalUnionToJSON, setupPaymentItemPlanItemToJSON, setupPaymentItemPriceToJSON, setupPaymentItemProrationToJSON, setupPaymentItemResetToJSON, setupPaymentItemRolloverToJSON, setupPaymentItemTierToJSON, setupPaymentItemToToJSON, setupPaymentOverageAllowedToJSON, setupPaymentParamsToJSON, setupPaymentPlanItemFilterToJSON, setupPaymentPropertiesToJSON, setupPaymentPurchaseLimitToJSON, setupPaymentResponseFromJSON, setupPaymentSpendLimitToJSON, setupPaymentUsageAlertToJSON, setupPaymentUsageLimitToJSON, startingAfter2ToJSON, startsAt2ToJSON, stripeFromJSON, subscriptionFromJSON, syncRevenueCatAppFromJSON, syncRevenueCatParamsToJSON, syncRevenueCatResponseFromJSON, totalFromJSON, trackDeduction1FromJSON, trackDeduction2FromJSON, trackIntervalUnion1FromJSON, trackIntervalUnion2FromJSON, trackLockToJSON, trackParamsToJSON, trackReset1FromJSON, trackReset2FromJSON, trackResponseBody1FromJSON, trackResponseBody2FromJSON, trackResponseFromJSON, trackTokensDeduction1FromJSON, trackTokensDeduction2FromJSON, trackTokensIntervalUnion1FromJSON, trackTokensIntervalUnion2FromJSON, trackTokensParamsToJSON, trackTokensReset1FromJSON, trackTokensReset2FromJSON, trackTokensResponseBody1FromJSON, trackTokensResponseBody2FromJSON, trackTokensResponseFromJSON, trialsUsedFromJSON, index as types, updateBalanceParamsToJSON, updateBalanceResponseFromJSON, updateCustomerAutoTopupRequestToJSON, updateCustomerAutoTopupResponseFromJSON, updateCustomerBillingControlsRequestToJSON, updateCustomerBillingControlsResponseFromJSON, updateCustomerConfigRequestToJSON, updateCustomerConfigResponseFromJSON, updateCustomerCreditSchemaFromJSON, updateCustomerDisplayFromJSON, updateCustomerFeatureFromJSON, updateCustomerFilterRequestToJSON, updateCustomerFilterResponseFromJSON, updateCustomerFlagsFromJSON, updateCustomerModelMarkupsFromJSON, updateCustomerOverageAllowedRequestToJSON, updateCustomerOverageAllowedResponseFromJSON, updateCustomerParamsToJSON, updateCustomerProcessorsFromJSON, updateCustomerPropertiesToJSON, updateCustomerProviderMarkupsFromJSON, updateCustomerPurchaseFromJSON, updateCustomerPurchaseLimitRequestToJSON, updateCustomerPurchaseLimitResponse1FromJSON, updateCustomerPurchaseLimitResponse2FromJSON, updateCustomerPurchaseLimitUnionFromJSON, updateCustomerResponseFromJSON, updateCustomerRevenuecatFromJSON, updateCustomerSpendLimitRequestToJSON, updateCustomerSpendLimitResponseFromJSON, updateCustomerStripeFromJSON, updateCustomerSubscriptionFromJSON, updateCustomerUsageAlertRequestBodyToJSON, updateCustomerUsageAlertResponseFromJSON, updateCustomerUsageLimitRequestToJSON, updateCustomerUsageLimitResponseFromJSON, updateCustomerVercelFromJSON, updateEntityBillingControlsRequestToJSON, updateEntityBillingControlsResponseFromJSON, updateEntityCreditSchemaFromJSON, updateEntityDisplayFromJSON, updateEntityFeatureFromJSON, updateEntityFilterRequestToJSON, updateEntityFilterResponseFromJSON, updateEntityFlagsFromJSON, updateEntityInvoiceFromJSON, updateEntityModelMarkupsFromJSON, updateEntityOverageAllowedRequestToJSON, updateEntityOverageAllowedResponseFromJSON, updateEntityParamsToJSON, updateEntityPropertiesToJSON, updateEntityProviderMarkupsFromJSON, updateEntityPurchaseFromJSON, updateEntityResponseFromJSON, updateEntitySpendLimitRequestToJSON, updateEntitySpendLimitResponseFromJSON, updateEntitySubscriptionFromJSON, updateEntityUsageAlertRequestBodyToJSON, updateEntityUsageAlertResponseFromJSON, updateEntityUsageLimitRequestToJSON, updateEntityUsageLimitResponseFromJSON, updateFeatureCreditSchemaRequestBodyToJSON, updateFeatureCreditSchemaResponseFromJSON, updateFeatureDisplayRequestBodyToJSON, updateFeatureDisplayResponseFromJSON, updateFeatureModelMarkupsRequestToJSON, updateFeatureModelMarkupsResponseFromJSON, updateFeatureParamsToJSON, updateFeatureProviderMarkupsRequestToJSON, updateFeatureProviderMarkupsResponseFromJSON, updateFeatureResponseFromJSON, updatePlanAutoTopupRequestToJSON, updatePlanAutoTopupResponseFromJSON, updatePlanBasePriceRequestToJSON, updatePlanBasePriceResponseFromJSON, updatePlanBillingControlsRequestToJSON, updatePlanBillingControlsResponseFromJSON, updatePlanConfigRequestToJSON, updatePlanConfigResponseFromJSON, updatePlanCreditSchemaFromJSON, updatePlanCustomerEligibilityFromJSON, updatePlanCustomizeResponseFromJSON, updatePlanFeatureDisplayFromJSON, updatePlanFeatureFromJSON, updatePlanFilterRequestToJSON, updatePlanFilterResponseFromJSON, updatePlanFreeTrialFromJSON, updatePlanFreeTrialParamsRequestToJSON, updatePlanFreeTrialParamsResponseFromJSON, updatePlanItemDisplayFromJSON, updatePlanItemFromJSON, updatePlanItemPlanItemToJSON, updatePlanItemPriceRequestBodyToJSON, updatePlanItemPriceResponseFromJSON, updatePlanItemProrationToJSON, updatePlanItemResetRequestBodyToJSON, updatePlanItemResetResponseFromJSON, updatePlanItemRolloverRequestBodyToJSON, updatePlanItemRolloverResponseFromJSON, updatePlanItemTierRequestBodyToJSON, updatePlanItemTierResponseFromJSON, updatePlanItemToRequestBodyToJSON, updatePlanItemToResponseFromJSON, updatePlanOverageAllowedRequestToJSON, updatePlanOverageAllowedResponseFromJSON, updatePlanParamsToJSON, updatePlanPlanItemFilterResponseFromJSON, updatePlanPlanItemResponseFromJSON, updatePlanPriceDisplayFromJSON, updatePlanPriceResponseFromJSON, updatePlanPropertiesToJSON, updatePlanProrationResponseFromJSON, updatePlanPurchaseLimitRequestToJSON, updatePlanPurchaseLimitResponseFromJSON, updatePlanResponseFromJSON, updatePlanSpendLimitRequestToJSON, updatePlanSpendLimitResponseFromJSON, updatePlanUsageAlertRequestBodyToJSON, updatePlanUsageAlertResponseFromJSON, updatePlanUsageLimitRequestToJSON, updatePlanUsageLimitResponseFromJSON, updatePlanVariantDetailsAutoTopupFromJSON, updatePlanVariantDetailsBillingControlsFromJSON, updatePlanVariantDetailsFilterFromJSON, updatePlanVariantDetailsFromJSON, updatePlanVariantDetailsIntervalUnionFromJSON, updatePlanVariantDetailsOverageAllowedFromJSON, updatePlanVariantDetailsPriceFromJSON, updatePlanVariantDetailsPurchaseLimitFromJSON, updatePlanVariantDetailsResetFromJSON, updatePlanVariantDetailsRolloverFromJSON, updatePlanVariantDetailsSpendLimitFromJSON, updatePlanVariantDetailsTierFromJSON, updatePlanVariantDetailsToFromJSON, updatePlanVariantDetailsUsageAlertFromJSON, updatePlanVariantDetailsUsageLimitFromJSON, updateSubscriptionParamsToJSON, variantAutoTopupToJSON, variantBasePriceToJSON, variantBillingControlsToJSON, variantCustomizeToJSON, variantDetailsFromJSON, variantFilterToJSON, variantFreeTrialParamsToJSON, variantIntervalUnionToJSON, variantMigrationToJSON, variantOverageAllowedToJSON, variantPlanItemFilterToJSON, variantPlanItemToJSON, variantPriceToJSON, variantPropertiesToJSON, variantProrationToJSON, variantPurchaseLimitToJSON, variantResetToJSON, variantRolloverToJSON, variantSpendLimitToJSON, variantTierToJSON, variantToJSON, variantToToJSON, variantUsageAlertToJSON, variantUsageLimitToJSON, vercelFromJSON };
|
|
36317
|
+
export { type AggregateEventsCustomRange, type AggregateEventsCustomRange$Outbound, AggregateEventsCustomRange$outboundSchema, type AggregateEventsFeatureId, type AggregateEventsFeatureId$Outbound, AggregateEventsFeatureId$outboundSchema, type AggregateEventsGlobals, type AggregateEventsList, AggregateEventsList$inboundSchema, type AggregateEventsResponse, AggregateEventsResponse$inboundSchema, type ApiKey, ApiKey$inboundSchema, AttachAction, AttachAction$inboundSchema, AttachAddItemBillingMethod, AttachAddItemBillingMethod$outboundSchema, AttachAddItemExpiryDurationType, AttachAddItemExpiryDurationType$outboundSchema, AttachAddItemOnDecrease, AttachAddItemOnDecrease$outboundSchema, AttachAddItemOnIncrease, AttachAddItemOnIncrease$outboundSchema, type AttachAddItemPlanItem, type AttachAddItemPlanItem$Outbound, AttachAddItemPlanItem$outboundSchema, type AttachAddItemPrice, type AttachAddItemPrice$Outbound, AttachAddItemPrice$outboundSchema, AttachAddItemPriceInterval, AttachAddItemPriceInterval$outboundSchema, type AttachAddItemProration, type AttachAddItemProration$Outbound, AttachAddItemProration$outboundSchema, type AttachAddItemReset, type AttachAddItemReset$Outbound, AttachAddItemReset$outboundSchema, AttachAddItemResetInterval, AttachAddItemResetInterval$outboundSchema, type AttachAddItemRollover, type AttachAddItemRollover$Outbound, AttachAddItemRollover$outboundSchema, type AttachAddItemTier, type AttachAddItemTier$Outbound, AttachAddItemTier$outboundSchema, AttachAddItemTierBehavior, AttachAddItemTierBehavior$outboundSchema, type AttachAddItemTo, type AttachAddItemTo$Outbound, AttachAddItemTo$outboundSchema, type AttachAttachDiscount, type AttachAttachDiscount$Outbound, AttachAttachDiscount$outboundSchema, type AttachAutoTopup, type AttachAutoTopup$Outbound, AttachAutoTopup$outboundSchema, type AttachBasePrice, type AttachBasePrice$Outbound, AttachBasePrice$outboundSchema, type AttachBillingControls, type AttachBillingControls$Outbound, AttachBillingControls$outboundSchema, type AttachCarryOverBalances, type AttachCarryOverBalances$Outbound, AttachCarryOverBalances$outboundSchema, type AttachCarryOverUsages, type AttachCarryOverUsages$Outbound, AttachCarryOverUsages$outboundSchema, AttachCode, AttachCode$inboundSchema, type AttachCustomLineItem, type AttachCustomLineItem$Outbound, AttachCustomLineItem$outboundSchema, type AttachCustomize, type AttachCustomize$Outbound, AttachCustomize$outboundSchema, AttachDurationType, AttachDurationType$outboundSchema, type AttachFeatureQuantity, type AttachFeatureQuantity$Outbound, AttachFeatureQuantity$outboundSchema, type AttachFilter, type AttachFilter$Outbound, AttachFilter$outboundSchema, type AttachFreeTrialParams, type AttachFreeTrialParams$Outbound, AttachFreeTrialParams$outboundSchema, type AttachGlobals, AttachIntervalRemoveItemEnum1, AttachIntervalRemoveItemEnum1$outboundSchema, AttachIntervalRemoveItemEnum2, AttachIntervalRemoveItemEnum2$outboundSchema, type AttachIntervalUnion, type AttachIntervalUnion$Outbound, AttachIntervalUnion$outboundSchema, type AttachInvoice, AttachInvoice$inboundSchema, type AttachInvoiceMode, type AttachInvoiceMode$Outbound, AttachInvoiceMode$outboundSchema, AttachItemBillingMethod, AttachItemBillingMethod$outboundSchema, AttachItemExpiryDurationType, AttachItemExpiryDurationType$outboundSchema, AttachItemOnDecrease, AttachItemOnDecrease$outboundSchema, AttachItemOnIncrease, AttachItemOnIncrease$outboundSchema, type AttachItemPlanItem, type AttachItemPlanItem$Outbound, AttachItemPlanItem$outboundSchema, type AttachItemPrice, type AttachItemPrice$Outbound, AttachItemPrice$outboundSchema, AttachItemPriceInterval, AttachItemPriceInterval$outboundSchema, type AttachItemProration, type AttachItemProration$Outbound, AttachItemProration$outboundSchema, type AttachItemReset, type AttachItemReset$Outbound, AttachItemReset$outboundSchema, AttachItemResetInterval, AttachItemResetInterval$outboundSchema, type AttachItemRollover, type AttachItemRollover$Outbound, AttachItemRollover$outboundSchema, type AttachItemTier, type AttachItemTier$Outbound, AttachItemTier$outboundSchema, AttachItemTierBehavior, AttachItemTierBehavior$outboundSchema, type AttachItemTo, type AttachItemTo$Outbound, AttachItemTo$outboundSchema, AttachLimitType, AttachLimitType$outboundSchema, AttachOnEnd, AttachOnEnd$outboundSchema, type AttachOverageAllowed, type AttachOverageAllowed$Outbound, AttachOverageAllowed$outboundSchema, type AttachParams, type AttachParams$Outbound, AttachParams$outboundSchema, type AttachPlanItemFilter, type AttachPlanItemFilter$Outbound, AttachPlanItemFilter$outboundSchema, AttachPlanSchedule, AttachPlanSchedule$outboundSchema, AttachPriceInterval, AttachPriceInterval$outboundSchema, type AttachProperties, type AttachProperties$Outbound, AttachProperties$outboundSchema, AttachProrationBehavior, AttachProrationBehavior$outboundSchema, type AttachPurchaseLimit, type AttachPurchaseLimit$Outbound, AttachPurchaseLimit$outboundSchema, AttachPurchaseLimitInterval, AttachPurchaseLimitInterval$outboundSchema, AttachRedirectMode, AttachRedirectMode$outboundSchema, AttachRemoveItemBillingMethod, AttachRemoveItemBillingMethod$outboundSchema, type AttachRequiredAction, AttachRequiredAction$inboundSchema, type AttachResponse, AttachResponse$inboundSchema, type AttachSpendLimit, type AttachSpendLimit$Outbound, AttachSpendLimit$outboundSchema, AttachThresholdType, AttachThresholdType$outboundSchema, type AttachUsageAlert, type AttachUsageAlert$Outbound, AttachUsageAlert$outboundSchema, type AttachUsageLimit, type AttachUsageLimit$Outbound, AttachUsageLimit$outboundSchema, AttachUsageLimitInterval, AttachUsageLimitInterval$outboundSchema, Autumn, AutumnDefaultError, AutumnError, type Balance, Balance$inboundSchema, BalanceBillingMethod, BalanceBillingMethod$inboundSchema, type BalanceCreditSchema, BalanceCreditSchema$inboundSchema, type BalanceDisplay, BalanceDisplay$inboundSchema, type BalanceFeature, BalanceFeature$inboundSchema, BalanceIntervalEnum, BalanceIntervalEnum$inboundSchema, type BalanceIntervalUnion, BalanceIntervalUnion$inboundSchema, type BalanceModelMarkups, BalanceModelMarkups$inboundSchema, type BalancePrice, BalancePrice$inboundSchema, type BalanceProviderMarkups, BalanceProviderMarkups$inboundSchema, type BalanceReset, BalanceReset$inboundSchema, type BalanceRollover, BalanceRollover$inboundSchema, type BalanceTier, BalanceTier$inboundSchema, BalanceTierBehavior, BalanceTierBehavior$inboundSchema, type BalanceTo, BalanceTo$inboundSchema, BalanceType, BalanceType$inboundSchema, type BasePrice, BasePrice$inboundSchema, type BatchTrackGlobals, type BatchTrackLock, type BatchTrackLock$Outbound, BatchTrackLock$outboundSchema, type BatchTrackResponse, BatchTrackResponse$inboundSchema, type Billable, type Billable$Outbound, Billable$outboundSchema, BillableProcessor, BillableProcessor$outboundSchema, BillingCycleAnchor2, BillingCycleAnchor2$outboundSchema, BillingUpdateAddItemBillingMethod, BillingUpdateAddItemBillingMethod$outboundSchema, BillingUpdateAddItemExpiryDurationType, BillingUpdateAddItemExpiryDurationType$outboundSchema, BillingUpdateAddItemOnDecrease, BillingUpdateAddItemOnDecrease$outboundSchema, BillingUpdateAddItemOnIncrease, BillingUpdateAddItemOnIncrease$outboundSchema, type BillingUpdateAddItemPlanItem, type BillingUpdateAddItemPlanItem$Outbound, BillingUpdateAddItemPlanItem$outboundSchema, type BillingUpdateAddItemPrice, type BillingUpdateAddItemPrice$Outbound, BillingUpdateAddItemPrice$outboundSchema, BillingUpdateAddItemPriceInterval, BillingUpdateAddItemPriceInterval$outboundSchema, type BillingUpdateAddItemProration, type BillingUpdateAddItemProration$Outbound, BillingUpdateAddItemProration$outboundSchema, type BillingUpdateAddItemReset, type BillingUpdateAddItemReset$Outbound, BillingUpdateAddItemReset$outboundSchema, BillingUpdateAddItemResetInterval, BillingUpdateAddItemResetInterval$outboundSchema, type BillingUpdateAddItemRollover, type BillingUpdateAddItemRollover$Outbound, BillingUpdateAddItemRollover$outboundSchema, type BillingUpdateAddItemTier, type BillingUpdateAddItemTier$Outbound, BillingUpdateAddItemTier$outboundSchema, BillingUpdateAddItemTierBehavior, BillingUpdateAddItemTierBehavior$outboundSchema, type BillingUpdateAddItemTo, type BillingUpdateAddItemTo$Outbound, BillingUpdateAddItemTo$outboundSchema, type BillingUpdateAttachDiscount, type BillingUpdateAttachDiscount$Outbound, BillingUpdateAttachDiscount$outboundSchema, type BillingUpdateAutoTopup, type BillingUpdateAutoTopup$Outbound, BillingUpdateAutoTopup$outboundSchema, type BillingUpdateBasePrice, type BillingUpdateBasePrice$Outbound, BillingUpdateBasePrice$outboundSchema, type BillingUpdateBillingControls, type BillingUpdateBillingControls$Outbound, BillingUpdateBillingControls$outboundSchema, BillingUpdateCancelAction, BillingUpdateCancelAction$outboundSchema, type BillingUpdateCarryOverUsages, type BillingUpdateCarryOverUsages$Outbound, BillingUpdateCarryOverUsages$outboundSchema, BillingUpdateCode, BillingUpdateCode$inboundSchema, type BillingUpdateCustomize, type BillingUpdateCustomize$Outbound, BillingUpdateCustomize$outboundSchema, BillingUpdateDurationType, BillingUpdateDurationType$outboundSchema, type BillingUpdateFeatureQuantity, type BillingUpdateFeatureQuantity$Outbound, BillingUpdateFeatureQuantity$outboundSchema, type BillingUpdateFilter, type BillingUpdateFilter$Outbound, BillingUpdateFilter$outboundSchema, type BillingUpdateFreeTrialParams, type BillingUpdateFreeTrialParams$Outbound, BillingUpdateFreeTrialParams$outboundSchema, type BillingUpdateGlobals, BillingUpdateIntervalRemoveItemEnum1, BillingUpdateIntervalRemoveItemEnum1$outboundSchema, BillingUpdateIntervalRemoveItemEnum2, BillingUpdateIntervalRemoveItemEnum2$outboundSchema, type BillingUpdateIntervalUnion, type BillingUpdateIntervalUnion$Outbound, BillingUpdateIntervalUnion$outboundSchema, type BillingUpdateInvoice, BillingUpdateInvoice$inboundSchema, type BillingUpdateInvoiceMode, type BillingUpdateInvoiceMode$Outbound, BillingUpdateInvoiceMode$outboundSchema, BillingUpdateItemBillingMethod, BillingUpdateItemBillingMethod$outboundSchema, BillingUpdateItemExpiryDurationType, BillingUpdateItemExpiryDurationType$outboundSchema, BillingUpdateItemOnDecrease, BillingUpdateItemOnDecrease$outboundSchema, BillingUpdateItemOnIncrease, BillingUpdateItemOnIncrease$outboundSchema, type BillingUpdateItemPlanItem, type BillingUpdateItemPlanItem$Outbound, BillingUpdateItemPlanItem$outboundSchema, type BillingUpdateItemPrice, type BillingUpdateItemPrice$Outbound, BillingUpdateItemPrice$outboundSchema, BillingUpdateItemPriceInterval, BillingUpdateItemPriceInterval$outboundSchema, type BillingUpdateItemProration, type BillingUpdateItemProration$Outbound, BillingUpdateItemProration$outboundSchema, type BillingUpdateItemReset, type BillingUpdateItemReset$Outbound, BillingUpdateItemReset$outboundSchema, BillingUpdateItemResetInterval, BillingUpdateItemResetInterval$outboundSchema, type BillingUpdateItemRollover, type BillingUpdateItemRollover$Outbound, BillingUpdateItemRollover$outboundSchema, type BillingUpdateItemTier, type BillingUpdateItemTier$Outbound, BillingUpdateItemTier$outboundSchema, BillingUpdateItemTierBehavior, BillingUpdateItemTierBehavior$outboundSchema, type BillingUpdateItemTo, type BillingUpdateItemTo$Outbound, BillingUpdateItemTo$outboundSchema, BillingUpdateLimitType, BillingUpdateLimitType$outboundSchema, BillingUpdateOnEnd, BillingUpdateOnEnd$outboundSchema, type BillingUpdateOverageAllowed, type BillingUpdateOverageAllowed$Outbound, BillingUpdateOverageAllowed$outboundSchema, type BillingUpdatePlanItemFilter, type BillingUpdatePlanItemFilter$Outbound, BillingUpdatePlanItemFilter$outboundSchema, BillingUpdatePriceInterval, BillingUpdatePriceInterval$outboundSchema, type BillingUpdateProperties, type BillingUpdateProperties$Outbound, BillingUpdateProperties$outboundSchema, BillingUpdateProrationBehavior, BillingUpdateProrationBehavior$outboundSchema, type BillingUpdatePurchaseLimit, type BillingUpdatePurchaseLimit$Outbound, BillingUpdatePurchaseLimit$outboundSchema, BillingUpdatePurchaseLimitInterval, BillingUpdatePurchaseLimitInterval$outboundSchema, type BillingUpdateRecalculateBalances, type BillingUpdateRecalculateBalances$Outbound, BillingUpdateRecalculateBalances$outboundSchema, BillingUpdateRedirectMode, BillingUpdateRedirectMode$outboundSchema, BillingUpdateRefundLastPayment, BillingUpdateRefundLastPayment$outboundSchema, BillingUpdateRemoveItemBillingMethod, BillingUpdateRemoveItemBillingMethod$outboundSchema, type BillingUpdateRequiredAction, BillingUpdateRequiredAction$inboundSchema, type BillingUpdateResponse, BillingUpdateResponse$inboundSchema, type BillingUpdateSpendLimit, type BillingUpdateSpendLimit$Outbound, BillingUpdateSpendLimit$outboundSchema, BillingUpdateThresholdType, BillingUpdateThresholdType$outboundSchema, type BillingUpdateUsageAlert, type BillingUpdateUsageAlert$Outbound, BillingUpdateUsageAlert$outboundSchema, type BillingUpdateUsageLimit, type BillingUpdateUsageLimit$Outbound, BillingUpdateUsageLimit$outboundSchema, BillingUpdateUsageLimitInterval, BillingUpdateUsageLimitInterval$outboundSchema, BinSize, BinSize$outboundSchema, type Breakdown, Breakdown$inboundSchema, type CheckAutoTopup1, CheckAutoTopup1$inboundSchema, type CheckAutoTopup2, CheckAutoTopup2$inboundSchema, type CheckBillingControls1, CheckBillingControls1$inboundSchema, type CheckBillingControls2, CheckBillingControls2$inboundSchema, type CheckConfig1, CheckConfig1$inboundSchema, type CheckConfig2, CheckConfig2$inboundSchema, type CheckCreditSchema1, CheckCreditSchema1$inboundSchema, type CheckCreditSchema2, CheckCreditSchema2$inboundSchema, CheckEnv1, CheckEnv1$inboundSchema, CheckEnv2, CheckEnv2$inboundSchema, type CheckFeature1, CheckFeature1$inboundSchema, type CheckFeature2, CheckFeature2$inboundSchema, type CheckFilter1, CheckFilter1$inboundSchema, type CheckFilter2, CheckFilter2$inboundSchema, type CheckFreeTrial1, CheckFreeTrial1$inboundSchema, type CheckFreeTrial2, CheckFreeTrial2$inboundSchema, type CheckGlobals, type CheckItem1, CheckItem1$inboundSchema, type CheckItem2, CheckItem2$inboundSchema, CheckItemInterval1, CheckItemInterval1$inboundSchema, CheckItemInterval2, CheckItemInterval2$inboundSchema, CheckLimitType1, CheckLimitType1$inboundSchema, CheckLimitType2, CheckLimitType2$inboundSchema, type CheckLock, type CheckLock$Outbound, CheckLock$outboundSchema, type CheckModelMarkups1, CheckModelMarkups1$inboundSchema, type CheckModelMarkups2, CheckModelMarkups2$inboundSchema, CheckOnDecrease1, CheckOnDecrease1$inboundSchema, CheckOnDecrease2, CheckOnDecrease2$inboundSchema, CheckOnEnd1, CheckOnEnd1$inboundSchema, CheckOnEnd2, CheckOnEnd2$inboundSchema, CheckOnIncrease1, CheckOnIncrease1$inboundSchema, CheckOnIncrease2, CheckOnIncrease2$inboundSchema, type CheckOverageAllowed1, CheckOverageAllowed1$inboundSchema, type CheckOverageAllowed2, CheckOverageAllowed2$inboundSchema, type CheckParams, type CheckParams$Outbound, CheckParams$outboundSchema, type CheckProduct1, CheckProduct1$inboundSchema, type CheckProduct2, CheckProduct2$inboundSchema, type CheckProperties1, CheckProperties1$inboundSchema, type CheckProperties2, CheckProperties2$inboundSchema, type CheckProviderMarkups1, CheckProviderMarkups1$inboundSchema, type CheckProviderMarkups2, CheckProviderMarkups2$inboundSchema, type CheckPurchaseLimit1, CheckPurchaseLimit1$inboundSchema, type CheckPurchaseLimit2, CheckPurchaseLimit2$inboundSchema, CheckPurchaseLimitInterval1, CheckPurchaseLimitInterval1$inboundSchema, CheckPurchaseLimitInterval2, CheckPurchaseLimitInterval2$inboundSchema, type CheckResponse, CheckResponse$inboundSchema, type CheckResponseBody1, CheckResponseBody1$inboundSchema, type CheckResponseBody2, CheckResponseBody2$inboundSchema, type CheckRollover1, CheckRollover1$inboundSchema, type CheckRollover2, CheckRollover2$inboundSchema, type CheckSpendLimit1, CheckSpendLimit1$inboundSchema, type CheckSpendLimit2, CheckSpendLimit2$inboundSchema, CheckThresholdType1, CheckThresholdType1$inboundSchema, CheckThresholdType2, CheckThresholdType2$inboundSchema, CheckTierBehavior1, CheckTierBehavior1$inboundSchema, CheckTierBehavior2, CheckTierBehavior2$inboundSchema, type CheckUsageAlert1, CheckUsageAlert1$inboundSchema, type CheckUsageAlert2, CheckUsageAlert2$inboundSchema, type CheckUsageLimit1, CheckUsageLimit1$inboundSchema, type CheckUsageLimit2, CheckUsageLimit2$inboundSchema, CheckUsageLimitInterval1, CheckUsageLimitInterval1$inboundSchema, CheckUsageLimitInterval2, CheckUsageLimitInterval2$inboundSchema, ConfigDuration1, ConfigDuration1$inboundSchema, ConfigDuration2, ConfigDuration2$inboundSchema, ConnectionError, type Coupon, Coupon$inboundSchema, type CouponPromoCode, CouponPromoCode$inboundSchema, CouponType, CouponType$inboundSchema, CreateBalanceDuration, CreateBalanceDuration$outboundSchema, type CreateBalanceGlobals, CreateBalanceInterval, CreateBalanceInterval$outboundSchema, type CreateBalanceParams, type CreateBalanceParams$Outbound, CreateBalanceParams$outboundSchema, type CreateBalanceReset, type CreateBalanceReset$Outbound, CreateBalanceReset$outboundSchema, type CreateBalanceResponse, CreateBalanceResponse$inboundSchema, type CreateBalanceRollover, type CreateBalanceRollover$Outbound, CreateBalanceRollover$outboundSchema, type CreateEntityBillingControlsRequest, type CreateEntityBillingControlsRequest$Outbound, CreateEntityBillingControlsRequest$outboundSchema, type CreateEntityBillingControlsResponse, CreateEntityBillingControlsResponse$inboundSchema, type CreateEntityCreditSchema, CreateEntityCreditSchema$inboundSchema, type CreateEntityDisplay, CreateEntityDisplay$inboundSchema, CreateEntityEnv, CreateEntityEnv$inboundSchema, type CreateEntityFeature, CreateEntityFeature$inboundSchema, type CreateEntityFilterRequest, type CreateEntityFilterRequest$Outbound, CreateEntityFilterRequest$outboundSchema, type CreateEntityFilterResponse, CreateEntityFilterResponse$inboundSchema, type CreateEntityFlags, CreateEntityFlags$inboundSchema, type CreateEntityGlobals, CreateEntityIntervalRequestBody, CreateEntityIntervalRequestBody$outboundSchema, CreateEntityIntervalResponse, CreateEntityIntervalResponse$inboundSchema, type CreateEntityInvoice, CreateEntityInvoice$inboundSchema, CreateEntityLimitTypeRequestBody, CreateEntityLimitTypeRequestBody$outboundSchema, CreateEntityLimitTypeResponse, CreateEntityLimitTypeResponse$inboundSchema, type CreateEntityModelMarkups, CreateEntityModelMarkups$inboundSchema, type CreateEntityOverageAllowedRequest, type CreateEntityOverageAllowedRequest$Outbound, CreateEntityOverageAllowedRequest$outboundSchema, type CreateEntityOverageAllowedResponse, CreateEntityOverageAllowedResponse$inboundSchema, type CreateEntityParams, type CreateEntityParams$Outbound, CreateEntityParams$outboundSchema, CreateEntityProcessorType, CreateEntityProcessorType$inboundSchema, type CreateEntityProperties, type CreateEntityProperties$Outbound, CreateEntityProperties$outboundSchema, type CreateEntityProviderMarkups, CreateEntityProviderMarkups$inboundSchema, type CreateEntityPurchase, CreateEntityPurchase$inboundSchema, CreateEntityPurchaseScope, CreateEntityPurchaseScope$inboundSchema, type CreateEntityResponse, CreateEntityResponse$inboundSchema, type CreateEntitySpendLimitRequest, type CreateEntitySpendLimitRequest$Outbound, CreateEntitySpendLimitRequest$outboundSchema, type CreateEntitySpendLimitResponse, CreateEntitySpendLimitResponse$inboundSchema, CreateEntityStatus, CreateEntityStatus$inboundSchema, type CreateEntitySubscription, CreateEntitySubscription$inboundSchema, CreateEntitySubscriptionScope, CreateEntitySubscriptionScope$inboundSchema, CreateEntityThresholdTypeRequestBody, CreateEntityThresholdTypeRequestBody$outboundSchema, CreateEntityThresholdTypeResponse, CreateEntityThresholdTypeResponse$inboundSchema, CreateEntityType, CreateEntityType$inboundSchema, type CreateEntityUsageAlertRequestBody, type CreateEntityUsageAlertRequestBody$Outbound, CreateEntityUsageAlertRequestBody$outboundSchema, type CreateEntityUsageAlertResponse, CreateEntityUsageAlertResponse$inboundSchema, type CreateEntityUsageLimitRequest, type CreateEntityUsageLimitRequest$Outbound, CreateEntityUsageLimitRequest$outboundSchema, type CreateEntityUsageLimitResponse, CreateEntityUsageLimitResponse$inboundSchema, type CreateFeatureCreditSchemaRequestBody, type CreateFeatureCreditSchemaRequestBody$Outbound, CreateFeatureCreditSchemaRequestBody$outboundSchema, type CreateFeatureCreditSchemaResponse, CreateFeatureCreditSchemaResponse$inboundSchema, type CreateFeatureDisplayRequestBody, type CreateFeatureDisplayRequestBody$Outbound, CreateFeatureDisplayRequestBody$outboundSchema, type CreateFeatureDisplayResponse, CreateFeatureDisplayResponse$inboundSchema, type CreateFeatureGlobals, type CreateFeatureModelMarkupsRequest, type CreateFeatureModelMarkupsRequest$Outbound, CreateFeatureModelMarkupsRequest$outboundSchema, type CreateFeatureModelMarkupsResponse, CreateFeatureModelMarkupsResponse$inboundSchema, type CreateFeatureParams, type CreateFeatureParams$Outbound, CreateFeatureParams$outboundSchema, type CreateFeatureProviderMarkupsRequest, type CreateFeatureProviderMarkupsRequest$Outbound, CreateFeatureProviderMarkupsRequest$outboundSchema, type CreateFeatureProviderMarkupsResponse, CreateFeatureProviderMarkupsResponse$inboundSchema, type CreateFeatureResponse, CreateFeatureResponse$inboundSchema, CreateFeatureTypeRequestBody, CreateFeatureTypeRequestBody$outboundSchema, CreateFeatureTypeResponse, CreateFeatureTypeResponse$inboundSchema, CreatePlanAddItemBillingMethod, CreatePlanAddItemBillingMethod$inboundSchema, CreatePlanAddItemPriceInterval, CreatePlanAddItemPriceInterval$inboundSchema, CreatePlanAddItemResetInterval, CreatePlanAddItemResetInterval$inboundSchema, CreatePlanAttachAction, CreatePlanAttachAction$inboundSchema, type CreatePlanAutoTopupRequest, type CreatePlanAutoTopupRequest$Outbound, CreatePlanAutoTopupRequest$outboundSchema, type CreatePlanAutoTopupResponse, CreatePlanAutoTopupResponse$inboundSchema, type CreatePlanBasePrice, CreatePlanBasePrice$inboundSchema, type CreatePlanBillingControlsRequest, type CreatePlanBillingControlsRequest$Outbound, CreatePlanBillingControlsRequest$outboundSchema, type CreatePlanBillingControlsResponse, CreatePlanBillingControlsResponse$inboundSchema, CreatePlanBillingMethodRequestBody, CreatePlanBillingMethodRequestBody$outboundSchema, type CreatePlanConfigRequest, type CreatePlanConfigRequest$Outbound, CreatePlanConfigRequest$outboundSchema, type CreatePlanConfigResponse, CreatePlanConfigResponse$inboundSchema, type CreatePlanCreditSchema, CreatePlanCreditSchema$inboundSchema, type CreatePlanCustomerEligibility, CreatePlanCustomerEligibility$inboundSchema, type CreatePlanCustomize, CreatePlanCustomize$inboundSchema, CreatePlanDurationTypeRequest, CreatePlanDurationTypeRequest$outboundSchema, CreatePlanDurationTypeResponse, CreatePlanDurationTypeResponse$inboundSchema, CreatePlanEnv, CreatePlanEnv$inboundSchema, CreatePlanExpiryDurationTypeRequestBody, CreatePlanExpiryDurationTypeRequestBody$outboundSchema, type CreatePlanFeature, CreatePlanFeature$inboundSchema, type CreatePlanFeatureDisplay, CreatePlanFeatureDisplay$inboundSchema, type CreatePlanFilterRequest, type CreatePlanFilterRequest$Outbound, CreatePlanFilterRequest$outboundSchema, type CreatePlanFilterResponse, CreatePlanFilterResponse$inboundSchema, type CreatePlanFreeTrialParams, CreatePlanFreeTrialParams$inboundSchema, type CreatePlanFreeTrialResponse, CreatePlanFreeTrialResponse$inboundSchema, type CreatePlanGlobals, CreatePlanIntervalRemoveItemEnum1, CreatePlanIntervalRemoveItemEnum1$inboundSchema, CreatePlanIntervalRemoveItemEnum2, CreatePlanIntervalRemoveItemEnum2$inboundSchema, type CreatePlanIntervalUnion, CreatePlanIntervalUnion$inboundSchema, type CreatePlanItem, CreatePlanItem$inboundSchema, CreatePlanItemBillingMethodResponse, CreatePlanItemBillingMethodResponse$inboundSchema, type CreatePlanItemDisplay, CreatePlanItemDisplay$inboundSchema, CreatePlanItemExpiryDurationTypeResponse, CreatePlanItemExpiryDurationTypeResponse$inboundSchema, CreatePlanItemOnDecrease, CreatePlanItemOnDecrease$outboundSchema, CreatePlanItemOnIncrease, CreatePlanItemOnIncrease$outboundSchema, type CreatePlanItemPlanItem, type CreatePlanItemPlanItem$Outbound, CreatePlanItemPlanItem$outboundSchema, CreatePlanItemPriceIntervalRequestBody, CreatePlanItemPriceIntervalRequestBody$outboundSchema, type CreatePlanItemPriceRequestBody, type CreatePlanItemPriceRequestBody$Outbound, CreatePlanItemPriceRequestBody$outboundSchema, type CreatePlanItemPriceResponse, CreatePlanItemPriceResponse$inboundSchema, type CreatePlanItemProration, type CreatePlanItemProration$Outbound, CreatePlanItemProration$outboundSchema, type CreatePlanItemResetResponse, CreatePlanItemResetResponse$inboundSchema, type CreatePlanItemRolloverResponse, CreatePlanItemRolloverResponse$inboundSchema, CreatePlanItemTierBehaviorResponse, CreatePlanItemTierBehaviorResponse$inboundSchema, type CreatePlanItemTierResponse, CreatePlanItemTierResponse$inboundSchema, type CreatePlanItemToResponse, CreatePlanItemToResponse$inboundSchema, CreatePlanLimitTypeRequestBody, CreatePlanLimitTypeRequestBody$outboundSchema, CreatePlanLimitTypeResponse, CreatePlanLimitTypeResponse$inboundSchema, CreatePlanOnEndRequest, CreatePlanOnEndRequest$outboundSchema, CreatePlanOnEndResponse, CreatePlanOnEndResponse$inboundSchema, type CreatePlanOverageAllowedRequest, type CreatePlanOverageAllowedRequest$Outbound, CreatePlanOverageAllowedRequest$outboundSchema, type CreatePlanOverageAllowedResponse, CreatePlanOverageAllowedResponse$inboundSchema, type CreatePlanParams, type CreatePlanParams$Outbound, CreatePlanParams$outboundSchema, type CreatePlanPlanItemFilter, CreatePlanPlanItemFilter$inboundSchema, type CreatePlanPlanItemResponse, CreatePlanPlanItemResponse$inboundSchema, type CreatePlanPriceDisplay, CreatePlanPriceDisplay$inboundSchema, CreatePlanPriceIntervalRequestBody, CreatePlanPriceIntervalRequestBody$outboundSchema, CreatePlanPriceIntervalResponse, CreatePlanPriceIntervalResponse$inboundSchema, CreatePlanPriceItemIntervalResponse, CreatePlanPriceItemIntervalResponse$inboundSchema, type CreatePlanPriceRequestBody, type CreatePlanPriceRequestBody$Outbound, CreatePlanPriceRequestBody$outboundSchema, type CreatePlanPriceResponse, CreatePlanPriceResponse$inboundSchema, CreatePlanPriceVariantDetailsInterval, CreatePlanPriceVariantDetailsInterval$inboundSchema, type CreatePlanProperties, type CreatePlanProperties$Outbound, CreatePlanProperties$outboundSchema, type CreatePlanProrationResponse, CreatePlanProrationResponse$inboundSchema, CreatePlanPurchaseLimitIntervalRequestBody, CreatePlanPurchaseLimitIntervalRequestBody$outboundSchema, CreatePlanPurchaseLimitIntervalResponse, CreatePlanPurchaseLimitIntervalResponse$inboundSchema, type CreatePlanPurchaseLimitRequest, type CreatePlanPurchaseLimitRequest$Outbound, CreatePlanPurchaseLimitRequest$outboundSchema, type CreatePlanPurchaseLimitResponse, CreatePlanPurchaseLimitResponse$inboundSchema, CreatePlanRemoveItemBillingMethod, CreatePlanRemoveItemBillingMethod$inboundSchema, CreatePlanResetIntervalRequestBody, CreatePlanResetIntervalRequestBody$outboundSchema, CreatePlanResetItemIntervalResponse, CreatePlanResetItemIntervalResponse$inboundSchema, type CreatePlanResetRequestBody, type CreatePlanResetRequestBody$Outbound, CreatePlanResetRequestBody$outboundSchema, type CreatePlanResponse, CreatePlanResponse$inboundSchema, type CreatePlanRolloverRequestBody, type CreatePlanRolloverRequestBody$Outbound, CreatePlanRolloverRequestBody$outboundSchema, type CreatePlanSpendLimitRequest, type CreatePlanSpendLimitRequest$Outbound, CreatePlanSpendLimitRequest$outboundSchema, type CreatePlanSpendLimitResponse, CreatePlanSpendLimitResponse$inboundSchema, CreatePlanStatus, CreatePlanStatus$inboundSchema, CreatePlanThresholdTypeRequestBody, CreatePlanThresholdTypeRequestBody$outboundSchema, CreatePlanThresholdTypeResponse, CreatePlanThresholdTypeResponse$inboundSchema, CreatePlanTierBehaviorRequestBody, CreatePlanTierBehaviorRequestBody$outboundSchema, type CreatePlanTierRequestBody, type CreatePlanTierRequestBody$Outbound, CreatePlanTierRequestBody$outboundSchema, type CreatePlanToRequestBody, type CreatePlanToRequestBody$Outbound, CreatePlanToRequestBody$outboundSchema, CreatePlanType, CreatePlanType$inboundSchema, type CreatePlanUsageAlertRequestBody, type CreatePlanUsageAlertRequestBody$Outbound, CreatePlanUsageAlertRequestBody$outboundSchema, type CreatePlanUsageAlertResponse, CreatePlanUsageAlertResponse$inboundSchema, CreatePlanUsageLimitIntervalRequestBody, CreatePlanUsageLimitIntervalRequestBody$outboundSchema, CreatePlanUsageLimitIntervalResponse, CreatePlanUsageLimitIntervalResponse$inboundSchema, type CreatePlanUsageLimitRequest, type CreatePlanUsageLimitRequest$Outbound, CreatePlanUsageLimitRequest$outboundSchema, type CreatePlanUsageLimitResponse, CreatePlanUsageLimitResponse$inboundSchema, type CreatePlanVariantDetails, CreatePlanVariantDetails$inboundSchema, type CreatePlanVariantDetailsAutoTopup, CreatePlanVariantDetailsAutoTopup$inboundSchema, type CreatePlanVariantDetailsBillingControls, CreatePlanVariantDetailsBillingControls$inboundSchema, CreatePlanVariantDetailsDurationType, CreatePlanVariantDetailsDurationType$inboundSchema, CreatePlanVariantDetailsExpiryDurationType, CreatePlanVariantDetailsExpiryDurationType$inboundSchema, type CreatePlanVariantDetailsFilter, CreatePlanVariantDetailsFilter$inboundSchema, CreatePlanVariantDetailsLimitType, CreatePlanVariantDetailsLimitType$inboundSchema, CreatePlanVariantDetailsOnDecrease, CreatePlanVariantDetailsOnDecrease$inboundSchema, CreatePlanVariantDetailsOnEnd, CreatePlanVariantDetailsOnEnd$inboundSchema, CreatePlanVariantDetailsOnIncrease, CreatePlanVariantDetailsOnIncrease$inboundSchema, type CreatePlanVariantDetailsOverageAllowed, CreatePlanVariantDetailsOverageAllowed$inboundSchema, type CreatePlanVariantDetailsPrice, CreatePlanVariantDetailsPrice$inboundSchema, type CreatePlanVariantDetailsPurchaseLimit, CreatePlanVariantDetailsPurchaseLimit$inboundSchema, CreatePlanVariantDetailsPurchaseLimitInterval, CreatePlanVariantDetailsPurchaseLimitInterval$inboundSchema, type CreatePlanVariantDetailsReset, CreatePlanVariantDetailsReset$inboundSchema, type CreatePlanVariantDetailsRollover, CreatePlanVariantDetailsRollover$inboundSchema, type CreatePlanVariantDetailsSpendLimit, CreatePlanVariantDetailsSpendLimit$inboundSchema, CreatePlanVariantDetailsThresholdType, CreatePlanVariantDetailsThresholdType$inboundSchema, type CreatePlanVariantDetailsTier, CreatePlanVariantDetailsTier$inboundSchema, CreatePlanVariantDetailsTierBehavior, CreatePlanVariantDetailsTierBehavior$inboundSchema, type CreatePlanVariantDetailsTo, CreatePlanVariantDetailsTo$inboundSchema, type CreatePlanVariantDetailsUsageAlert, CreatePlanVariantDetailsUsageAlert$inboundSchema, type CreatePlanVariantDetailsUsageLimit, CreatePlanVariantDetailsUsageLimit$inboundSchema, CreatePlanVariantDetailsUsageLimitInterval, CreatePlanVariantDetailsUsageLimitInterval$inboundSchema, type CreateReferralCodeGlobals, type CreateReferralCodeParams, type CreateReferralCodeParams$Outbound, CreateReferralCodeParams$outboundSchema, type CreateReferralCodeResponse, CreateReferralCodeResponse$inboundSchema, CreateScheduleAddItemBillingMethod2, CreateScheduleAddItemBillingMethod2$outboundSchema, CreateScheduleAddItemExpiryDurationType2, CreateScheduleAddItemExpiryDurationType2$outboundSchema, CreateScheduleAddItemOnDecrease2, CreateScheduleAddItemOnDecrease2$outboundSchema, CreateScheduleAddItemOnIncrease2, CreateScheduleAddItemOnIncrease2$outboundSchema, type CreateScheduleAddItemPlanItem2, type CreateScheduleAddItemPlanItem2$Outbound, CreateScheduleAddItemPlanItem2$outboundSchema, type CreateScheduleAddItemPrice2, type CreateScheduleAddItemPrice2$Outbound, CreateScheduleAddItemPrice2$outboundSchema, CreateScheduleAddItemPriceInterval2, CreateScheduleAddItemPriceInterval2$outboundSchema, type CreateScheduleAddItemProration2, type CreateScheduleAddItemProration2$Outbound, CreateScheduleAddItemProration2$outboundSchema, type CreateScheduleAddItemReset2, type CreateScheduleAddItemReset2$Outbound, CreateScheduleAddItemReset2$outboundSchema, CreateScheduleAddItemResetInterval2, CreateScheduleAddItemResetInterval2$outboundSchema, type CreateScheduleAddItemRollover2, type CreateScheduleAddItemRollover2$Outbound, CreateScheduleAddItemRollover2$outboundSchema, type CreateScheduleAddItemTier2, type CreateScheduleAddItemTier2$Outbound, CreateScheduleAddItemTier2$outboundSchema, CreateScheduleAddItemTierBehavior2, CreateScheduleAddItemTierBehavior2$outboundSchema, type CreateScheduleAttachDiscount, type CreateScheduleAttachDiscount$Outbound, CreateScheduleAttachDiscount$outboundSchema, type CreateScheduleAutoTopup2, type CreateScheduleAutoTopup2$Outbound, CreateScheduleAutoTopup2$outboundSchema, type CreateScheduleBasePrice2, type CreateScheduleBasePrice2$Outbound, CreateScheduleBasePrice2$outboundSchema, CreateScheduleBillingBehavior, CreateScheduleBillingBehavior$outboundSchema, type CreateScheduleBillingControls2, type CreateScheduleBillingControls2$Outbound, CreateScheduleBillingControls2$outboundSchema, CreateScheduleCode, CreateScheduleCode$inboundSchema, type CreateScheduleCustomize2, type CreateScheduleCustomize2$Outbound, CreateScheduleCustomize2$outboundSchema, CreateScheduleDurationType2, CreateScheduleDurationType2$outboundSchema, type CreateScheduleFeatureQuantity2, type CreateScheduleFeatureQuantity2$Outbound, CreateScheduleFeatureQuantity2$outboundSchema, type CreateScheduleFilter2, type CreateScheduleFilter2$Outbound, CreateScheduleFilter2$outboundSchema, type CreateScheduleGlobals, CreateScheduleIntervalRemoveItemEnum3, CreateScheduleIntervalRemoveItemEnum3$outboundSchema, CreateScheduleIntervalRemoveItemEnum4, CreateScheduleIntervalRemoveItemEnum4$outboundSchema, type CreateScheduleIntervalUnion2, type CreateScheduleIntervalUnion2$Outbound, CreateScheduleIntervalUnion2$outboundSchema, type CreateScheduleInvoice, CreateScheduleInvoice$inboundSchema, type CreateScheduleInvoiceMode, type CreateScheduleInvoiceMode$Outbound, CreateScheduleInvoiceMode$outboundSchema, CreateScheduleItemBillingMethod2, CreateScheduleItemBillingMethod2$outboundSchema, CreateScheduleItemExpiryDurationType2, CreateScheduleItemExpiryDurationType2$outboundSchema, CreateScheduleItemOnDecrease2, CreateScheduleItemOnDecrease2$outboundSchema, CreateScheduleItemOnIncrease2, CreateScheduleItemOnIncrease2$outboundSchema, type CreateScheduleItemPlanItem2, type CreateScheduleItemPlanItem2$Outbound, CreateScheduleItemPlanItem2$outboundSchema, type CreateScheduleItemPrice2, type CreateScheduleItemPrice2$Outbound, CreateScheduleItemPrice2$outboundSchema, CreateScheduleItemPriceInterval2, CreateScheduleItemPriceInterval2$outboundSchema, type CreateScheduleItemProration2, type CreateScheduleItemProration2$Outbound, CreateScheduleItemProration2$outboundSchema, type CreateScheduleItemReset2, type CreateScheduleItemReset2$Outbound, CreateScheduleItemReset2$outboundSchema, CreateScheduleItemResetInterval2, CreateScheduleItemResetInterval2$outboundSchema, type CreateScheduleItemRollover2, type CreateScheduleItemRollover2$Outbound, CreateScheduleItemRollover2$outboundSchema, type CreateScheduleItemTier2, type CreateScheduleItemTier2$Outbound, CreateScheduleItemTier2$outboundSchema, CreateScheduleItemTierBehavior2, CreateScheduleItemTierBehavior2$outboundSchema, CreateScheduleLimitType2, CreateScheduleLimitType2$outboundSchema, type CreateScheduleOverageAllowed2, type CreateScheduleOverageAllowed2$Outbound, CreateScheduleOverageAllowed2$outboundSchema, type CreateScheduleParams, type CreateScheduleParams$Outbound, CreateScheduleParams$outboundSchema, type CreateSchedulePlan2, type CreateSchedulePlan2$Outbound, CreateSchedulePlan2$outboundSchema, type CreateSchedulePlanItemFilter2, type CreateSchedulePlanItemFilter2$Outbound, CreateSchedulePlanItemFilter2$outboundSchema, CreateSchedulePriceInterval2, CreateSchedulePriceInterval2$outboundSchema, type CreateSchedulePurchaseLimit2, type CreateSchedulePurchaseLimit2$Outbound, CreateSchedulePurchaseLimit2$outboundSchema, CreateSchedulePurchaseLimitInterval2, CreateSchedulePurchaseLimitInterval2$outboundSchema, CreateScheduleRedirectMode, CreateScheduleRedirectMode$outboundSchema, CreateScheduleRemoveItemBillingMethod2, CreateScheduleRemoveItemBillingMethod2$outboundSchema, type CreateScheduleRequiredAction, CreateScheduleRequiredAction$inboundSchema, type CreateScheduleResponse, CreateScheduleResponse$inboundSchema, type CreateScheduleSpendLimit2, type CreateScheduleSpendLimit2$Outbound, CreateScheduleSpendLimit2$outboundSchema, CreateScheduleStatus, CreateScheduleStatus$inboundSchema, CreateScheduleThresholdType2, CreateScheduleThresholdType2$outboundSchema, type CreateScheduleUsageAlert2, type CreateScheduleUsageAlert2$Outbound, CreateScheduleUsageAlert2$outboundSchema, type CreateScheduleUsageLimit2, type CreateScheduleUsageLimit2$Outbound, CreateScheduleUsageLimit2$outboundSchema, CreateScheduleUsageLimitInterval2, CreateScheduleUsageLimitInterval2$outboundSchema, type Customer, Customer$inboundSchema, type CustomerAutoTopup, CustomerAutoTopup$inboundSchema, type CustomerBillingControls, CustomerBillingControls$inboundSchema, type CustomerConfig, CustomerConfig$inboundSchema, type CustomerCreditSchema, CustomerCreditSchema$inboundSchema, type CustomerData, type CustomerData$Outbound, CustomerData$outboundSchema, type CustomerDataAutoTopup, type CustomerDataAutoTopup$Outbound, CustomerDataAutoTopup$outboundSchema, type CustomerDataBillingControls, type CustomerDataBillingControls$Outbound, CustomerDataBillingControls$outboundSchema, type CustomerDataConfig, type CustomerDataConfig$Outbound, CustomerDataConfig$outboundSchema, type CustomerDataFilter, type CustomerDataFilter$Outbound, CustomerDataFilter$outboundSchema, CustomerDataLimitType, CustomerDataLimitType$outboundSchema, type CustomerDataOverageAllowed, type CustomerDataOverageAllowed$Outbound, CustomerDataOverageAllowed$outboundSchema, type CustomerDataPurchaseLimit, type CustomerDataPurchaseLimit$Outbound, CustomerDataPurchaseLimit$outboundSchema, CustomerDataPurchaseLimitInterval, CustomerDataPurchaseLimitInterval$outboundSchema, type CustomerDataSpendLimit, type CustomerDataSpendLimit$Outbound, CustomerDataSpendLimit$outboundSchema, CustomerDataThresholdType, CustomerDataThresholdType$outboundSchema, type CustomerDataUsageAlert, type CustomerDataUsageAlert$Outbound, CustomerDataUsageAlert$outboundSchema, type CustomerDataUsageLimit, type CustomerDataUsageLimit$Outbound, CustomerDataUsageLimit$outboundSchema, CustomerDataUsageLimitInterval, CustomerDataUsageLimitInterval$outboundSchema, CustomerDiscountType, CustomerDiscountType$inboundSchema, type CustomerDisplay, CustomerDisplay$inboundSchema, CustomerDurationType, CustomerDurationType$inboundSchema, type CustomerEligibility, CustomerEligibility$inboundSchema, CustomerEntityEnv, CustomerEntityEnv$inboundSchema, CustomerEnv, CustomerEnv$inboundSchema, CustomerExpand, CustomerExpand$outboundSchema, type CustomerFeature, CustomerFeature$inboundSchema, type CustomerFilter, CustomerFilter$inboundSchema, CustomerFlagsType, CustomerFlagsType$inboundSchema, CustomerLimitType, CustomerLimitType$inboundSchema, type CustomerModelMarkups, CustomerModelMarkups$inboundSchema, type CustomerOverageAllowed, CustomerOverageAllowed$inboundSchema, type CustomerProviderMarkups, CustomerProviderMarkups$inboundSchema, type CustomerPurchaseLimit1, CustomerPurchaseLimit1$inboundSchema, type CustomerPurchaseLimit2, CustomerPurchaseLimit2$inboundSchema, CustomerPurchaseLimitInterval1, CustomerPurchaseLimitInterval1$inboundSchema, CustomerPurchaseLimitInterval2, CustomerPurchaseLimitInterval2$inboundSchema, type CustomerPurchaseLimitUnion, CustomerPurchaseLimitUnion$inboundSchema, type CustomerSpendLimit, CustomerSpendLimit$inboundSchema, CustomerStatus, CustomerStatus$inboundSchema, CustomerThresholdType, CustomerThresholdType$inboundSchema, type CustomerUsageAlert, CustomerUsageAlert$inboundSchema, type CustomerUsageLimit, CustomerUsageLimit$inboundSchema, CustomerUsageLimitInterval, CustomerUsageLimitInterval$inboundSchema, type Customize, Customize$inboundSchema, type Deductions, Deductions$inboundSchema, type DeleteBalanceGlobals, DeleteBalanceInterval, DeleteBalanceInterval$outboundSchema, type DeleteBalanceParams, type DeleteBalanceParams$Outbound, DeleteBalanceParams$outboundSchema, type DeleteBalanceResponse, DeleteBalanceResponse$inboundSchema, type DeleteCustomerGlobals, type DeleteCustomerParams, type DeleteCustomerParams$Outbound, DeleteCustomerParams$outboundSchema, type DeleteCustomerResponse, DeleteCustomerResponse$inboundSchema, type DeleteEntityGlobals, type DeleteEntityParams, type DeleteEntityParams$Outbound, DeleteEntityParams$outboundSchema, type DeleteEntityResponse, DeleteEntityResponse$inboundSchema, type DeleteFeatureGlobals, type DeleteFeatureParams, type DeleteFeatureParams$Outbound, DeleteFeatureParams$outboundSchema, type DeleteFeatureResponse, DeleteFeatureResponse$inboundSchema, type DeletePlanGlobals, type DeletePlanParams, type DeletePlanParams$Outbound, DeletePlanParams$outboundSchema, type DeletePlanResponse, DeletePlanResponse$inboundSchema, type DfuFlashParams, type DfuFlashParams$Outbound, DfuFlashParams$outboundSchema, type DfuFlashResult, DfuFlashResult$inboundSchema, type Discount, Discount$inboundSchema, DurationType, DurationType$inboundSchema, type EntitlementsGranted, EntitlementsGranted$inboundSchema, type Entity, Entity$inboundSchema, type EventsAggregateParams, type EventsAggregateParams$Outbound, EventsAggregateParams$outboundSchema, type EventsListParams, type EventsListParams$Outbound, EventsListParams$outboundSchema, type Expiry, Expiry$inboundSchema, ExpiryType, ExpiryType$inboundSchema, type FeatureGrant, FeatureGrant$inboundSchema, type FeatureGrantPromoCode, FeatureGrantPromoCode$inboundSchema, FeatureType1, FeatureType1$inboundSchema, FeatureType2, FeatureType2$inboundSchema, type Fetcher, type FinalizeBalanceParams, type FinalizeBalanceParams$Outbound, FinalizeBalanceParams$outboundSchema, FinalizeLockAction, FinalizeLockAction$outboundSchema, type FinalizeLockGlobals, type FinalizeLockResponse, FinalizeLockResponse$inboundSchema, type FinalizeLockResponseBody1, FinalizeLockResponseBody1$inboundSchema, type FinalizeLockResponseBody2, FinalizeLockResponseBody2$inboundSchema, type Flag1, Flag1$inboundSchema, type Flag2, Flag2$inboundSchema, type FlagDisplay1, FlagDisplay1$inboundSchema, type FlagDisplay2, FlagDisplay2$inboundSchema, FlagType1, FlagType1$inboundSchema, FlagType2, FlagType2$inboundSchema, type Flags, Flags$inboundSchema, type Flashed, Flashed$inboundSchema, type FreeTrial, FreeTrial$inboundSchema, FreeTrialDuration1, FreeTrialDuration1$inboundSchema, FreeTrialDuration2, FreeTrialDuration2$inboundSchema, type FreeTrialParams, FreeTrialParams$inboundSchema, type FreeTrialRequest, type FreeTrialRequest$Outbound, FreeTrialRequest$outboundSchema, type GetCustomerAutoTopup, GetCustomerAutoTopup$inboundSchema, type GetCustomerBillingControls, GetCustomerBillingControls$inboundSchema, type GetCustomerConfig, GetCustomerConfig$inboundSchema, type GetCustomerCreditSchema, GetCustomerCreditSchema$inboundSchema, type GetCustomerCustomer, GetCustomerCustomer$inboundSchema, type GetCustomerDiscount, GetCustomerDiscount$inboundSchema, GetCustomerDiscountType, GetCustomerDiscountType$inboundSchema, type GetCustomerDisplay, GetCustomerDisplay$inboundSchema, GetCustomerDurationType, GetCustomerDurationType$inboundSchema, type GetCustomerEntity, GetCustomerEntity$inboundSchema, GetCustomerEntityEnv, GetCustomerEntityEnv$inboundSchema, GetCustomerEnv, GetCustomerEnv$inboundSchema, type GetCustomerFeature, GetCustomerFeature$inboundSchema, type GetCustomerFilter, GetCustomerFilter$inboundSchema, type GetCustomerFlags, GetCustomerFlags$inboundSchema, GetCustomerFlagsType, GetCustomerFlagsType$inboundSchema, type GetCustomerGlobals, type GetCustomerInvoice, GetCustomerInvoice$inboundSchema, GetCustomerLimitType, GetCustomerLimitType$inboundSchema, type GetCustomerModelMarkups, GetCustomerModelMarkups$inboundSchema, type GetCustomerOverageAllowed, GetCustomerOverageAllowed$inboundSchema, type GetCustomerParams, type GetCustomerParams$Outbound, GetCustomerParams$outboundSchema, GetCustomerProcessorType, GetCustomerProcessorType$inboundSchema, type GetCustomerProcessors, GetCustomerProcessors$inboundSchema, type GetCustomerProviderMarkups, GetCustomerProviderMarkups$inboundSchema, type GetCustomerPurchase, GetCustomerPurchase$inboundSchema, type GetCustomerPurchaseLimit1, GetCustomerPurchaseLimit1$inboundSchema, type GetCustomerPurchaseLimit2, GetCustomerPurchaseLimit2$inboundSchema, GetCustomerPurchaseLimitInterval1, GetCustomerPurchaseLimitInterval1$inboundSchema, GetCustomerPurchaseLimitInterval2, GetCustomerPurchaseLimitInterval2$inboundSchema, type GetCustomerPurchaseLimitUnion, GetCustomerPurchaseLimitUnion$inboundSchema, GetCustomerPurchaseScope, GetCustomerPurchaseScope$inboundSchema, type GetCustomerReferral, GetCustomerReferral$inboundSchema, type GetCustomerResponse, GetCustomerResponse$inboundSchema, type GetCustomerRevenuecat, GetCustomerRevenuecat$inboundSchema, type GetCustomerRewards, GetCustomerRewards$inboundSchema, type GetCustomerSpendLimit, GetCustomerSpendLimit$inboundSchema, GetCustomerStatus, GetCustomerStatus$inboundSchema, type GetCustomerStripe, GetCustomerStripe$inboundSchema, type GetCustomerSubscription, GetCustomerSubscription$inboundSchema, GetCustomerSubscriptionScope, GetCustomerSubscriptionScope$inboundSchema, GetCustomerThresholdType, GetCustomerThresholdType$inboundSchema, type GetCustomerTrialsUsed, GetCustomerTrialsUsed$inboundSchema, type GetCustomerUsageAlert, GetCustomerUsageAlert$inboundSchema, type GetCustomerUsageLimit, GetCustomerUsageLimit$inboundSchema, GetCustomerUsageLimitInterval, GetCustomerUsageLimitInterval$inboundSchema, type GetCustomerVercel, GetCustomerVercel$inboundSchema, type GetEntityBillingControls, GetEntityBillingControls$inboundSchema, type GetEntityCreditSchema, GetEntityCreditSchema$inboundSchema, type GetEntityDisplay, GetEntityDisplay$inboundSchema, GetEntityEnv, GetEntityEnv$inboundSchema, type GetEntityFeature, GetEntityFeature$inboundSchema, type GetEntityFilter, GetEntityFilter$inboundSchema, type GetEntityFlags, GetEntityFlags$inboundSchema, type GetEntityGlobals, GetEntityInterval, GetEntityInterval$inboundSchema, type GetEntityInvoice, GetEntityInvoice$inboundSchema, GetEntityLimitType, GetEntityLimitType$inboundSchema, type GetEntityModelMarkups, GetEntityModelMarkups$inboundSchema, type GetEntityOverageAllowed, GetEntityOverageAllowed$inboundSchema, type GetEntityParams, type GetEntityParams$Outbound, GetEntityParams$outboundSchema, GetEntityProcessorType, GetEntityProcessorType$inboundSchema, type GetEntityProviderMarkups, GetEntityProviderMarkups$inboundSchema, type GetEntityPurchase, GetEntityPurchase$inboundSchema, GetEntityPurchaseScope, GetEntityPurchaseScope$inboundSchema, type GetEntityResponse, GetEntityResponse$inboundSchema, type GetEntitySpendLimit, GetEntitySpendLimit$inboundSchema, GetEntityStatus, GetEntityStatus$inboundSchema, type GetEntitySubscription, GetEntitySubscription$inboundSchema, GetEntitySubscriptionScope, GetEntitySubscriptionScope$inboundSchema, GetEntityThresholdType, GetEntityThresholdType$inboundSchema, GetEntityType, GetEntityType$inboundSchema, type GetEntityUsageAlert, GetEntityUsageAlert$inboundSchema, type GetEntityUsageLimit, GetEntityUsageLimit$inboundSchema, type GetFeatureCreditSchema, GetFeatureCreditSchema$inboundSchema, type GetFeatureDisplay, GetFeatureDisplay$inboundSchema, type GetFeatureGlobals, type GetFeatureModelMarkups, GetFeatureModelMarkups$inboundSchema, type GetFeatureParams, type GetFeatureParams$Outbound, GetFeatureParams$outboundSchema, type GetFeatureProviderMarkups, GetFeatureProviderMarkups$inboundSchema, type GetFeatureResponse, GetFeatureResponse$inboundSchema, GetFeatureType, GetFeatureType$inboundSchema, type GetOrCreateCustomerAutoTopup, type GetOrCreateCustomerAutoTopup$Outbound, GetOrCreateCustomerAutoTopup$outboundSchema, type GetOrCreateCustomerBillingControls, type GetOrCreateCustomerBillingControls$Outbound, GetOrCreateCustomerBillingControls$outboundSchema, type GetOrCreateCustomerConfig, type GetOrCreateCustomerConfig$Outbound, GetOrCreateCustomerConfig$outboundSchema, type GetOrCreateCustomerFilter, type GetOrCreateCustomerFilter$Outbound, GetOrCreateCustomerFilter$outboundSchema, type GetOrCreateCustomerGlobals, GetOrCreateCustomerLimitType, GetOrCreateCustomerLimitType$outboundSchema, type GetOrCreateCustomerOverageAllowed, type GetOrCreateCustomerOverageAllowed$Outbound, GetOrCreateCustomerOverageAllowed$outboundSchema, type GetOrCreateCustomerParams, type GetOrCreateCustomerParams$Outbound, GetOrCreateCustomerParams$outboundSchema, type GetOrCreateCustomerProperties, type GetOrCreateCustomerProperties$Outbound, GetOrCreateCustomerProperties$outboundSchema, type GetOrCreateCustomerPurchaseLimit, type GetOrCreateCustomerPurchaseLimit$Outbound, GetOrCreateCustomerPurchaseLimit$outboundSchema, GetOrCreateCustomerPurchaseLimitInterval, GetOrCreateCustomerPurchaseLimitInterval$outboundSchema, type GetOrCreateCustomerSpendLimit, type GetOrCreateCustomerSpendLimit$Outbound, GetOrCreateCustomerSpendLimit$outboundSchema, GetOrCreateCustomerThresholdType, GetOrCreateCustomerThresholdType$outboundSchema, type GetOrCreateCustomerUsageAlert, type GetOrCreateCustomerUsageAlert$Outbound, GetOrCreateCustomerUsageAlert$outboundSchema, type GetOrCreateCustomerUsageLimit, type GetOrCreateCustomerUsageLimit$Outbound, GetOrCreateCustomerUsageLimit$outboundSchema, GetOrCreateCustomerUsageLimitInterval, GetOrCreateCustomerUsageLimitInterval$outboundSchema, GetPlanAddItemBillingMethod, GetPlanAddItemBillingMethod$inboundSchema, GetPlanAddItemPriceInterval, GetPlanAddItemPriceInterval$inboundSchema, GetPlanAddItemResetInterval, GetPlanAddItemResetInterval$inboundSchema, GetPlanAttachAction, GetPlanAttachAction$inboundSchema, type GetPlanAutoTopup, GetPlanAutoTopup$inboundSchema, type GetPlanBasePrice, GetPlanBasePrice$inboundSchema, type GetPlanBillingControls, GetPlanBillingControls$inboundSchema, type GetPlanConfig, GetPlanConfig$inboundSchema, type GetPlanCreditSchema, GetPlanCreditSchema$inboundSchema, type GetPlanCustomerEligibility, GetPlanCustomerEligibility$inboundSchema, type GetPlanCustomize, GetPlanCustomize$inboundSchema, GetPlanDurationType, GetPlanDurationType$inboundSchema, GetPlanEnv, GetPlanEnv$inboundSchema, type GetPlanFeature, GetPlanFeature$inboundSchema, type GetPlanFeatureDisplay, GetPlanFeatureDisplay$inboundSchema, type GetPlanFilter, GetPlanFilter$inboundSchema, type GetPlanFreeTrial, GetPlanFreeTrial$inboundSchema, type GetPlanFreeTrialParams, GetPlanFreeTrialParams$inboundSchema, type GetPlanGlobals, GetPlanIntervalRemoveItemEnum1, GetPlanIntervalRemoveItemEnum1$inboundSchema, GetPlanIntervalRemoveItemEnum2, GetPlanIntervalRemoveItemEnum2$inboundSchema, type GetPlanIntervalUnion, GetPlanIntervalUnion$inboundSchema, type GetPlanItem, GetPlanItem$inboundSchema, GetPlanItemBillingMethod, GetPlanItemBillingMethod$inboundSchema, type GetPlanItemDisplay, GetPlanItemDisplay$inboundSchema, GetPlanItemExpiryDurationType, GetPlanItemExpiryDurationType$inboundSchema, type GetPlanItemPrice, GetPlanItemPrice$inboundSchema, type GetPlanItemReset, GetPlanItemReset$inboundSchema, type GetPlanItemRollover, GetPlanItemRollover$inboundSchema, type GetPlanItemTier, GetPlanItemTier$inboundSchema, GetPlanItemTierBehavior, GetPlanItemTierBehavior$inboundSchema, type GetPlanItemTo, GetPlanItemTo$inboundSchema, GetPlanLimitType, GetPlanLimitType$inboundSchema, GetPlanOnDecrease, GetPlanOnDecrease$inboundSchema, GetPlanOnEnd, GetPlanOnEnd$inboundSchema, GetPlanOnIncrease, GetPlanOnIncrease$inboundSchema, type GetPlanOverageAllowed, GetPlanOverageAllowed$inboundSchema, type GetPlanParams, type GetPlanParams$Outbound, GetPlanParams$outboundSchema, type GetPlanPlanItem, GetPlanPlanItem$inboundSchema, type GetPlanPlanItemFilter, GetPlanPlanItemFilter$inboundSchema, type GetPlanPrice, GetPlanPrice$inboundSchema, type GetPlanPriceDisplay, GetPlanPriceDisplay$inboundSchema, GetPlanPriceInterval, GetPlanPriceInterval$inboundSchema, GetPlanPriceItemInterval, GetPlanPriceItemInterval$inboundSchema, GetPlanPriceVariantDetailsInterval, GetPlanPriceVariantDetailsInterval$inboundSchema, type GetPlanProration, GetPlanProration$inboundSchema, type GetPlanPurchaseLimit, GetPlanPurchaseLimit$inboundSchema, GetPlanPurchaseLimitInterval, GetPlanPurchaseLimitInterval$inboundSchema, GetPlanRemoveItemBillingMethod, GetPlanRemoveItemBillingMethod$inboundSchema, GetPlanResetItemInterval, GetPlanResetItemInterval$inboundSchema, type GetPlanResponse, GetPlanResponse$inboundSchema, type GetPlanSpendLimit, GetPlanSpendLimit$inboundSchema, GetPlanStatus, GetPlanStatus$inboundSchema, GetPlanThresholdType, GetPlanThresholdType$inboundSchema, GetPlanType, GetPlanType$inboundSchema, type GetPlanUsageAlert, GetPlanUsageAlert$inboundSchema, type GetPlanUsageLimit, GetPlanUsageLimit$inboundSchema, GetPlanUsageLimitInterval, GetPlanUsageLimitInterval$inboundSchema, type GetPlanVariantDetails, GetPlanVariantDetails$inboundSchema, type GetPlanVariantDetailsAutoTopup, GetPlanVariantDetailsAutoTopup$inboundSchema, type GetPlanVariantDetailsBillingControls, GetPlanVariantDetailsBillingControls$inboundSchema, GetPlanVariantDetailsDurationType, GetPlanVariantDetailsDurationType$inboundSchema, GetPlanVariantDetailsExpiryDurationType, GetPlanVariantDetailsExpiryDurationType$inboundSchema, type GetPlanVariantDetailsFilter, GetPlanVariantDetailsFilter$inboundSchema, GetPlanVariantDetailsLimitType, GetPlanVariantDetailsLimitType$inboundSchema, GetPlanVariantDetailsOnEnd, GetPlanVariantDetailsOnEnd$inboundSchema, type GetPlanVariantDetailsOverageAllowed, GetPlanVariantDetailsOverageAllowed$inboundSchema, type GetPlanVariantDetailsPrice, GetPlanVariantDetailsPrice$inboundSchema, type GetPlanVariantDetailsPurchaseLimit, GetPlanVariantDetailsPurchaseLimit$inboundSchema, GetPlanVariantDetailsPurchaseLimitInterval, GetPlanVariantDetailsPurchaseLimitInterval$inboundSchema, type GetPlanVariantDetailsReset, GetPlanVariantDetailsReset$inboundSchema, type GetPlanVariantDetailsRollover, GetPlanVariantDetailsRollover$inboundSchema, type GetPlanVariantDetailsSpendLimit, GetPlanVariantDetailsSpendLimit$inboundSchema, GetPlanVariantDetailsThresholdType, GetPlanVariantDetailsThresholdType$inboundSchema, type GetPlanVariantDetailsTier, GetPlanVariantDetailsTier$inboundSchema, GetPlanVariantDetailsTierBehavior, GetPlanVariantDetailsTierBehavior$inboundSchema, type GetPlanVariantDetailsTo, GetPlanVariantDetailsTo$inboundSchema, type GetPlanVariantDetailsUsageAlert, GetPlanVariantDetailsUsageAlert$inboundSchema, type GetPlanVariantDetailsUsageLimit, GetPlanVariantDetailsUsageLimit$inboundSchema, GetPlanVariantDetailsUsageLimitInterval, GetPlanVariantDetailsUsageLimitInterval$inboundSchema, type GetRevenueCatKeysApp, GetRevenueCatKeysApp$inboundSchema, GetRevenueCatKeysEnv, GetRevenueCatKeysEnv$outboundSchema, type GetRevenueCatKeysGlobals, type GetRevenueCatKeysParams, type GetRevenueCatKeysParams$Outbound, GetRevenueCatKeysParams$outboundSchema, type GetRevenueCatKeysResponse, GetRevenueCatKeysResponse$inboundSchema, type Grant, Grant$inboundSchema, HTTPClient, HTTPClientError, type HTTPClientOptions, type ImportBalance, type ImportBalance$Outbound, ImportBalance$outboundSchema, ImportBillingBehavior, ImportBillingBehavior$outboundSchema, type ImportCustomerData, type ImportCustomerData$Outbound, ImportCustomerData$outboundSchema, type ImportFeatureQuantity, type ImportFeatureQuantity$Outbound, ImportFeatureQuantity$outboundSchema, type ImportFilter, type ImportFilter$Outbound, ImportFilter$outboundSchema, type ImportGlobals, ImportInterval, ImportInterval$outboundSchema, type ImportPlan, type ImportPlan$Outbound, ImportPlan$outboundSchema, type ImportProcessor, type ImportProcessor$Outbound, ImportProcessor$outboundSchema, ImportStatus, ImportStatus$outboundSchema, ImportType, ImportType$outboundSchema, type IncludedUsage1, IncludedUsage1$inboundSchema, type IncludedUsage2, IncludedUsage2$inboundSchema, Intent, Intent$inboundSchema, IntervalVariantRemoveItemEnum1, IntervalVariantRemoveItemEnum1$outboundSchema, IntervalVariantRemoveItemEnum2, IntervalVariantRemoveItemEnum2$outboundSchema, InvalidRequestError, type Invoice, Invoice$inboundSchema, type Item, Item$inboundSchema, ItemExpiryDurationType, ItemExpiryDurationType$inboundSchema, type Link, type Link$Outbound, Link$outboundSchema, LinkRevenueCatEnv, LinkRevenueCatEnv$outboundSchema, type LinkRevenueCatGlobals, type LinkRevenueCatParams, type LinkRevenueCatParams$Outbound, LinkRevenueCatParams$outboundSchema, type LinkRevenueCatResponse, LinkRevenueCatResponse$inboundSchema, type ListCustomersAutoTopup, ListCustomersAutoTopup$inboundSchema, type ListCustomersBillingControls, ListCustomersBillingControls$inboundSchema, type ListCustomersConfig, ListCustomersConfig$inboundSchema, type ListCustomersCreditSchema, ListCustomersCreditSchema$inboundSchema, type ListCustomersDisplay, ListCustomersDisplay$inboundSchema, ListCustomersEnv, ListCustomersEnv$inboundSchema, type ListCustomersFeature, ListCustomersFeature$inboundSchema, type ListCustomersFilter, ListCustomersFilter$inboundSchema, type ListCustomersFlags, ListCustomersFlags$inboundSchema, type ListCustomersGlobals, ListCustomersLimitType, ListCustomersLimitType$inboundSchema, type ListCustomersList, ListCustomersList$inboundSchema, type ListCustomersModelMarkups, ListCustomersModelMarkups$inboundSchema, type ListCustomersOverageAllowed, ListCustomersOverageAllowed$inboundSchema, type ListCustomersParams, type ListCustomersParams$Outbound, ListCustomersParams$outboundSchema, type ListCustomersPlan, type ListCustomersPlan$Outbound, ListCustomersPlan$outboundSchema, ListCustomersProcessor, ListCustomersProcessor$outboundSchema, type ListCustomersProcessors, ListCustomersProcessors$inboundSchema, type ListCustomersProviderMarkups, ListCustomersProviderMarkups$inboundSchema, type ListCustomersPurchase, ListCustomersPurchase$inboundSchema, type ListCustomersPurchaseLimit1, ListCustomersPurchaseLimit1$inboundSchema, type ListCustomersPurchaseLimit2, ListCustomersPurchaseLimit2$inboundSchema, ListCustomersPurchaseLimitInterval1, ListCustomersPurchaseLimitInterval1$inboundSchema, ListCustomersPurchaseLimitInterval2, ListCustomersPurchaseLimitInterval2$inboundSchema, type ListCustomersPurchaseLimitUnion, ListCustomersPurchaseLimitUnion$inboundSchema, ListCustomersPurchaseScope, ListCustomersPurchaseScope$inboundSchema, type ListCustomersResponse, ListCustomersResponse$inboundSchema, type ListCustomersRevenuecat, ListCustomersRevenuecat$inboundSchema, type ListCustomersSpendLimit, ListCustomersSpendLimit$inboundSchema, ListCustomersStatus, ListCustomersStatus$inboundSchema, type ListCustomersStripe, ListCustomersStripe$inboundSchema, type ListCustomersSubscription, ListCustomersSubscription$inboundSchema, ListCustomersSubscriptionScope, ListCustomersSubscriptionScope$inboundSchema, ListCustomersSubscriptionStatus, ListCustomersSubscriptionStatus$outboundSchema, ListCustomersThresholdType, ListCustomersThresholdType$inboundSchema, ListCustomersType, ListCustomersType$inboundSchema, type ListCustomersUsageAlert, ListCustomersUsageAlert$inboundSchema, type ListCustomersUsageLimit, ListCustomersUsageLimit$inboundSchema, ListCustomersUsageLimitInterval, ListCustomersUsageLimitInterval$inboundSchema, type ListCustomersVercel, ListCustomersVercel$inboundSchema, type ListEntitiesBillingControls, ListEntitiesBillingControls$inboundSchema, type ListEntitiesCreditSchema, ListEntitiesCreditSchema$inboundSchema, type ListEntitiesDisplay, ListEntitiesDisplay$inboundSchema, ListEntitiesEnv, ListEntitiesEnv$inboundSchema, type ListEntitiesFeature, ListEntitiesFeature$inboundSchema, type ListEntitiesFilter, ListEntitiesFilter$inboundSchema, type ListEntitiesFlags, ListEntitiesFlags$inboundSchema, type ListEntitiesGlobals, ListEntitiesInterval, ListEntitiesInterval$inboundSchema, type ListEntitiesInvoice, ListEntitiesInvoice$inboundSchema, ListEntitiesLimitType, ListEntitiesLimitType$inboundSchema, type ListEntitiesList, ListEntitiesList$inboundSchema, type ListEntitiesModelMarkups, ListEntitiesModelMarkups$inboundSchema, type ListEntitiesOverageAllowed, ListEntitiesOverageAllowed$inboundSchema, type ListEntitiesParams, type ListEntitiesParams$Outbound, ListEntitiesParams$outboundSchema, type ListEntitiesPlan, type ListEntitiesPlan$Outbound, ListEntitiesPlan$outboundSchema, ListEntitiesProcessor, ListEntitiesProcessor$outboundSchema, ListEntitiesProcessorType, ListEntitiesProcessorType$inboundSchema, type ListEntitiesProviderMarkups, ListEntitiesProviderMarkups$inboundSchema, type ListEntitiesPurchase, ListEntitiesPurchase$inboundSchema, ListEntitiesPurchaseScope, ListEntitiesPurchaseScope$inboundSchema, type ListEntitiesResponse, ListEntitiesResponse$inboundSchema, type ListEntitiesSpendLimit, ListEntitiesSpendLimit$inboundSchema, ListEntitiesStatus, ListEntitiesStatus$inboundSchema, type ListEntitiesSubscription, ListEntitiesSubscription$inboundSchema, ListEntitiesSubscriptionScope, ListEntitiesSubscriptionScope$inboundSchema, ListEntitiesSubscriptionStatus, ListEntitiesSubscriptionStatus$outboundSchema, ListEntitiesThresholdType, ListEntitiesThresholdType$inboundSchema, ListEntitiesType, ListEntitiesType$inboundSchema, type ListEntitiesUsageAlert, ListEntitiesUsageAlert$inboundSchema, type ListEntitiesUsageLimit, ListEntitiesUsageLimit$inboundSchema, type ListEventsCustomRange, type ListEventsCustomRange$Outbound, ListEventsCustomRange$outboundSchema, type ListEventsFeatureId, type ListEventsFeatureId$Outbound, ListEventsFeatureId$outboundSchema, type ListEventsGlobals, ListEventsIntervalEnum, ListEventsIntervalEnum$inboundSchema, type ListEventsIntervalUnion, ListEventsIntervalUnion$inboundSchema, type ListEventsList, ListEventsList$inboundSchema, type ListEventsReset, ListEventsReset$inboundSchema, type ListEventsResponse, ListEventsResponse$inboundSchema, type ListFeaturesCreditSchema, ListFeaturesCreditSchema$inboundSchema, type ListFeaturesDisplay, ListFeaturesDisplay$inboundSchema, type ListFeaturesGlobals, type ListFeaturesList, ListFeaturesList$inboundSchema, type ListFeaturesModelMarkups, ListFeaturesModelMarkups$inboundSchema, type ListFeaturesProviderMarkups, ListFeaturesProviderMarkups$inboundSchema, type ListFeaturesRequest, type ListFeaturesRequest$Outbound, ListFeaturesRequest$outboundSchema, type ListFeaturesResponse, ListFeaturesResponse$inboundSchema, ListFeaturesType, ListFeaturesType$inboundSchema, ListPlansAddItemBillingMethod, ListPlansAddItemBillingMethod$inboundSchema, ListPlansAddItemPriceInterval, ListPlansAddItemPriceInterval$inboundSchema, ListPlansAddItemResetInterval, ListPlansAddItemResetInterval$inboundSchema, ListPlansAttachAction, ListPlansAttachAction$inboundSchema, type ListPlansAutoTopup, ListPlansAutoTopup$inboundSchema, type ListPlansBasePrice, ListPlansBasePrice$inboundSchema, type ListPlansBillingControls, ListPlansBillingControls$inboundSchema, type ListPlansConfig, ListPlansConfig$inboundSchema, type ListPlansCreditSchema, ListPlansCreditSchema$inboundSchema, type ListPlansCustomerEligibility, ListPlansCustomerEligibility$inboundSchema, type ListPlansCustomize, ListPlansCustomize$inboundSchema, ListPlansDurationType, ListPlansDurationType$inboundSchema, ListPlansEnv, ListPlansEnv$inboundSchema, type ListPlansFeature, ListPlansFeature$inboundSchema, type ListPlansFeatureDisplay, ListPlansFeatureDisplay$inboundSchema, type ListPlansFilter, ListPlansFilter$inboundSchema, type ListPlansFreeTrial, ListPlansFreeTrial$inboundSchema, type ListPlansFreeTrialParams, ListPlansFreeTrialParams$inboundSchema, type ListPlansGlobals, ListPlansIntervalRemoveItemEnum1, ListPlansIntervalRemoveItemEnum1$inboundSchema, ListPlansIntervalRemoveItemEnum2, ListPlansIntervalRemoveItemEnum2$inboundSchema, type ListPlansIntervalUnion, ListPlansIntervalUnion$inboundSchema, type ListPlansItem, ListPlansItem$inboundSchema, ListPlansItemBillingMethod, ListPlansItemBillingMethod$inboundSchema, type ListPlansItemDisplay, ListPlansItemDisplay$inboundSchema, ListPlansItemExpiryDurationType, ListPlansItemExpiryDurationType$inboundSchema, type ListPlansItemPrice, ListPlansItemPrice$inboundSchema, type ListPlansItemReset, ListPlansItemReset$inboundSchema, type ListPlansItemRollover, ListPlansItemRollover$inboundSchema, type ListPlansItemTier, ListPlansItemTier$inboundSchema, ListPlansItemTierBehavior, ListPlansItemTierBehavior$inboundSchema, ListPlansLimitType, ListPlansLimitType$inboundSchema, type ListPlansList, ListPlansList$inboundSchema, ListPlansOnDecrease, ListPlansOnDecrease$inboundSchema, ListPlansOnEnd, ListPlansOnEnd$inboundSchema, ListPlansOnIncrease, ListPlansOnIncrease$inboundSchema, type ListPlansOverageAllowed, ListPlansOverageAllowed$inboundSchema, type ListPlansParams, type ListPlansParams$Outbound, ListPlansParams$outboundSchema, type ListPlansPlanItem, ListPlansPlanItem$inboundSchema, type ListPlansPlanItemFilter, ListPlansPlanItemFilter$inboundSchema, type ListPlansPrice, ListPlansPrice$inboundSchema, type ListPlansPriceDisplay, ListPlansPriceDisplay$inboundSchema, ListPlansPriceInterval, ListPlansPriceInterval$inboundSchema, ListPlansPriceItemInterval, ListPlansPriceItemInterval$inboundSchema, ListPlansPriceVariantDetailsInterval, ListPlansPriceVariantDetailsInterval$inboundSchema, type ListPlansProration, ListPlansProration$inboundSchema, type ListPlansPurchaseLimit, ListPlansPurchaseLimit$inboundSchema, ListPlansPurchaseLimitInterval, ListPlansPurchaseLimitInterval$inboundSchema, ListPlansRemoveItemBillingMethod, ListPlansRemoveItemBillingMethod$inboundSchema, ListPlansResetItemInterval, ListPlansResetItemInterval$inboundSchema, type ListPlansResponse, ListPlansResponse$inboundSchema, type ListPlansSpendLimit, ListPlansSpendLimit$inboundSchema, ListPlansStatus, ListPlansStatus$inboundSchema, ListPlansThresholdType, ListPlansThresholdType$inboundSchema, type ListPlansTo, ListPlansTo$inboundSchema, ListPlansType, ListPlansType$inboundSchema, type ListPlansUsageAlert, ListPlansUsageAlert$inboundSchema, type ListPlansUsageLimit, ListPlansUsageLimit$inboundSchema, ListPlansUsageLimitInterval, ListPlansUsageLimitInterval$inboundSchema, type ListPlansVariantDetails, ListPlansVariantDetails$inboundSchema, type ListPlansVariantDetailsAutoTopup, ListPlansVariantDetailsAutoTopup$inboundSchema, type ListPlansVariantDetailsBillingControls, ListPlansVariantDetailsBillingControls$inboundSchema, ListPlansVariantDetailsDurationType, ListPlansVariantDetailsDurationType$inboundSchema, ListPlansVariantDetailsExpiryDurationType, ListPlansVariantDetailsExpiryDurationType$inboundSchema, type ListPlansVariantDetailsFilter, ListPlansVariantDetailsFilter$inboundSchema, ListPlansVariantDetailsLimitType, ListPlansVariantDetailsLimitType$inboundSchema, ListPlansVariantDetailsOnEnd, ListPlansVariantDetailsOnEnd$inboundSchema, type ListPlansVariantDetailsOverageAllowed, ListPlansVariantDetailsOverageAllowed$inboundSchema, type ListPlansVariantDetailsPrice, ListPlansVariantDetailsPrice$inboundSchema, type ListPlansVariantDetailsPurchaseLimit, ListPlansVariantDetailsPurchaseLimit$inboundSchema, ListPlansVariantDetailsPurchaseLimitInterval, ListPlansVariantDetailsPurchaseLimitInterval$inboundSchema, type ListPlansVariantDetailsReset, ListPlansVariantDetailsReset$inboundSchema, type ListPlansVariantDetailsRollover, ListPlansVariantDetailsRollover$inboundSchema, type ListPlansVariantDetailsSpendLimit, ListPlansVariantDetailsSpendLimit$inboundSchema, ListPlansVariantDetailsThresholdType, ListPlansVariantDetailsThresholdType$inboundSchema, type ListPlansVariantDetailsTier, ListPlansVariantDetailsTier$inboundSchema, ListPlansVariantDetailsTierBehavior, ListPlansVariantDetailsTierBehavior$inboundSchema, type ListPlansVariantDetailsUsageAlert, ListPlansVariantDetailsUsageAlert$inboundSchema, type ListPlansVariantDetailsUsageLimit, ListPlansVariantDetailsUsageLimit$inboundSchema, ListPlansVariantDetailsUsageLimitInterval, ListPlansVariantDetailsUsageLimitInterval$inboundSchema, type ListRewardsDuration, ListRewardsDuration$inboundSchema, type ListRewardsGlobals, type ListRewardsResponse, ListRewardsResponse$inboundSchema, type Migration, type Migration$Outbound, Migration$outboundSchema, type MintKeyGlobals, type MintKeyParams, type MintKeyParams$Outbound, MintKeyParams$outboundSchema, type MintKeyResponse, MintKeyResponse$inboundSchema, type MultiAttachAttachDiscount, type MultiAttachAttachDiscount$Outbound, MultiAttachAttachDiscount$outboundSchema, type MultiAttachBasePrice, type MultiAttachBasePrice$Outbound, MultiAttachBasePrice$outboundSchema, type MultiAttachBillingControls, type MultiAttachBillingControls$Outbound, MultiAttachBillingControls$outboundSchema, MultiAttachBillingMethod, MultiAttachBillingMethod$outboundSchema, MultiAttachCode, MultiAttachCode$inboundSchema, type MultiAttachCustomize, type MultiAttachCustomize$Outbound, MultiAttachCustomize$outboundSchema, MultiAttachDurationType, MultiAttachDurationType$outboundSchema, type MultiAttachEntityData, type MultiAttachEntityData$Outbound, MultiAttachEntityData$outboundSchema, MultiAttachEntityDataInterval, MultiAttachEntityDataInterval$outboundSchema, MultiAttachExpiryDurationType, MultiAttachExpiryDurationType$outboundSchema, type MultiAttachFeatureQuantity, type MultiAttachFeatureQuantity$Outbound, MultiAttachFeatureQuantity$outboundSchema, type MultiAttachFilter, type MultiAttachFilter$Outbound, MultiAttachFilter$outboundSchema, type MultiAttachFreeTrialParams, type MultiAttachFreeTrialParams$Outbound, MultiAttachFreeTrialParams$outboundSchema, type MultiAttachGlobals, type MultiAttachInvoice, MultiAttachInvoice$inboundSchema, type MultiAttachInvoiceMode, type MultiAttachInvoiceMode$Outbound, MultiAttachInvoiceMode$outboundSchema, MultiAttachItemPriceInterval, MultiAttachItemPriceInterval$outboundSchema, MultiAttachLimitType, MultiAttachLimitType$outboundSchema, MultiAttachOnDecrease, MultiAttachOnDecrease$outboundSchema, MultiAttachOnEnd, MultiAttachOnEnd$outboundSchema, MultiAttachOnIncrease, MultiAttachOnIncrease$outboundSchema, type MultiAttachOverageAllowed, type MultiAttachOverageAllowed$Outbound, MultiAttachOverageAllowed$outboundSchema, type MultiAttachParams, type MultiAttachParams$Outbound, MultiAttachParams$outboundSchema, type MultiAttachPlan, type MultiAttachPlan$Outbound, MultiAttachPlan$outboundSchema, type MultiAttachPlanItem, type MultiAttachPlanItem$Outbound, MultiAttachPlanItem$outboundSchema, type MultiAttachPrice, type MultiAttachPrice$Outbound, MultiAttachPrice$outboundSchema, MultiAttachPriceInterval, MultiAttachPriceInterval$outboundSchema, type MultiAttachProperties, type MultiAttachProperties$Outbound, MultiAttachProperties$outboundSchema, type MultiAttachProration, type MultiAttachProration$Outbound, MultiAttachProration$outboundSchema, MultiAttachRedirectMode, MultiAttachRedirectMode$outboundSchema, type MultiAttachRequiredAction, MultiAttachRequiredAction$inboundSchema, type MultiAttachReset, type MultiAttachReset$Outbound, MultiAttachReset$outboundSchema, MultiAttachResetInterval, MultiAttachResetInterval$outboundSchema, type MultiAttachResponse, MultiAttachResponse$inboundSchema, type MultiAttachRollover, type MultiAttachRollover$Outbound, MultiAttachRollover$outboundSchema, type MultiAttachSpendLimit, type MultiAttachSpendLimit$Outbound, MultiAttachSpendLimit$outboundSchema, MultiAttachThresholdType, MultiAttachThresholdType$outboundSchema, type MultiAttachTier, type MultiAttachTier$Outbound, MultiAttachTier$outboundSchema, MultiAttachTierBehavior, MultiAttachTierBehavior$outboundSchema, type MultiAttachTo, type MultiAttachTo$Outbound, MultiAttachTo$outboundSchema, type MultiAttachUsageAlert, type MultiAttachUsageAlert$Outbound, MultiAttachUsageAlert$outboundSchema, type MultiAttachUsageLimit, type MultiAttachUsageLimit$Outbound, MultiAttachUsageLimit$outboundSchema, MultiUpdateCancelAction, MultiUpdateCancelAction$outboundSchema, MultiUpdateCode, MultiUpdateCode$inboundSchema, type MultiUpdateGlobals, type MultiUpdateInvoice, MultiUpdateInvoice$inboundSchema, type MultiUpdateParams, type MultiUpdateParams$Outbound, MultiUpdateParams$outboundSchema, type MultiUpdatePreviewResponse, MultiUpdatePreviewResponse$inboundSchema, MultiUpdateProrationBehavior, MultiUpdateProrationBehavior$outboundSchema, type MultiUpdateRequiredAction, MultiUpdateRequiredAction$inboundSchema, type MultiUpdateResponse, MultiUpdateResponse$inboundSchema, type MultiUpdateUpdate, type MultiUpdateUpdate$Outbound, MultiUpdateUpdate$outboundSchema, OnDecrease, OnDecrease$inboundSchema, OnEnd, OnEnd$inboundSchema, OnIncrease, OnIncrease$inboundSchema, type OpenCustomerPortalGlobals, type OpenCustomerPortalParams, type OpenCustomerPortalParams$Outbound, OpenCustomerPortalParams$outboundSchema, type OpenCustomerPortalResponse, OpenCustomerPortalResponse$inboundSchema, type PhaseResponse, PhaseResponse$inboundSchema, type PhaseStart, type PhaseStart$Outbound, PhaseStart$outboundSchema, type PhaseStartUnion, type PhaseStartUnion$Outbound, PhaseStartUnion$outboundSchema, type Plan, Plan$inboundSchema, PlanAddItemBillingMethod, PlanAddItemBillingMethod$inboundSchema, PlanAddItemPriceInterval, PlanAddItemPriceInterval$inboundSchema, PlanAddItemResetInterval, PlanAddItemResetInterval$inboundSchema, type PlanAutoTopup, PlanAutoTopup$inboundSchema, type PlanBillingControls, PlanBillingControls$inboundSchema, type PlanConfig, PlanConfig$inboundSchema, type PlanCreditSchema, PlanCreditSchema$inboundSchema, PlanDurationType, PlanDurationType$inboundSchema, PlanEnv, PlanEnv$inboundSchema, type PlanFeature, PlanFeature$inboundSchema, type PlanFeatureDisplay, PlanFeatureDisplay$inboundSchema, type PlanFilter, PlanFilter$inboundSchema, PlanIntervalRemoveItemEnum1, PlanIntervalRemoveItemEnum1$inboundSchema, PlanIntervalRemoveItemEnum2, PlanIntervalRemoveItemEnum2$inboundSchema, type PlanIntervalUnion, PlanIntervalUnion$inboundSchema, type PlanItem, PlanItem$inboundSchema, PlanItemBillingMethod, PlanItemBillingMethod$inboundSchema, type PlanItemDisplay, PlanItemDisplay$inboundSchema, type PlanItemFilter, PlanItemFilter$inboundSchema, type PlanItemPrice, PlanItemPrice$inboundSchema, type PlanItemReset, PlanItemReset$inboundSchema, type PlanItemRollover, PlanItemRollover$inboundSchema, type PlanItemTier, PlanItemTier$inboundSchema, PlanItemTierBehavior, PlanItemTierBehavior$inboundSchema, type PlanItemTo, PlanItemTo$inboundSchema, PlanLimitType, PlanLimitType$inboundSchema, type PlanOverageAllowed, PlanOverageAllowed$inboundSchema, type PlanPrice, PlanPrice$inboundSchema, type PlanPriceDisplay, PlanPriceDisplay$inboundSchema, PlanPriceInterval, PlanPriceInterval$inboundSchema, PlanPriceItemInterval, PlanPriceItemInterval$inboundSchema, PlanPriceVariantDetailsInterval, PlanPriceVariantDetailsInterval$inboundSchema, type PlanPurchaseLimit, PlanPurchaseLimit$inboundSchema, PlanPurchaseLimitInterval, PlanPurchaseLimitInterval$inboundSchema, PlanRemoveItemBillingMethod, PlanRemoveItemBillingMethod$inboundSchema, PlanResetItemInterval, PlanResetItemInterval$inboundSchema, type PlanSpendLimit, PlanSpendLimit$inboundSchema, PlanStatus, PlanStatus$inboundSchema, PlanThresholdType, PlanThresholdType$inboundSchema, PlanType, PlanType$inboundSchema, type PlanUsageAlert, PlanUsageAlert$inboundSchema, type PlanUsageLimit, PlanUsageLimit$inboundSchema, PlanUsageLimitInterval, PlanUsageLimitInterval$inboundSchema, type PlanVariantDetailsAutoTopup, PlanVariantDetailsAutoTopup$inboundSchema, type PlanVariantDetailsBillingControls, PlanVariantDetailsBillingControls$inboundSchema, PlanVariantDetailsDurationType, PlanVariantDetailsDurationType$inboundSchema, type PlanVariantDetailsFilter, PlanVariantDetailsFilter$inboundSchema, PlanVariantDetailsLimitType, PlanVariantDetailsLimitType$inboundSchema, type PlanVariantDetailsOverageAllowed, PlanVariantDetailsOverageAllowed$inboundSchema, type PlanVariantDetailsPrice, PlanVariantDetailsPrice$inboundSchema, type PlanVariantDetailsPurchaseLimit, PlanVariantDetailsPurchaseLimit$inboundSchema, PlanVariantDetailsPurchaseLimitInterval, PlanVariantDetailsPurchaseLimitInterval$inboundSchema, type PlanVariantDetailsReset, PlanVariantDetailsReset$inboundSchema, type PlanVariantDetailsRollover, PlanVariantDetailsRollover$inboundSchema, type PlanVariantDetailsSpendLimit, PlanVariantDetailsSpendLimit$inboundSchema, PlanVariantDetailsThresholdType, PlanVariantDetailsThresholdType$inboundSchema, type PlanVariantDetailsTier, PlanVariantDetailsTier$inboundSchema, PlanVariantDetailsTierBehavior, PlanVariantDetailsTierBehavior$inboundSchema, type PlanVariantDetailsTo, PlanVariantDetailsTo$inboundSchema, type PlanVariantDetailsUsageAlert, PlanVariantDetailsUsageAlert$inboundSchema, type PlanVariantDetailsUsageLimit, PlanVariantDetailsUsageLimit$inboundSchema, PlanVariantDetailsUsageLimitInterval, PlanVariantDetailsUsageLimitInterval$inboundSchema, type Preview1, Preview1$inboundSchema, type Preview2, Preview2$inboundSchema, PreviewAttachAddItemBillingMethod, PreviewAttachAddItemBillingMethod$outboundSchema, PreviewAttachAddItemExpiryDurationType, PreviewAttachAddItemExpiryDurationType$outboundSchema, PreviewAttachAddItemOnDecrease, PreviewAttachAddItemOnDecrease$outboundSchema, PreviewAttachAddItemOnIncrease, PreviewAttachAddItemOnIncrease$outboundSchema, type PreviewAttachAddItemPlanItem, type PreviewAttachAddItemPlanItem$Outbound, PreviewAttachAddItemPlanItem$outboundSchema, type PreviewAttachAddItemPrice, type PreviewAttachAddItemPrice$Outbound, PreviewAttachAddItemPrice$outboundSchema, PreviewAttachAddItemPriceInterval, PreviewAttachAddItemPriceInterval$outboundSchema, type PreviewAttachAddItemProration, type PreviewAttachAddItemProration$Outbound, PreviewAttachAddItemProration$outboundSchema, type PreviewAttachAddItemReset, type PreviewAttachAddItemReset$Outbound, PreviewAttachAddItemReset$outboundSchema, PreviewAttachAddItemResetInterval, PreviewAttachAddItemResetInterval$outboundSchema, type PreviewAttachAddItemRollover, type PreviewAttachAddItemRollover$Outbound, PreviewAttachAddItemRollover$outboundSchema, type PreviewAttachAddItemTier, type PreviewAttachAddItemTier$Outbound, PreviewAttachAddItemTier$outboundSchema, PreviewAttachAddItemTierBehavior, PreviewAttachAddItemTierBehavior$outboundSchema, type PreviewAttachAddItemTo, type PreviewAttachAddItemTo$Outbound, PreviewAttachAddItemTo$outboundSchema, type PreviewAttachAttachDiscount, type PreviewAttachAttachDiscount$Outbound, PreviewAttachAttachDiscount$outboundSchema, type PreviewAttachAutoTopup, type PreviewAttachAutoTopup$Outbound, PreviewAttachAutoTopup$outboundSchema, type PreviewAttachBasePrice, type PreviewAttachBasePrice$Outbound, PreviewAttachBasePrice$outboundSchema, type PreviewAttachBillingControls, type PreviewAttachBillingControls$Outbound, PreviewAttachBillingControls$outboundSchema, type PreviewAttachCarryOverBalances, type PreviewAttachCarryOverBalances$Outbound, PreviewAttachCarryOverBalances$outboundSchema, type PreviewAttachCarryOverUsages, type PreviewAttachCarryOverUsages$Outbound, PreviewAttachCarryOverUsages$outboundSchema, PreviewAttachCheckoutType, PreviewAttachCheckoutType$inboundSchema, type PreviewAttachCustomLineItem, type PreviewAttachCustomLineItem$Outbound, PreviewAttachCustomLineItem$outboundSchema, type PreviewAttachCustomize, type PreviewAttachCustomize$Outbound, PreviewAttachCustomize$outboundSchema, type PreviewAttachDiscount, PreviewAttachDiscount$inboundSchema, PreviewAttachDurationType, PreviewAttachDurationType$outboundSchema, type PreviewAttachFeatureQuantityRequest, type PreviewAttachFeatureQuantityRequest$Outbound, PreviewAttachFeatureQuantityRequest$outboundSchema, type PreviewAttachFilter, type PreviewAttachFilter$Outbound, PreviewAttachFilter$outboundSchema, type PreviewAttachFreeTrialParams, type PreviewAttachFreeTrialParams$Outbound, PreviewAttachFreeTrialParams$outboundSchema, type PreviewAttachGlobals, type PreviewAttachIncoming, PreviewAttachIncoming$inboundSchema, type PreviewAttachIncomingFeatureQuantity, PreviewAttachIncomingFeatureQuantity$inboundSchema, PreviewAttachIntervalRemoveItemEnum1, PreviewAttachIntervalRemoveItemEnum1$outboundSchema, PreviewAttachIntervalRemoveItemEnum2, PreviewAttachIntervalRemoveItemEnum2$outboundSchema, type PreviewAttachIntervalUnion, type PreviewAttachIntervalUnion$Outbound, PreviewAttachIntervalUnion$outboundSchema, type PreviewAttachInvoiceCredits, PreviewAttachInvoiceCredits$inboundSchema, type PreviewAttachInvoiceMode, type PreviewAttachInvoiceMode$Outbound, PreviewAttachInvoiceMode$outboundSchema, PreviewAttachItemBillingMethod, PreviewAttachItemBillingMethod$outboundSchema, PreviewAttachItemExpiryDurationType, PreviewAttachItemExpiryDurationType$outboundSchema, PreviewAttachItemOnDecrease, PreviewAttachItemOnDecrease$outboundSchema, PreviewAttachItemOnIncrease, PreviewAttachItemOnIncrease$outboundSchema, type PreviewAttachItemPlanItem, type PreviewAttachItemPlanItem$Outbound, PreviewAttachItemPlanItem$outboundSchema, type PreviewAttachItemPrice, type PreviewAttachItemPrice$Outbound, PreviewAttachItemPrice$outboundSchema, PreviewAttachItemPriceInterval, PreviewAttachItemPriceInterval$outboundSchema, type PreviewAttachItemProration, type PreviewAttachItemProration$Outbound, PreviewAttachItemProration$outboundSchema, type PreviewAttachItemReset, type PreviewAttachItemReset$Outbound, PreviewAttachItemReset$outboundSchema, PreviewAttachItemResetInterval, PreviewAttachItemResetInterval$outboundSchema, type PreviewAttachItemRollover, type PreviewAttachItemRollover$Outbound, PreviewAttachItemRollover$outboundSchema, type PreviewAttachItemTier, type PreviewAttachItemTier$Outbound, PreviewAttachItemTier$outboundSchema, PreviewAttachItemTierBehavior, PreviewAttachItemTierBehavior$outboundSchema, type PreviewAttachItemTo, type PreviewAttachItemTo$Outbound, PreviewAttachItemTo$outboundSchema, PreviewAttachLimitType, PreviewAttachLimitType$outboundSchema, type PreviewAttachLineItem, PreviewAttachLineItem$inboundSchema, type PreviewAttachLineItemPeriod, PreviewAttachLineItemPeriod$inboundSchema, type PreviewAttachNextCycle, PreviewAttachNextCycle$inboundSchema, type PreviewAttachNextCycleDiscount, PreviewAttachNextCycleDiscount$inboundSchema, type PreviewAttachNextCycleLineItem, PreviewAttachNextCycleLineItem$inboundSchema, type PreviewAttachNextCycleLineItemPeriod, PreviewAttachNextCycleLineItemPeriod$inboundSchema, PreviewAttachOnEnd, PreviewAttachOnEnd$outboundSchema, type PreviewAttachOutgoing, PreviewAttachOutgoing$inboundSchema, type PreviewAttachOutgoingFeatureQuantity, PreviewAttachOutgoingFeatureQuantity$inboundSchema, type PreviewAttachOverageAllowed, type PreviewAttachOverageAllowed$Outbound, PreviewAttachOverageAllowed$outboundSchema, type PreviewAttachParams, type PreviewAttachParams$Outbound, PreviewAttachParams$outboundSchema, type PreviewAttachPlanItemFilter, type PreviewAttachPlanItemFilter$Outbound, PreviewAttachPlanItemFilter$outboundSchema, PreviewAttachPlanSchedule, PreviewAttachPlanSchedule$outboundSchema, PreviewAttachPriceInterval, PreviewAttachPriceInterval$outboundSchema, type PreviewAttachProperties, type PreviewAttachProperties$Outbound, PreviewAttachProperties$outboundSchema, PreviewAttachProrationBehavior, PreviewAttachProrationBehavior$outboundSchema, type PreviewAttachPurchaseLimit, type PreviewAttachPurchaseLimit$Outbound, PreviewAttachPurchaseLimit$outboundSchema, PreviewAttachPurchaseLimitInterval, PreviewAttachPurchaseLimitInterval$outboundSchema, PreviewAttachRedirectMode, PreviewAttachRedirectMode$outboundSchema, PreviewAttachRemoveItemBillingMethod, PreviewAttachRemoveItemBillingMethod$outboundSchema, type PreviewAttachResponse, PreviewAttachResponse$inboundSchema, type PreviewAttachSpendLimit, type PreviewAttachSpendLimit$Outbound, PreviewAttachSpendLimit$outboundSchema, PreviewAttachStatus, PreviewAttachStatus$inboundSchema, type PreviewAttachTax, PreviewAttachTax$inboundSchema, PreviewAttachThresholdType, PreviewAttachThresholdType$outboundSchema, type PreviewAttachUsageAlert, type PreviewAttachUsageAlert$Outbound, PreviewAttachUsageAlert$outboundSchema, type PreviewAttachUsageLimit, type PreviewAttachUsageLimit$Outbound, PreviewAttachUsageLimit$outboundSchema, PreviewAttachUsageLimitInterval, PreviewAttachUsageLimitInterval$outboundSchema, type PreviewAttachUsageLineItem, PreviewAttachUsageLineItem$inboundSchema, type PreviewAttachUsageLineItemPeriod, PreviewAttachUsageLineItemPeriod$inboundSchema, type PreviewMultiAttachAttachDiscount, type PreviewMultiAttachAttachDiscount$Outbound, PreviewMultiAttachAttachDiscount$outboundSchema, type PreviewMultiAttachBasePrice, type PreviewMultiAttachBasePrice$Outbound, PreviewMultiAttachBasePrice$outboundSchema, type PreviewMultiAttachBillingControls, type PreviewMultiAttachBillingControls$Outbound, PreviewMultiAttachBillingControls$outboundSchema, PreviewMultiAttachBillingMethod, PreviewMultiAttachBillingMethod$outboundSchema, PreviewMultiAttachCheckoutType, PreviewMultiAttachCheckoutType$inboundSchema, type PreviewMultiAttachCustomize, type PreviewMultiAttachCustomize$Outbound, PreviewMultiAttachCustomize$outboundSchema, type PreviewMultiAttachDiscount, PreviewMultiAttachDiscount$inboundSchema, PreviewMultiAttachDurationType, PreviewMultiAttachDurationType$outboundSchema, type PreviewMultiAttachEntityData, type PreviewMultiAttachEntityData$Outbound, PreviewMultiAttachEntityData$outboundSchema, PreviewMultiAttachEntityDataInterval, PreviewMultiAttachEntityDataInterval$outboundSchema, PreviewMultiAttachExpiryDurationType, PreviewMultiAttachExpiryDurationType$outboundSchema, type PreviewMultiAttachFilter, type PreviewMultiAttachFilter$Outbound, PreviewMultiAttachFilter$outboundSchema, type PreviewMultiAttachFreeTrialParams, type PreviewMultiAttachFreeTrialParams$Outbound, PreviewMultiAttachFreeTrialParams$outboundSchema, type PreviewMultiAttachGlobals, type PreviewMultiAttachIncoming, PreviewMultiAttachIncoming$inboundSchema, type PreviewMultiAttachIncomingFeatureQuantity, PreviewMultiAttachIncomingFeatureQuantity$inboundSchema, type PreviewMultiAttachInvoiceCredits, PreviewMultiAttachInvoiceCredits$inboundSchema, type PreviewMultiAttachInvoiceMode, type PreviewMultiAttachInvoiceMode$Outbound, PreviewMultiAttachInvoiceMode$outboundSchema, PreviewMultiAttachItemPriceInterval, PreviewMultiAttachItemPriceInterval$outboundSchema, PreviewMultiAttachLimitType, PreviewMultiAttachLimitType$outboundSchema, type PreviewMultiAttachLineItem, PreviewMultiAttachLineItem$inboundSchema, type PreviewMultiAttachLineItemPeriod, PreviewMultiAttachLineItemPeriod$inboundSchema, type PreviewMultiAttachNextCycle, PreviewMultiAttachNextCycle$inboundSchema, type PreviewMultiAttachNextCycleDiscount, PreviewMultiAttachNextCycleDiscount$inboundSchema, type PreviewMultiAttachNextCycleLineItem, PreviewMultiAttachNextCycleLineItem$inboundSchema, type PreviewMultiAttachNextCycleLineItemPeriod, PreviewMultiAttachNextCycleLineItemPeriod$inboundSchema, PreviewMultiAttachOnDecrease, PreviewMultiAttachOnDecrease$outboundSchema, PreviewMultiAttachOnEnd, PreviewMultiAttachOnEnd$outboundSchema, PreviewMultiAttachOnIncrease, PreviewMultiAttachOnIncrease$outboundSchema, type PreviewMultiAttachOutgoing, PreviewMultiAttachOutgoing$inboundSchema, type PreviewMultiAttachOutgoingFeatureQuantity, PreviewMultiAttachOutgoingFeatureQuantity$inboundSchema, type PreviewMultiAttachOverageAllowed, type PreviewMultiAttachOverageAllowed$Outbound, PreviewMultiAttachOverageAllowed$outboundSchema, type PreviewMultiAttachParams, type PreviewMultiAttachParams$Outbound, PreviewMultiAttachParams$outboundSchema, type PreviewMultiAttachPlan, type PreviewMultiAttachPlan$Outbound, PreviewMultiAttachPlan$outboundSchema, type PreviewMultiAttachPlanFeatureQuantity, type PreviewMultiAttachPlanFeatureQuantity$Outbound, PreviewMultiAttachPlanFeatureQuantity$outboundSchema, type PreviewMultiAttachPlanItem, type PreviewMultiAttachPlanItem$Outbound, PreviewMultiAttachPlanItem$outboundSchema, type PreviewMultiAttachPrice, type PreviewMultiAttachPrice$Outbound, PreviewMultiAttachPrice$outboundSchema, PreviewMultiAttachPriceInterval, PreviewMultiAttachPriceInterval$outboundSchema, type PreviewMultiAttachProperties, type PreviewMultiAttachProperties$Outbound, PreviewMultiAttachProperties$outboundSchema, type PreviewMultiAttachProration, type PreviewMultiAttachProration$Outbound, PreviewMultiAttachProration$outboundSchema, PreviewMultiAttachRedirectMode, PreviewMultiAttachRedirectMode$outboundSchema, type PreviewMultiAttachReset, type PreviewMultiAttachReset$Outbound, PreviewMultiAttachReset$outboundSchema, PreviewMultiAttachResetInterval, PreviewMultiAttachResetInterval$outboundSchema, type PreviewMultiAttachResponse, PreviewMultiAttachResponse$inboundSchema, type PreviewMultiAttachRollover, type PreviewMultiAttachRollover$Outbound, PreviewMultiAttachRollover$outboundSchema, type PreviewMultiAttachSpendLimit, type PreviewMultiAttachSpendLimit$Outbound, PreviewMultiAttachSpendLimit$outboundSchema, PreviewMultiAttachStatus, PreviewMultiAttachStatus$inboundSchema, type PreviewMultiAttachTax, PreviewMultiAttachTax$inboundSchema, PreviewMultiAttachThresholdType, PreviewMultiAttachThresholdType$outboundSchema, type PreviewMultiAttachTier, type PreviewMultiAttachTier$Outbound, PreviewMultiAttachTier$outboundSchema, PreviewMultiAttachTierBehavior, PreviewMultiAttachTierBehavior$outboundSchema, type PreviewMultiAttachTo, type PreviewMultiAttachTo$Outbound, PreviewMultiAttachTo$outboundSchema, type PreviewMultiAttachUsageAlert, type PreviewMultiAttachUsageAlert$Outbound, PreviewMultiAttachUsageAlert$outboundSchema, type PreviewMultiAttachUsageLimit, type PreviewMultiAttachUsageLimit$Outbound, PreviewMultiAttachUsageLimit$outboundSchema, type PreviewMultiAttachUsageLineItem, PreviewMultiAttachUsageLineItem$inboundSchema, type PreviewMultiAttachUsageLineItemPeriod, PreviewMultiAttachUsageLineItemPeriod$inboundSchema, PreviewMultiUpdateCancelAction, PreviewMultiUpdateCancelAction$outboundSchema, type PreviewMultiUpdateDiscount, PreviewMultiUpdateDiscount$inboundSchema, type PreviewMultiUpdateGlobals, type PreviewMultiUpdateIncoming, PreviewMultiUpdateIncoming$inboundSchema, type PreviewMultiUpdateIncomingFeatureQuantity, PreviewMultiUpdateIncomingFeatureQuantity$inboundSchema, type PreviewMultiUpdateLineItem, PreviewMultiUpdateLineItem$inboundSchema, type PreviewMultiUpdateLineItemPeriod, PreviewMultiUpdateLineItemPeriod$inboundSchema, type PreviewMultiUpdateNextCycle, PreviewMultiUpdateNextCycle$inboundSchema, type PreviewMultiUpdateNextCycleDiscount, PreviewMultiUpdateNextCycleDiscount$inboundSchema, type PreviewMultiUpdateNextCycleLineItem, PreviewMultiUpdateNextCycleLineItem$inboundSchema, type PreviewMultiUpdateNextCycleLineItemPeriod, PreviewMultiUpdateNextCycleLineItemPeriod$inboundSchema, type PreviewMultiUpdateOutgoing, PreviewMultiUpdateOutgoing$inboundSchema, type PreviewMultiUpdateOutgoingFeatureQuantity, PreviewMultiUpdateOutgoingFeatureQuantity$inboundSchema, type PreviewMultiUpdateParams, type PreviewMultiUpdateParams$Outbound, PreviewMultiUpdateParams$outboundSchema, PreviewMultiUpdateProrationBehavior, PreviewMultiUpdateProrationBehavior$outboundSchema, type PreviewMultiUpdateSubscription, PreviewMultiUpdateSubscription$inboundSchema, type PreviewMultiUpdateUpdate, type PreviewMultiUpdateUpdate$Outbound, PreviewMultiUpdateUpdate$outboundSchema, type PreviewMultiUpdateUsageLineItem, PreviewMultiUpdateUsageLineItem$inboundSchema, type PreviewMultiUpdateUsageLineItemPeriod, PreviewMultiUpdateUsageLineItemPeriod$inboundSchema, PreviewUpdateAddItemBillingMethod, PreviewUpdateAddItemBillingMethod$outboundSchema, PreviewUpdateAddItemExpiryDurationType, PreviewUpdateAddItemExpiryDurationType$outboundSchema, PreviewUpdateAddItemOnDecrease, PreviewUpdateAddItemOnDecrease$outboundSchema, PreviewUpdateAddItemOnIncrease, PreviewUpdateAddItemOnIncrease$outboundSchema, type PreviewUpdateAddItemPlanItem, type PreviewUpdateAddItemPlanItem$Outbound, PreviewUpdateAddItemPlanItem$outboundSchema, type PreviewUpdateAddItemPrice, type PreviewUpdateAddItemPrice$Outbound, PreviewUpdateAddItemPrice$outboundSchema, PreviewUpdateAddItemPriceInterval, PreviewUpdateAddItemPriceInterval$outboundSchema, type PreviewUpdateAddItemProration, type PreviewUpdateAddItemProration$Outbound, PreviewUpdateAddItemProration$outboundSchema, type PreviewUpdateAddItemReset, type PreviewUpdateAddItemReset$Outbound, PreviewUpdateAddItemReset$outboundSchema, PreviewUpdateAddItemResetInterval, PreviewUpdateAddItemResetInterval$outboundSchema, type PreviewUpdateAddItemRollover, type PreviewUpdateAddItemRollover$Outbound, PreviewUpdateAddItemRollover$outboundSchema, type PreviewUpdateAddItemTier, type PreviewUpdateAddItemTier$Outbound, PreviewUpdateAddItemTier$outboundSchema, PreviewUpdateAddItemTierBehavior, PreviewUpdateAddItemTierBehavior$outboundSchema, type PreviewUpdateAddItemTo, type PreviewUpdateAddItemTo$Outbound, PreviewUpdateAddItemTo$outboundSchema, type PreviewUpdateAttachDiscount, type PreviewUpdateAttachDiscount$Outbound, PreviewUpdateAttachDiscount$outboundSchema, type PreviewUpdateAutoTopup, type PreviewUpdateAutoTopup$Outbound, PreviewUpdateAutoTopup$outboundSchema, type PreviewUpdateBasePrice, type PreviewUpdateBasePrice$Outbound, PreviewUpdateBasePrice$outboundSchema, type PreviewUpdateBillingControls, type PreviewUpdateBillingControls$Outbound, PreviewUpdateBillingControls$outboundSchema, PreviewUpdateCancelAction, PreviewUpdateCancelAction$outboundSchema, type PreviewUpdateCarryOverUsages, type PreviewUpdateCarryOverUsages$Outbound, PreviewUpdateCarryOverUsages$outboundSchema, type PreviewUpdateCustomize, type PreviewUpdateCustomize$Outbound, PreviewUpdateCustomize$outboundSchema, type PreviewUpdateDiscount, PreviewUpdateDiscount$inboundSchema, PreviewUpdateDurationType, PreviewUpdateDurationType$outboundSchema, type PreviewUpdateFeatureQuantityRequest, type PreviewUpdateFeatureQuantityRequest$Outbound, PreviewUpdateFeatureQuantityRequest$outboundSchema, type PreviewUpdateFilter, type PreviewUpdateFilter$Outbound, PreviewUpdateFilter$outboundSchema, type PreviewUpdateFreeTrialParams, type PreviewUpdateFreeTrialParams$Outbound, PreviewUpdateFreeTrialParams$outboundSchema, type PreviewUpdateGlobals, type PreviewUpdateIncoming, PreviewUpdateIncoming$inboundSchema, type PreviewUpdateIncomingFeatureQuantity, PreviewUpdateIncomingFeatureQuantity$inboundSchema, PreviewUpdateIntervalRemoveItemEnum1, PreviewUpdateIntervalRemoveItemEnum1$outboundSchema, PreviewUpdateIntervalRemoveItemEnum2, PreviewUpdateIntervalRemoveItemEnum2$outboundSchema, type PreviewUpdateIntervalUnion, type PreviewUpdateIntervalUnion$Outbound, PreviewUpdateIntervalUnion$outboundSchema, type PreviewUpdateInvoiceCredits, PreviewUpdateInvoiceCredits$inboundSchema, type PreviewUpdateInvoiceMode, type PreviewUpdateInvoiceMode$Outbound, PreviewUpdateInvoiceMode$outboundSchema, PreviewUpdateItemBillingMethod, PreviewUpdateItemBillingMethod$outboundSchema, PreviewUpdateItemExpiryDurationType, PreviewUpdateItemExpiryDurationType$outboundSchema, PreviewUpdateItemOnDecrease, PreviewUpdateItemOnDecrease$outboundSchema, PreviewUpdateItemOnIncrease, PreviewUpdateItemOnIncrease$outboundSchema, type PreviewUpdateItemPlanItem, type PreviewUpdateItemPlanItem$Outbound, PreviewUpdateItemPlanItem$outboundSchema, type PreviewUpdateItemPrice, type PreviewUpdateItemPrice$Outbound, PreviewUpdateItemPrice$outboundSchema, PreviewUpdateItemPriceInterval, PreviewUpdateItemPriceInterval$outboundSchema, type PreviewUpdateItemProration, type PreviewUpdateItemProration$Outbound, PreviewUpdateItemProration$outboundSchema, type PreviewUpdateItemReset, type PreviewUpdateItemReset$Outbound, PreviewUpdateItemReset$outboundSchema, PreviewUpdateItemResetInterval, PreviewUpdateItemResetInterval$outboundSchema, type PreviewUpdateItemRollover, type PreviewUpdateItemRollover$Outbound, PreviewUpdateItemRollover$outboundSchema, type PreviewUpdateItemTier, type PreviewUpdateItemTier$Outbound, PreviewUpdateItemTier$outboundSchema, PreviewUpdateItemTierBehavior, PreviewUpdateItemTierBehavior$outboundSchema, type PreviewUpdateItemTo, type PreviewUpdateItemTo$Outbound, PreviewUpdateItemTo$outboundSchema, PreviewUpdateLimitType, PreviewUpdateLimitType$outboundSchema, type PreviewUpdateLineItem, PreviewUpdateLineItem$inboundSchema, type PreviewUpdateLineItemPeriod, PreviewUpdateLineItemPeriod$inboundSchema, type PreviewUpdateNextCycle, PreviewUpdateNextCycle$inboundSchema, type PreviewUpdateNextCycleDiscount, PreviewUpdateNextCycleDiscount$inboundSchema, type PreviewUpdateNextCycleLineItem, PreviewUpdateNextCycleLineItem$inboundSchema, type PreviewUpdateNextCycleLineItemPeriod, PreviewUpdateNextCycleLineItemPeriod$inboundSchema, PreviewUpdateOnEnd, PreviewUpdateOnEnd$outboundSchema, type PreviewUpdateOutgoing, PreviewUpdateOutgoing$inboundSchema, type PreviewUpdateOutgoingFeatureQuantity, PreviewUpdateOutgoingFeatureQuantity$inboundSchema, type PreviewUpdateOverageAllowed, type PreviewUpdateOverageAllowed$Outbound, PreviewUpdateOverageAllowed$outboundSchema, type PreviewUpdateParams, type PreviewUpdateParams$Outbound, PreviewUpdateParams$outboundSchema, type PreviewUpdatePlanItemFilter, type PreviewUpdatePlanItemFilter$Outbound, PreviewUpdatePlanItemFilter$outboundSchema, PreviewUpdatePriceInterval, PreviewUpdatePriceInterval$outboundSchema, type PreviewUpdateProperties, type PreviewUpdateProperties$Outbound, PreviewUpdateProperties$outboundSchema, PreviewUpdateProrationBehavior, PreviewUpdateProrationBehavior$outboundSchema, type PreviewUpdatePurchaseLimit, type PreviewUpdatePurchaseLimit$Outbound, PreviewUpdatePurchaseLimit$outboundSchema, PreviewUpdatePurchaseLimitInterval, PreviewUpdatePurchaseLimitInterval$outboundSchema, type PreviewUpdateRecalculateBalances, type PreviewUpdateRecalculateBalances$Outbound, PreviewUpdateRecalculateBalances$outboundSchema, PreviewUpdateRedirectMode, PreviewUpdateRedirectMode$outboundSchema, PreviewUpdateRefundLastPayment, PreviewUpdateRefundLastPayment$outboundSchema, PreviewUpdateRemoveItemBillingMethod, PreviewUpdateRemoveItemBillingMethod$outboundSchema, type PreviewUpdateResponse, PreviewUpdateResponse$inboundSchema, type PreviewUpdateSpendLimit, type PreviewUpdateSpendLimit$Outbound, PreviewUpdateSpendLimit$outboundSchema, PreviewUpdateStatus, PreviewUpdateStatus$inboundSchema, type PreviewUpdateTax, PreviewUpdateTax$inboundSchema, PreviewUpdateThresholdType, PreviewUpdateThresholdType$outboundSchema, type PreviewUpdateUsageAlert, type PreviewUpdateUsageAlert$Outbound, PreviewUpdateUsageAlert$outboundSchema, type PreviewUpdateUsageLimit, type PreviewUpdateUsageLimit$Outbound, PreviewUpdateUsageLimit$outboundSchema, PreviewUpdateUsageLimitInterval, PreviewUpdateUsageLimitInterval$outboundSchema, type PreviewUpdateUsageLineItem, PreviewUpdateUsageLineItem$inboundSchema, type PreviewUpdateUsageLineItemPeriod, PreviewUpdateUsageLineItemPeriod$inboundSchema, PriceVariantInterval, PriceVariantInterval$outboundSchema, ProcessorType, ProcessorType$inboundSchema, type Processors, Processors$inboundSchema, type ProductDisplay1, ProductDisplay1$inboundSchema, type ProductDisplay2, ProductDisplay2$inboundSchema, ProductScenario1, ProductScenario1$inboundSchema, ProductScenario2, ProductScenario2$inboundSchema, ProductType1, ProductType1$inboundSchema, ProductType2, ProductType2$inboundSchema, type Properties, type Properties$Outbound, Properties$outboundSchema, type Proration, Proration$inboundSchema, type Purchase, Purchase$inboundSchema, PurchaseScope, PurchaseScope$inboundSchema, Range, Range$outboundSchema, type RedeemReferralCodeGlobals, type RedeemReferralCodeParams, type RedeemReferralCodeParams$Outbound, RedeemReferralCodeParams$outboundSchema, type RedeemReferralCodeResponse, RedeemReferralCodeResponse$inboundSchema, type RedeemRewardCodeGlobals, type RedeemRewardCodeParams, type RedeemRewardCodeParams$Outbound, RedeemRewardCodeParams$outboundSchema, type RedeemRewardCodeResponse, RedeemRewardCodeResponse$inboundSchema, type Referral, Referral$inboundSchema, type ReferralCustomer, ReferralCustomer$inboundSchema, type RefreshKeyGlobals, type RefreshKeyParams, type RefreshKeyParams$Outbound, RefreshKeyParams$outboundSchema, type RefreshKeyResponse, RefreshKeyResponse$inboundSchema, RequestAbortedError, type RequestBody, type RequestBody$Outbound, RequestBody$outboundSchema, RequestTimeoutError, ResponseValidationError, type Result, Result$inboundSchema, type Revenuecat, Revenuecat$inboundSchema, type RevokeKeyGlobals, type RevokeKeyParams, type RevokeKeyParams$Outbound, RevokeKeyParams$outboundSchema, type RevokeKeyResponse, RevokeKeyResponse$inboundSchema, type Rewards$1 as Rewards, Rewards$inboundSchema, type RewardsListParams, type RewardsListParams$Outbound, RewardsListParams$outboundSchema, type SDKOptions, SDKValidationError, SDK_METADATA, Scenario1, Scenario1$inboundSchema, Scenario2, Scenario2$inboundSchema, type Security, type Security$Outbound, Security$outboundSchema, ServerList, SetupPaymentAddItemBillingMethod, SetupPaymentAddItemBillingMethod$outboundSchema, SetupPaymentAddItemExpiryDurationType, SetupPaymentAddItemExpiryDurationType$outboundSchema, SetupPaymentAddItemOnDecrease, SetupPaymentAddItemOnDecrease$outboundSchema, SetupPaymentAddItemOnIncrease, SetupPaymentAddItemOnIncrease$outboundSchema, type SetupPaymentAddItemPlanItem, type SetupPaymentAddItemPlanItem$Outbound, SetupPaymentAddItemPlanItem$outboundSchema, type SetupPaymentAddItemPrice, type SetupPaymentAddItemPrice$Outbound, SetupPaymentAddItemPrice$outboundSchema, SetupPaymentAddItemPriceInterval, SetupPaymentAddItemPriceInterval$outboundSchema, type SetupPaymentAddItemProration, type SetupPaymentAddItemProration$Outbound, SetupPaymentAddItemProration$outboundSchema, type SetupPaymentAddItemReset, type SetupPaymentAddItemReset$Outbound, SetupPaymentAddItemReset$outboundSchema, SetupPaymentAddItemResetInterval, SetupPaymentAddItemResetInterval$outboundSchema, type SetupPaymentAddItemRollover, type SetupPaymentAddItemRollover$Outbound, SetupPaymentAddItemRollover$outboundSchema, type SetupPaymentAddItemTier, type SetupPaymentAddItemTier$Outbound, SetupPaymentAddItemTier$outboundSchema, SetupPaymentAddItemTierBehavior, SetupPaymentAddItemTierBehavior$outboundSchema, type SetupPaymentAddItemTo, type SetupPaymentAddItemTo$Outbound, SetupPaymentAddItemTo$outboundSchema, type SetupPaymentAttachDiscount, type SetupPaymentAttachDiscount$Outbound, SetupPaymentAttachDiscount$outboundSchema, type SetupPaymentAutoTopup, type SetupPaymentAutoTopup$Outbound, SetupPaymentAutoTopup$outboundSchema, type SetupPaymentBasePrice, type SetupPaymentBasePrice$Outbound, SetupPaymentBasePrice$outboundSchema, type SetupPaymentBillingControls, type SetupPaymentBillingControls$Outbound, SetupPaymentBillingControls$outboundSchema, type SetupPaymentCarryOverBalances, type SetupPaymentCarryOverBalances$Outbound, SetupPaymentCarryOverBalances$outboundSchema, type SetupPaymentCarryOverUsages, type SetupPaymentCarryOverUsages$Outbound, SetupPaymentCarryOverUsages$outboundSchema, type SetupPaymentCustomLineItem, type SetupPaymentCustomLineItem$Outbound, SetupPaymentCustomLineItem$outboundSchema, type SetupPaymentCustomize, type SetupPaymentCustomize$Outbound, SetupPaymentCustomize$outboundSchema, SetupPaymentDurationType, SetupPaymentDurationType$outboundSchema, type SetupPaymentFeatureQuantity, type SetupPaymentFeatureQuantity$Outbound, SetupPaymentFeatureQuantity$outboundSchema, type SetupPaymentFilter, type SetupPaymentFilter$Outbound, SetupPaymentFilter$outboundSchema, type SetupPaymentFreeTrialParams, type SetupPaymentFreeTrialParams$Outbound, SetupPaymentFreeTrialParams$outboundSchema, type SetupPaymentGlobals, SetupPaymentIntervalRemoveItemEnum1, SetupPaymentIntervalRemoveItemEnum1$outboundSchema, SetupPaymentIntervalRemoveItemEnum2, SetupPaymentIntervalRemoveItemEnum2$outboundSchema, type SetupPaymentIntervalUnion, type SetupPaymentIntervalUnion$Outbound, SetupPaymentIntervalUnion$outboundSchema, SetupPaymentItemBillingMethod, SetupPaymentItemBillingMethod$outboundSchema, SetupPaymentItemExpiryDurationType, SetupPaymentItemExpiryDurationType$outboundSchema, SetupPaymentItemOnDecrease, SetupPaymentItemOnDecrease$outboundSchema, SetupPaymentItemOnIncrease, SetupPaymentItemOnIncrease$outboundSchema, type SetupPaymentItemPlanItem, type SetupPaymentItemPlanItem$Outbound, SetupPaymentItemPlanItem$outboundSchema, type SetupPaymentItemPrice, type SetupPaymentItemPrice$Outbound, SetupPaymentItemPrice$outboundSchema, SetupPaymentItemPriceInterval, SetupPaymentItemPriceInterval$outboundSchema, type SetupPaymentItemProration, type SetupPaymentItemProration$Outbound, SetupPaymentItemProration$outboundSchema, type SetupPaymentItemReset, type SetupPaymentItemReset$Outbound, SetupPaymentItemReset$outboundSchema, SetupPaymentItemResetInterval, SetupPaymentItemResetInterval$outboundSchema, type SetupPaymentItemRollover, type SetupPaymentItemRollover$Outbound, SetupPaymentItemRollover$outboundSchema, type SetupPaymentItemTier, type SetupPaymentItemTier$Outbound, SetupPaymentItemTier$outboundSchema, SetupPaymentItemTierBehavior, SetupPaymentItemTierBehavior$outboundSchema, type SetupPaymentItemTo, type SetupPaymentItemTo$Outbound, SetupPaymentItemTo$outboundSchema, SetupPaymentLimitType, SetupPaymentLimitType$outboundSchema, SetupPaymentOnEnd, SetupPaymentOnEnd$outboundSchema, type SetupPaymentOverageAllowed, type SetupPaymentOverageAllowed$Outbound, SetupPaymentOverageAllowed$outboundSchema, type SetupPaymentParams, type SetupPaymentParams$Outbound, SetupPaymentParams$outboundSchema, type SetupPaymentPlanItemFilter, type SetupPaymentPlanItemFilter$Outbound, SetupPaymentPlanItemFilter$outboundSchema, SetupPaymentPriceInterval, SetupPaymentPriceInterval$outboundSchema, type SetupPaymentProperties, type SetupPaymentProperties$Outbound, SetupPaymentProperties$outboundSchema, SetupPaymentProrationBehavior, SetupPaymentProrationBehavior$outboundSchema, type SetupPaymentPurchaseLimit, type SetupPaymentPurchaseLimit$Outbound, SetupPaymentPurchaseLimit$outboundSchema, SetupPaymentPurchaseLimitInterval, SetupPaymentPurchaseLimitInterval$outboundSchema, SetupPaymentRemoveItemBillingMethod, SetupPaymentRemoveItemBillingMethod$outboundSchema, type SetupPaymentResponse, SetupPaymentResponse$inboundSchema, type SetupPaymentSpendLimit, type SetupPaymentSpendLimit$Outbound, SetupPaymentSpendLimit$outboundSchema, SetupPaymentThresholdType, SetupPaymentThresholdType$outboundSchema, type SetupPaymentUsageAlert, type SetupPaymentUsageAlert$Outbound, SetupPaymentUsageAlert$outboundSchema, type SetupPaymentUsageLimit, type SetupPaymentUsageLimit$Outbound, SetupPaymentUsageLimit$outboundSchema, SetupPaymentUsageLimitInterval, SetupPaymentUsageLimitInterval$outboundSchema, type StartingAfter2, type StartingAfter2$Outbound, StartingAfter2$outboundSchema, type StartsAt2, type StartsAt2$Outbound, StartsAt2$outboundSchema, StorePush, StorePush$inboundSchema, type Stripe, Stripe$inboundSchema, type Subscription, Subscription$inboundSchema, SubscriptionScope, SubscriptionScope$inboundSchema, type SyncRevenueCatApp, SyncRevenueCatApp$inboundSchema, SyncRevenueCatEnv, SyncRevenueCatEnv$outboundSchema, type SyncRevenueCatGlobals, type SyncRevenueCatParams, type SyncRevenueCatParams$Outbound, SyncRevenueCatParams$outboundSchema, SyncRevenueCatPrice, SyncRevenueCatPrice$inboundSchema, SyncRevenueCatProduct, SyncRevenueCatProduct$inboundSchema, type SyncRevenueCatResponse, SyncRevenueCatResponse$inboundSchema, SyncRevenueCatStatus, SyncRevenueCatStatus$inboundSchema, type Total, Total$inboundSchema, type TrackDeduction1, TrackDeduction1$inboundSchema, type TrackDeduction2, TrackDeduction2$inboundSchema, type TrackGlobals, TrackIntervalEnum1, TrackIntervalEnum1$inboundSchema, TrackIntervalEnum2, TrackIntervalEnum2$inboundSchema, type TrackIntervalUnion1, TrackIntervalUnion1$inboundSchema, type TrackIntervalUnion2, TrackIntervalUnion2$inboundSchema, type TrackLock, type TrackLock$Outbound, TrackLock$outboundSchema, type TrackParams, type TrackParams$Outbound, TrackParams$outboundSchema, type TrackReset1, TrackReset1$inboundSchema, type TrackReset2, TrackReset2$inboundSchema, type TrackResponse, TrackResponse$inboundSchema, type TrackResponseBody1, TrackResponseBody1$inboundSchema, type TrackResponseBody2, TrackResponseBody2$inboundSchema, type TrackTokensDeduction1, TrackTokensDeduction1$inboundSchema, type TrackTokensDeduction2, TrackTokensDeduction2$inboundSchema, type TrackTokensGlobals, TrackTokensIntervalEnum1, TrackTokensIntervalEnum1$inboundSchema, TrackTokensIntervalEnum2, TrackTokensIntervalEnum2$inboundSchema, type TrackTokensIntervalUnion1, TrackTokensIntervalUnion1$inboundSchema, type TrackTokensIntervalUnion2, TrackTokensIntervalUnion2$inboundSchema, type TrackTokensParams, type TrackTokensParams$Outbound, TrackTokensParams$outboundSchema, type TrackTokensReset1, TrackTokensReset1$inboundSchema, type TrackTokensReset2, TrackTokensReset2$inboundSchema, type TrackTokensResponse, TrackTokensResponse$inboundSchema, type TrackTokensResponseBody1, TrackTokensResponseBody1$inboundSchema, type TrackTokensResponseBody2, TrackTokensResponseBody2$inboundSchema, type TrialsUsed, TrialsUsed$inboundSchema, UnexpectedClientError, type UpdateBalanceGlobals, UpdateBalanceInterval, UpdateBalanceInterval$outboundSchema, type UpdateBalanceParams, type UpdateBalanceParams$Outbound, UpdateBalanceParams$outboundSchema, type UpdateBalanceResponse, UpdateBalanceResponse$inboundSchema, type UpdateCustomerAutoTopupRequest, type UpdateCustomerAutoTopupRequest$Outbound, UpdateCustomerAutoTopupRequest$outboundSchema, type UpdateCustomerAutoTopupResponse, UpdateCustomerAutoTopupResponse$inboundSchema, type UpdateCustomerBillingControlsRequest, type UpdateCustomerBillingControlsRequest$Outbound, UpdateCustomerBillingControlsRequest$outboundSchema, type UpdateCustomerBillingControlsResponse, UpdateCustomerBillingControlsResponse$inboundSchema, type UpdateCustomerConfigRequest, type UpdateCustomerConfigRequest$Outbound, UpdateCustomerConfigRequest$outboundSchema, type UpdateCustomerConfigResponse, UpdateCustomerConfigResponse$inboundSchema, type UpdateCustomerCreditSchema, UpdateCustomerCreditSchema$inboundSchema, type UpdateCustomerDisplay, UpdateCustomerDisplay$inboundSchema, UpdateCustomerEnv, UpdateCustomerEnv$inboundSchema, type UpdateCustomerFeature, UpdateCustomerFeature$inboundSchema, type UpdateCustomerFilterRequest, type UpdateCustomerFilterRequest$Outbound, UpdateCustomerFilterRequest$outboundSchema, type UpdateCustomerFilterResponse, UpdateCustomerFilterResponse$inboundSchema, type UpdateCustomerFlags, UpdateCustomerFlags$inboundSchema, type UpdateCustomerGlobals, UpdateCustomerLimitTypeRequestBody, UpdateCustomerLimitTypeRequestBody$outboundSchema, UpdateCustomerLimitTypeResponse, UpdateCustomerLimitTypeResponse$inboundSchema, type UpdateCustomerModelMarkups, UpdateCustomerModelMarkups$inboundSchema, type UpdateCustomerOverageAllowedRequest, type UpdateCustomerOverageAllowedRequest$Outbound, UpdateCustomerOverageAllowedRequest$outboundSchema, type UpdateCustomerOverageAllowedResponse, UpdateCustomerOverageAllowedResponse$inboundSchema, type UpdateCustomerParams, type UpdateCustomerParams$Outbound, UpdateCustomerParams$outboundSchema, type UpdateCustomerProcessors, UpdateCustomerProcessors$inboundSchema, type UpdateCustomerProperties, type UpdateCustomerProperties$Outbound, UpdateCustomerProperties$outboundSchema, type UpdateCustomerProviderMarkups, UpdateCustomerProviderMarkups$inboundSchema, type UpdateCustomerPurchase, UpdateCustomerPurchase$inboundSchema, UpdateCustomerPurchaseLimitIntervalRequestBody, UpdateCustomerPurchaseLimitIntervalRequestBody$outboundSchema, UpdateCustomerPurchaseLimitIntervalResponse1, UpdateCustomerPurchaseLimitIntervalResponse1$inboundSchema, UpdateCustomerPurchaseLimitIntervalResponse2, UpdateCustomerPurchaseLimitIntervalResponse2$inboundSchema, type UpdateCustomerPurchaseLimitRequest, type UpdateCustomerPurchaseLimitRequest$Outbound, UpdateCustomerPurchaseLimitRequest$outboundSchema, type UpdateCustomerPurchaseLimitResponse1, UpdateCustomerPurchaseLimitResponse1$inboundSchema, type UpdateCustomerPurchaseLimitResponse2, UpdateCustomerPurchaseLimitResponse2$inboundSchema, type UpdateCustomerPurchaseLimitUnion, UpdateCustomerPurchaseLimitUnion$inboundSchema, UpdateCustomerPurchaseScope, UpdateCustomerPurchaseScope$inboundSchema, type UpdateCustomerResponse, UpdateCustomerResponse$inboundSchema, type UpdateCustomerRevenuecat, UpdateCustomerRevenuecat$inboundSchema, type UpdateCustomerSpendLimitRequest, type UpdateCustomerSpendLimitRequest$Outbound, UpdateCustomerSpendLimitRequest$outboundSchema, type UpdateCustomerSpendLimitResponse, UpdateCustomerSpendLimitResponse$inboundSchema, UpdateCustomerStatus, UpdateCustomerStatus$inboundSchema, type UpdateCustomerStripe, UpdateCustomerStripe$inboundSchema, type UpdateCustomerSubscription, UpdateCustomerSubscription$inboundSchema, UpdateCustomerSubscriptionScope, UpdateCustomerSubscriptionScope$inboundSchema, UpdateCustomerThresholdTypeRequestBody, UpdateCustomerThresholdTypeRequestBody$outboundSchema, UpdateCustomerThresholdTypeResponse, UpdateCustomerThresholdTypeResponse$inboundSchema, UpdateCustomerType, UpdateCustomerType$inboundSchema, type UpdateCustomerUsageAlertRequestBody, type UpdateCustomerUsageAlertRequestBody$Outbound, UpdateCustomerUsageAlertRequestBody$outboundSchema, type UpdateCustomerUsageAlertResponse, UpdateCustomerUsageAlertResponse$inboundSchema, UpdateCustomerUsageLimitIntervalRequestBody, UpdateCustomerUsageLimitIntervalRequestBody$outboundSchema, UpdateCustomerUsageLimitIntervalResponse, UpdateCustomerUsageLimitIntervalResponse$inboundSchema, type UpdateCustomerUsageLimitRequest, type UpdateCustomerUsageLimitRequest$Outbound, UpdateCustomerUsageLimitRequest$outboundSchema, type UpdateCustomerUsageLimitResponse, UpdateCustomerUsageLimitResponse$inboundSchema, type UpdateCustomerVercel, UpdateCustomerVercel$inboundSchema, type UpdateEntityBillingControlsRequest, type UpdateEntityBillingControlsRequest$Outbound, UpdateEntityBillingControlsRequest$outboundSchema, type UpdateEntityBillingControlsResponse, UpdateEntityBillingControlsResponse$inboundSchema, type UpdateEntityCreditSchema, UpdateEntityCreditSchema$inboundSchema, type UpdateEntityDisplay, UpdateEntityDisplay$inboundSchema, UpdateEntityEnv, UpdateEntityEnv$inboundSchema, type UpdateEntityFeature, UpdateEntityFeature$inboundSchema, type UpdateEntityFilterRequest, type UpdateEntityFilterRequest$Outbound, UpdateEntityFilterRequest$outboundSchema, type UpdateEntityFilterResponse, UpdateEntityFilterResponse$inboundSchema, type UpdateEntityFlags, UpdateEntityFlags$inboundSchema, type UpdateEntityGlobals, UpdateEntityIntervalRequestBody, UpdateEntityIntervalRequestBody$outboundSchema, UpdateEntityIntervalResponse, UpdateEntityIntervalResponse$inboundSchema, type UpdateEntityInvoice, UpdateEntityInvoice$inboundSchema, UpdateEntityLimitTypeRequestBody, UpdateEntityLimitTypeRequestBody$outboundSchema, UpdateEntityLimitTypeResponse, UpdateEntityLimitTypeResponse$inboundSchema, type UpdateEntityModelMarkups, UpdateEntityModelMarkups$inboundSchema, type UpdateEntityOverageAllowedRequest, type UpdateEntityOverageAllowedRequest$Outbound, UpdateEntityOverageAllowedRequest$outboundSchema, type UpdateEntityOverageAllowedResponse, UpdateEntityOverageAllowedResponse$inboundSchema, type UpdateEntityParams, type UpdateEntityParams$Outbound, UpdateEntityParams$outboundSchema, UpdateEntityProcessorType, UpdateEntityProcessorType$inboundSchema, type UpdateEntityProperties, type UpdateEntityProperties$Outbound, UpdateEntityProperties$outboundSchema, type UpdateEntityProviderMarkups, UpdateEntityProviderMarkups$inboundSchema, type UpdateEntityPurchase, UpdateEntityPurchase$inboundSchema, UpdateEntityPurchaseScope, UpdateEntityPurchaseScope$inboundSchema, type UpdateEntityResponse, UpdateEntityResponse$inboundSchema, type UpdateEntitySpendLimitRequest, type UpdateEntitySpendLimitRequest$Outbound, UpdateEntitySpendLimitRequest$outboundSchema, type UpdateEntitySpendLimitResponse, UpdateEntitySpendLimitResponse$inboundSchema, UpdateEntityStatus, UpdateEntityStatus$inboundSchema, type UpdateEntitySubscription, UpdateEntitySubscription$inboundSchema, UpdateEntitySubscriptionScope, UpdateEntitySubscriptionScope$inboundSchema, UpdateEntityThresholdTypeRequestBody, UpdateEntityThresholdTypeRequestBody$outboundSchema, UpdateEntityThresholdTypeResponse, UpdateEntityThresholdTypeResponse$inboundSchema, UpdateEntityType, UpdateEntityType$inboundSchema, type UpdateEntityUsageAlertRequestBody, type UpdateEntityUsageAlertRequestBody$Outbound, UpdateEntityUsageAlertRequestBody$outboundSchema, type UpdateEntityUsageAlertResponse, UpdateEntityUsageAlertResponse$inboundSchema, type UpdateEntityUsageLimitRequest, type UpdateEntityUsageLimitRequest$Outbound, UpdateEntityUsageLimitRequest$outboundSchema, type UpdateEntityUsageLimitResponse, UpdateEntityUsageLimitResponse$inboundSchema, type UpdateFeatureCreditSchemaRequestBody, type UpdateFeatureCreditSchemaRequestBody$Outbound, UpdateFeatureCreditSchemaRequestBody$outboundSchema, type UpdateFeatureCreditSchemaResponse, UpdateFeatureCreditSchemaResponse$inboundSchema, type UpdateFeatureDisplayRequestBody, type UpdateFeatureDisplayRequestBody$Outbound, UpdateFeatureDisplayRequestBody$outboundSchema, type UpdateFeatureDisplayResponse, UpdateFeatureDisplayResponse$inboundSchema, type UpdateFeatureGlobals, type UpdateFeatureModelMarkupsRequest, type UpdateFeatureModelMarkupsRequest$Outbound, UpdateFeatureModelMarkupsRequest$outboundSchema, type UpdateFeatureModelMarkupsResponse, UpdateFeatureModelMarkupsResponse$inboundSchema, type UpdateFeatureParams, type UpdateFeatureParams$Outbound, UpdateFeatureParams$outboundSchema, type UpdateFeatureProviderMarkupsRequest, type UpdateFeatureProviderMarkupsRequest$Outbound, UpdateFeatureProviderMarkupsRequest$outboundSchema, type UpdateFeatureProviderMarkupsResponse, UpdateFeatureProviderMarkupsResponse$inboundSchema, type UpdateFeatureResponse, UpdateFeatureResponse$inboundSchema, UpdateFeatureTypeRequestBody, UpdateFeatureTypeRequestBody$outboundSchema, UpdateFeatureTypeResponse, UpdateFeatureTypeResponse$inboundSchema, UpdatePlanAttachAction, UpdatePlanAttachAction$inboundSchema, type UpdatePlanAutoTopupRequest, type UpdatePlanAutoTopupRequest$Outbound, UpdatePlanAutoTopupRequest$outboundSchema, type UpdatePlanAutoTopupResponse, UpdatePlanAutoTopupResponse$inboundSchema, type UpdatePlanBasePriceRequest, type UpdatePlanBasePriceRequest$Outbound, UpdatePlanBasePriceRequest$outboundSchema, type UpdatePlanBasePriceResponse, UpdatePlanBasePriceResponse$inboundSchema, type UpdatePlanBillingControlsRequest, type UpdatePlanBillingControlsRequest$Outbound, UpdatePlanBillingControlsRequest$outboundSchema, type UpdatePlanBillingControlsResponse, UpdatePlanBillingControlsResponse$inboundSchema, type UpdatePlanConfigRequest, type UpdatePlanConfigRequest$Outbound, UpdatePlanConfigRequest$outboundSchema, type UpdatePlanConfigResponse, UpdatePlanConfigResponse$inboundSchema, type UpdatePlanCreditSchema, UpdatePlanCreditSchema$inboundSchema, type UpdatePlanCustomerEligibility, UpdatePlanCustomerEligibility$inboundSchema, type UpdatePlanCustomizeResponse, UpdatePlanCustomizeResponse$inboundSchema, UpdatePlanDurationTypeRequest, UpdatePlanDurationTypeRequest$outboundSchema, UpdatePlanDurationTypeResponse, UpdatePlanDurationTypeResponse$inboundSchema, UpdatePlanEnv, UpdatePlanEnv$inboundSchema, type UpdatePlanFeature, UpdatePlanFeature$inboundSchema, type UpdatePlanFeatureDisplay, UpdatePlanFeatureDisplay$inboundSchema, type UpdatePlanFilterRequest, type UpdatePlanFilterRequest$Outbound, UpdatePlanFilterRequest$outboundSchema, type UpdatePlanFilterResponse, UpdatePlanFilterResponse$inboundSchema, type UpdatePlanFreeTrial, UpdatePlanFreeTrial$inboundSchema, type UpdatePlanFreeTrialParamsRequest, type UpdatePlanFreeTrialParamsRequest$Outbound, UpdatePlanFreeTrialParamsRequest$outboundSchema, type UpdatePlanFreeTrialParamsResponse, UpdatePlanFreeTrialParamsResponse$inboundSchema, type UpdatePlanGlobals, UpdatePlanIntervalVariantDetailsRemoveItemEnum1, UpdatePlanIntervalVariantDetailsRemoveItemEnum1$inboundSchema, UpdatePlanIntervalVariantDetailsRemoveItemEnum2, UpdatePlanIntervalVariantDetailsRemoveItemEnum2$inboundSchema, type UpdatePlanItem, UpdatePlanItem$inboundSchema, UpdatePlanItemBillingMethodRequestBody, UpdatePlanItemBillingMethodRequestBody$outboundSchema, UpdatePlanItemBillingMethodResponse, UpdatePlanItemBillingMethodResponse$inboundSchema, type UpdatePlanItemDisplay, UpdatePlanItemDisplay$inboundSchema, UpdatePlanItemExpiryDurationTypeRequestBody, UpdatePlanItemExpiryDurationTypeRequestBody$outboundSchema, UpdatePlanItemExpiryDurationTypeResponse, UpdatePlanItemExpiryDurationTypeResponse$inboundSchema, UpdatePlanItemOnDecrease, UpdatePlanItemOnDecrease$outboundSchema, UpdatePlanItemOnIncrease, UpdatePlanItemOnIncrease$outboundSchema, type UpdatePlanItemPlanItem, type UpdatePlanItemPlanItem$Outbound, UpdatePlanItemPlanItem$outboundSchema, UpdatePlanItemPriceIntervalRequestBody, UpdatePlanItemPriceIntervalRequestBody$outboundSchema, type UpdatePlanItemPriceRequestBody, type UpdatePlanItemPriceRequestBody$Outbound, UpdatePlanItemPriceRequestBody$outboundSchema, type UpdatePlanItemPriceResponse, UpdatePlanItemPriceResponse$inboundSchema, type UpdatePlanItemProration, type UpdatePlanItemProration$Outbound, UpdatePlanItemProration$outboundSchema, UpdatePlanItemResetIntervalRequestBody, UpdatePlanItemResetIntervalRequestBody$outboundSchema, type UpdatePlanItemResetRequestBody, type UpdatePlanItemResetRequestBody$Outbound, UpdatePlanItemResetRequestBody$outboundSchema, type UpdatePlanItemResetResponse, UpdatePlanItemResetResponse$inboundSchema, type UpdatePlanItemRolloverRequestBody, type UpdatePlanItemRolloverRequestBody$Outbound, UpdatePlanItemRolloverRequestBody$outboundSchema, type UpdatePlanItemRolloverResponse, UpdatePlanItemRolloverResponse$inboundSchema, UpdatePlanItemTierBehaviorRequestBody, UpdatePlanItemTierBehaviorRequestBody$outboundSchema, UpdatePlanItemTierBehaviorResponse, UpdatePlanItemTierBehaviorResponse$inboundSchema, type UpdatePlanItemTierRequestBody, type UpdatePlanItemTierRequestBody$Outbound, UpdatePlanItemTierRequestBody$outboundSchema, type UpdatePlanItemTierResponse, UpdatePlanItemTierResponse$inboundSchema, type UpdatePlanItemToRequestBody, type UpdatePlanItemToRequestBody$Outbound, UpdatePlanItemToRequestBody$outboundSchema, type UpdatePlanItemToResponse, UpdatePlanItemToResponse$inboundSchema, UpdatePlanLimitTypeRequestBody, UpdatePlanLimitTypeRequestBody$outboundSchema, UpdatePlanLimitTypeResponse, UpdatePlanLimitTypeResponse$inboundSchema, UpdatePlanOnEndRequest, UpdatePlanOnEndRequest$outboundSchema, UpdatePlanOnEndResponse, UpdatePlanOnEndResponse$inboundSchema, type UpdatePlanOverageAllowedRequest, type UpdatePlanOverageAllowedRequest$Outbound, UpdatePlanOverageAllowedRequest$outboundSchema, type UpdatePlanOverageAllowedResponse, UpdatePlanOverageAllowedResponse$inboundSchema, type UpdatePlanParams, type UpdatePlanParams$Outbound, UpdatePlanParams$outboundSchema, type UpdatePlanPlanItemFilterResponse, UpdatePlanPlanItemFilterResponse$inboundSchema, type UpdatePlanPlanItemResponse, UpdatePlanPlanItemResponse$inboundSchema, type UpdatePlanPriceDisplay, UpdatePlanPriceDisplay$inboundSchema, UpdatePlanPriceIntervalRequestBody, UpdatePlanPriceIntervalRequestBody$outboundSchema, UpdatePlanPriceIntervalResponse, UpdatePlanPriceIntervalResponse$inboundSchema, UpdatePlanPriceItemIntervalResponse, UpdatePlanPriceItemIntervalResponse$inboundSchema, type UpdatePlanPriceResponse, UpdatePlanPriceResponse$inboundSchema, UpdatePlanPriceVariantDetailsInterval, UpdatePlanPriceVariantDetailsInterval$inboundSchema, type UpdatePlanProperties, type UpdatePlanProperties$Outbound, UpdatePlanProperties$outboundSchema, type UpdatePlanProrationResponse, UpdatePlanProrationResponse$inboundSchema, UpdatePlanPurchaseLimitIntervalRequestBody, UpdatePlanPurchaseLimitIntervalRequestBody$outboundSchema, UpdatePlanPurchaseLimitIntervalResponse, UpdatePlanPurchaseLimitIntervalResponse$inboundSchema, type UpdatePlanPurchaseLimitRequest, type UpdatePlanPurchaseLimitRequest$Outbound, UpdatePlanPurchaseLimitRequest$outboundSchema, type UpdatePlanPurchaseLimitResponse, UpdatePlanPurchaseLimitResponse$inboundSchema, UpdatePlanResetItemIntervalResponse, UpdatePlanResetItemIntervalResponse$inboundSchema, type UpdatePlanResponse, UpdatePlanResponse$inboundSchema, type UpdatePlanSpendLimitRequest, type UpdatePlanSpendLimitRequest$Outbound, UpdatePlanSpendLimitRequest$outboundSchema, type UpdatePlanSpendLimitResponse, UpdatePlanSpendLimitResponse$inboundSchema, UpdatePlanStatus, UpdatePlanStatus$inboundSchema, UpdatePlanThresholdTypeRequestBody, UpdatePlanThresholdTypeRequestBody$outboundSchema, UpdatePlanThresholdTypeResponse, UpdatePlanThresholdTypeResponse$inboundSchema, UpdatePlanType, UpdatePlanType$inboundSchema, type UpdatePlanUsageAlertRequestBody, type UpdatePlanUsageAlertRequestBody$Outbound, UpdatePlanUsageAlertRequestBody$outboundSchema, type UpdatePlanUsageAlertResponse, UpdatePlanUsageAlertResponse$inboundSchema, UpdatePlanUsageLimitIntervalRequestBody, UpdatePlanUsageLimitIntervalRequestBody$outboundSchema, UpdatePlanUsageLimitIntervalResponse, UpdatePlanUsageLimitIntervalResponse$inboundSchema, type UpdatePlanUsageLimitRequest, type UpdatePlanUsageLimitRequest$Outbound, UpdatePlanUsageLimitRequest$outboundSchema, type UpdatePlanUsageLimitResponse, UpdatePlanUsageLimitResponse$inboundSchema, type UpdatePlanVariantDetails, UpdatePlanVariantDetails$inboundSchema, UpdatePlanVariantDetailsAddItemBillingMethod, UpdatePlanVariantDetailsAddItemBillingMethod$inboundSchema, UpdatePlanVariantDetailsAddItemPriceInterval, UpdatePlanVariantDetailsAddItemPriceInterval$inboundSchema, type UpdatePlanVariantDetailsAutoTopup, UpdatePlanVariantDetailsAutoTopup$inboundSchema, type UpdatePlanVariantDetailsBillingControls, UpdatePlanVariantDetailsBillingControls$inboundSchema, UpdatePlanVariantDetailsDurationType, UpdatePlanVariantDetailsDurationType$inboundSchema, UpdatePlanVariantDetailsExpiryDurationType, UpdatePlanVariantDetailsExpiryDurationType$inboundSchema, type UpdatePlanVariantDetailsFilter, UpdatePlanVariantDetailsFilter$inboundSchema, type UpdatePlanVariantDetailsIntervalUnion, UpdatePlanVariantDetailsIntervalUnion$inboundSchema, UpdatePlanVariantDetailsLimitType, UpdatePlanVariantDetailsLimitType$inboundSchema, UpdatePlanVariantDetailsOnDecrease, UpdatePlanVariantDetailsOnDecrease$inboundSchema, UpdatePlanVariantDetailsOnEnd, UpdatePlanVariantDetailsOnEnd$inboundSchema, UpdatePlanVariantDetailsOnIncrease, UpdatePlanVariantDetailsOnIncrease$inboundSchema, type UpdatePlanVariantDetailsOverageAllowed, UpdatePlanVariantDetailsOverageAllowed$inboundSchema, type UpdatePlanVariantDetailsPrice, UpdatePlanVariantDetailsPrice$inboundSchema, type UpdatePlanVariantDetailsPurchaseLimit, UpdatePlanVariantDetailsPurchaseLimit$inboundSchema, UpdatePlanVariantDetailsPurchaseLimitInterval, UpdatePlanVariantDetailsPurchaseLimitInterval$inboundSchema, UpdatePlanVariantDetailsRemoveItemBillingMethod, UpdatePlanVariantDetailsRemoveItemBillingMethod$inboundSchema, type UpdatePlanVariantDetailsReset, UpdatePlanVariantDetailsReset$inboundSchema, UpdatePlanVariantDetailsResetInterval, UpdatePlanVariantDetailsResetInterval$inboundSchema, type UpdatePlanVariantDetailsRollover, UpdatePlanVariantDetailsRollover$inboundSchema, type UpdatePlanVariantDetailsSpendLimit, UpdatePlanVariantDetailsSpendLimit$inboundSchema, UpdatePlanVariantDetailsThresholdType, UpdatePlanVariantDetailsThresholdType$inboundSchema, type UpdatePlanVariantDetailsTier, UpdatePlanVariantDetailsTier$inboundSchema, UpdatePlanVariantDetailsTierBehavior, UpdatePlanVariantDetailsTierBehavior$inboundSchema, type UpdatePlanVariantDetailsTo, UpdatePlanVariantDetailsTo$inboundSchema, type UpdatePlanVariantDetailsUsageAlert, UpdatePlanVariantDetailsUsageAlert$inboundSchema, type UpdatePlanVariantDetailsUsageLimit, UpdatePlanVariantDetailsUsageLimit$inboundSchema, UpdatePlanVariantDetailsUsageLimitInterval, UpdatePlanVariantDetailsUsageLimitInterval$inboundSchema, type UpdateSubscriptionParams, type UpdateSubscriptionParams$Outbound, UpdateSubscriptionParams$outboundSchema, UsageModel1, UsageModel1$inboundSchema, UsageModel2, UsageModel2$inboundSchema, type Variant, type Variant$Outbound, Variant$outboundSchema, VariantAddItemBillingMethod, VariantAddItemBillingMethod$outboundSchema, VariantAddItemPriceInterval, VariantAddItemPriceInterval$outboundSchema, type VariantAutoTopup, type VariantAutoTopup$Outbound, VariantAutoTopup$outboundSchema, type VariantBasePrice, type VariantBasePrice$Outbound, VariantBasePrice$outboundSchema, type VariantBillingControls, type VariantBillingControls$Outbound, VariantBillingControls$outboundSchema, type VariantCustomize, type VariantCustomize$Outbound, VariantCustomize$outboundSchema, type VariantDetails, VariantDetails$inboundSchema, VariantDetailsExpiryDurationType, VariantDetailsExpiryDurationType$inboundSchema, VariantDetailsOnEnd, VariantDetailsOnEnd$inboundSchema, VariantDurationType, VariantDurationType$outboundSchema, VariantExpiryDurationType, VariantExpiryDurationType$outboundSchema, type VariantFilter, type VariantFilter$Outbound, VariantFilter$outboundSchema, type VariantFreeTrialParams, type VariantFreeTrialParams$Outbound, VariantFreeTrialParams$outboundSchema, type VariantIntervalUnion, type VariantIntervalUnion$Outbound, VariantIntervalUnion$outboundSchema, VariantLimitType, VariantLimitType$outboundSchema, type VariantMigration, type VariantMigration$Outbound, VariantMigration$outboundSchema, VariantOnDecrease, VariantOnDecrease$outboundSchema, VariantOnEnd, VariantOnEnd$outboundSchema, VariantOnIncrease, VariantOnIncrease$outboundSchema, type VariantOverageAllowed, type VariantOverageAllowed$Outbound, VariantOverageAllowed$outboundSchema, type VariantPlanItem, type VariantPlanItem$Outbound, VariantPlanItem$outboundSchema, type VariantPlanItemFilter, type VariantPlanItemFilter$Outbound, VariantPlanItemFilter$outboundSchema, type VariantPrice, type VariantPrice$Outbound, VariantPrice$outboundSchema, type VariantProperties, type VariantProperties$Outbound, VariantProperties$outboundSchema, type VariantProration, type VariantProration$Outbound, VariantProration$outboundSchema, type VariantPurchaseLimit, type VariantPurchaseLimit$Outbound, VariantPurchaseLimit$outboundSchema, VariantPurchaseLimitInterval, VariantPurchaseLimitInterval$outboundSchema, VariantRemoveItemBillingMethod, VariantRemoveItemBillingMethod$outboundSchema, type VariantReset, type VariantReset$Outbound, VariantReset$outboundSchema, VariantResetInterval, VariantResetInterval$outboundSchema, type VariantRollover, type VariantRollover$Outbound, VariantRollover$outboundSchema, type VariantSpendLimit, type VariantSpendLimit$Outbound, VariantSpendLimit$outboundSchema, VariantThresholdType, VariantThresholdType$outboundSchema, type VariantTier, type VariantTier$Outbound, VariantTier$outboundSchema, VariantTierBehavior, VariantTierBehavior$outboundSchema, type VariantTo, type VariantTo$Outbound, VariantTo$outboundSchema, type VariantUsageAlert, type VariantUsageAlert$Outbound, VariantUsageAlert$outboundSchema, type VariantUsageLimit, type VariantUsageLimit$Outbound, VariantUsageLimit$outboundSchema, VariantUsageLimitInterval, VariantUsageLimitInterval$outboundSchema, type Vercel, Vercel$inboundSchema, aggregateEventsCustomRangeToJSON, aggregateEventsFeatureIdToJSON, aggregateEventsListFromJSON, aggregateEventsResponseFromJSON, apiKeyFromJSON, attachAddItemPlanItemToJSON, attachAddItemPriceToJSON, attachAddItemProrationToJSON, attachAddItemResetToJSON, attachAddItemRolloverToJSON, attachAddItemTierToJSON, attachAddItemToToJSON, attachAttachDiscountToJSON, attachAutoTopupToJSON, attachBasePriceToJSON, attachBillingControlsToJSON, attachCarryOverBalancesToJSON, attachCarryOverUsagesToJSON, attachCustomLineItemToJSON, attachCustomizeToJSON, attachFeatureQuantityToJSON, attachFilterToJSON, attachFreeTrialParamsToJSON, attachIntervalUnionToJSON, attachInvoiceFromJSON, attachInvoiceModeToJSON, attachItemPlanItemToJSON, attachItemPriceToJSON, attachItemProrationToJSON, attachItemResetToJSON, attachItemRolloverToJSON, attachItemTierToJSON, attachItemToToJSON, attachOverageAllowedToJSON, attachParamsToJSON, attachPlanItemFilterToJSON, attachPropertiesToJSON, attachPurchaseLimitToJSON, attachRequiredActionFromJSON, attachResponseFromJSON, attachSpendLimitToJSON, attachUsageAlertToJSON, attachUsageLimitToJSON, balanceCreditSchemaFromJSON, balanceDisplayFromJSON, balanceFeatureFromJSON, balanceFromJSON, balanceIntervalUnionFromJSON, balanceModelMarkupsFromJSON, balancePriceFromJSON, balanceProviderMarkupsFromJSON, balanceResetFromJSON, balanceRolloverFromJSON, balanceTierFromJSON, balanceToFromJSON, basePriceFromJSON, batchTrackLockToJSON, batchTrackResponseFromJSON, billableToJSON, billingUpdateAddItemPlanItemToJSON, billingUpdateAddItemPriceToJSON, billingUpdateAddItemProrationToJSON, billingUpdateAddItemResetToJSON, billingUpdateAddItemRolloverToJSON, billingUpdateAddItemTierToJSON, billingUpdateAddItemToToJSON, billingUpdateAttachDiscountToJSON, billingUpdateAutoTopupToJSON, billingUpdateBasePriceToJSON, billingUpdateBillingControlsToJSON, billingUpdateCarryOverUsagesToJSON, billingUpdateCustomizeToJSON, billingUpdateFeatureQuantityToJSON, billingUpdateFilterToJSON, billingUpdateFreeTrialParamsToJSON, billingUpdateIntervalUnionToJSON, billingUpdateInvoiceFromJSON, billingUpdateInvoiceModeToJSON, billingUpdateItemPlanItemToJSON, billingUpdateItemPriceToJSON, billingUpdateItemProrationToJSON, billingUpdateItemResetToJSON, billingUpdateItemRolloverToJSON, billingUpdateItemTierToJSON, billingUpdateItemToToJSON, billingUpdateOverageAllowedToJSON, billingUpdatePlanItemFilterToJSON, billingUpdatePropertiesToJSON, billingUpdatePurchaseLimitToJSON, billingUpdateRecalculateBalancesToJSON, billingUpdateRequiredActionFromJSON, billingUpdateResponseFromJSON, billingUpdateSpendLimitToJSON, billingUpdateUsageAlertToJSON, billingUpdateUsageLimitToJSON, breakdownFromJSON, checkAutoTopup1FromJSON, checkAutoTopup2FromJSON, checkBillingControls1FromJSON, checkBillingControls2FromJSON, checkConfig1FromJSON, checkConfig2FromJSON, checkCreditSchema1FromJSON, checkCreditSchema2FromJSON, checkFeature1FromJSON, checkFeature2FromJSON, checkFilter1FromJSON, checkFilter2FromJSON, checkFreeTrial1FromJSON, checkFreeTrial2FromJSON, checkItem1FromJSON, checkItem2FromJSON, checkLockToJSON, checkModelMarkups1FromJSON, checkModelMarkups2FromJSON, checkOverageAllowed1FromJSON, checkOverageAllowed2FromJSON, checkParamsToJSON, checkProduct1FromJSON, checkProduct2FromJSON, checkProperties1FromJSON, checkProperties2FromJSON, checkProviderMarkups1FromJSON, checkProviderMarkups2FromJSON, checkPurchaseLimit1FromJSON, checkPurchaseLimit2FromJSON, checkResponseBody1FromJSON, checkResponseBody2FromJSON, checkResponseFromJSON, checkRollover1FromJSON, checkRollover2FromJSON, checkSpendLimit1FromJSON, checkSpendLimit2FromJSON, checkUsageAlert1FromJSON, checkUsageAlert2FromJSON, checkUsageLimit1FromJSON, checkUsageLimit2FromJSON, couponFromJSON, couponPromoCodeFromJSON, createBalanceParamsToJSON, createBalanceResetToJSON, createBalanceResponseFromJSON, createBalanceRolloverToJSON, createEntityBillingControlsRequestToJSON, createEntityBillingControlsResponseFromJSON, createEntityCreditSchemaFromJSON, createEntityDisplayFromJSON, createEntityFeatureFromJSON, createEntityFilterRequestToJSON, createEntityFilterResponseFromJSON, createEntityFlagsFromJSON, createEntityInvoiceFromJSON, createEntityModelMarkupsFromJSON, createEntityOverageAllowedRequestToJSON, createEntityOverageAllowedResponseFromJSON, createEntityParamsToJSON, createEntityPropertiesToJSON, createEntityProviderMarkupsFromJSON, createEntityPurchaseFromJSON, createEntityResponseFromJSON, createEntitySpendLimitRequestToJSON, createEntitySpendLimitResponseFromJSON, createEntitySubscriptionFromJSON, createEntityUsageAlertRequestBodyToJSON, createEntityUsageAlertResponseFromJSON, createEntityUsageLimitRequestToJSON, createEntityUsageLimitResponseFromJSON, createFeatureCreditSchemaRequestBodyToJSON, createFeatureCreditSchemaResponseFromJSON, createFeatureDisplayRequestBodyToJSON, createFeatureDisplayResponseFromJSON, createFeatureModelMarkupsRequestToJSON, createFeatureModelMarkupsResponseFromJSON, createFeatureParamsToJSON, createFeatureProviderMarkupsRequestToJSON, createFeatureProviderMarkupsResponseFromJSON, createFeatureResponseFromJSON, createPlanAutoTopupRequestToJSON, createPlanAutoTopupResponseFromJSON, createPlanBasePriceFromJSON, createPlanBillingControlsRequestToJSON, createPlanBillingControlsResponseFromJSON, createPlanConfigRequestToJSON, createPlanConfigResponseFromJSON, createPlanCreditSchemaFromJSON, createPlanCustomerEligibilityFromJSON, createPlanCustomizeFromJSON, createPlanFeatureDisplayFromJSON, createPlanFeatureFromJSON, createPlanFilterRequestToJSON, createPlanFilterResponseFromJSON, createPlanFreeTrialParamsFromJSON, createPlanFreeTrialResponseFromJSON, createPlanIntervalUnionFromJSON, createPlanItemDisplayFromJSON, createPlanItemFromJSON, createPlanItemPlanItemToJSON, createPlanItemPriceRequestBodyToJSON, createPlanItemPriceResponseFromJSON, createPlanItemProrationToJSON, createPlanItemResetResponseFromJSON, createPlanItemRolloverResponseFromJSON, createPlanItemTierResponseFromJSON, createPlanItemToResponseFromJSON, createPlanOverageAllowedRequestToJSON, createPlanOverageAllowedResponseFromJSON, createPlanParamsToJSON, createPlanPlanItemFilterFromJSON, createPlanPlanItemResponseFromJSON, createPlanPriceDisplayFromJSON, createPlanPriceRequestBodyToJSON, createPlanPriceResponseFromJSON, createPlanPropertiesToJSON, createPlanProrationResponseFromJSON, createPlanPurchaseLimitRequestToJSON, createPlanPurchaseLimitResponseFromJSON, createPlanResetRequestBodyToJSON, createPlanResponseFromJSON, createPlanRolloverRequestBodyToJSON, createPlanSpendLimitRequestToJSON, createPlanSpendLimitResponseFromJSON, createPlanTierRequestBodyToJSON, createPlanToRequestBodyToJSON, createPlanUsageAlertRequestBodyToJSON, createPlanUsageAlertResponseFromJSON, createPlanUsageLimitRequestToJSON, createPlanUsageLimitResponseFromJSON, createPlanVariantDetailsAutoTopupFromJSON, createPlanVariantDetailsBillingControlsFromJSON, createPlanVariantDetailsFilterFromJSON, createPlanVariantDetailsFromJSON, createPlanVariantDetailsOverageAllowedFromJSON, createPlanVariantDetailsPriceFromJSON, createPlanVariantDetailsPurchaseLimitFromJSON, createPlanVariantDetailsResetFromJSON, createPlanVariantDetailsRolloverFromJSON, createPlanVariantDetailsSpendLimitFromJSON, createPlanVariantDetailsTierFromJSON, createPlanVariantDetailsToFromJSON, createPlanVariantDetailsUsageAlertFromJSON, createPlanVariantDetailsUsageLimitFromJSON, createReferralCodeParamsToJSON, createReferralCodeResponseFromJSON, createScheduleAddItemPlanItem2ToJSON, createScheduleAddItemPrice2ToJSON, createScheduleAddItemProration2ToJSON, createScheduleAddItemReset2ToJSON, createScheduleAddItemRollover2ToJSON, createScheduleAddItemTier2ToJSON, createScheduleAttachDiscountToJSON, createScheduleAutoTopup2ToJSON, createScheduleBasePrice2ToJSON, createScheduleBillingControls2ToJSON, createScheduleCustomize2ToJSON, createScheduleFeatureQuantity2ToJSON, createScheduleFilter2ToJSON, createScheduleIntervalUnion2ToJSON, createScheduleInvoiceFromJSON, createScheduleInvoiceModeToJSON, createScheduleItemPlanItem2ToJSON, createScheduleItemPrice2ToJSON, createScheduleItemProration2ToJSON, createScheduleItemReset2ToJSON, createScheduleItemRollover2ToJSON, createScheduleItemTier2ToJSON, createScheduleOverageAllowed2ToJSON, createScheduleParamsToJSON, createSchedulePlan2ToJSON, createSchedulePlanItemFilter2ToJSON, createSchedulePurchaseLimit2ToJSON, createScheduleRequiredActionFromJSON, createScheduleResponseFromJSON, createScheduleSpendLimit2ToJSON, createScheduleUsageAlert2ToJSON, createScheduleUsageLimit2ToJSON, customerAutoTopupFromJSON, customerBillingControlsFromJSON, customerConfigFromJSON, customerCreditSchemaFromJSON, customerDataAutoTopupToJSON, customerDataBillingControlsToJSON, customerDataConfigToJSON, customerDataFilterToJSON, customerDataOverageAllowedToJSON, customerDataPurchaseLimitToJSON, customerDataSpendLimitToJSON, customerDataToJSON, customerDataUsageAlertToJSON, customerDataUsageLimitToJSON, customerDisplayFromJSON, customerEligibilityFromJSON, customerFeatureFromJSON, customerFilterFromJSON, customerFromJSON, customerModelMarkupsFromJSON, customerOverageAllowedFromJSON, customerProviderMarkupsFromJSON, customerPurchaseLimit1FromJSON, customerPurchaseLimit2FromJSON, customerPurchaseLimitUnionFromJSON, customerSpendLimitFromJSON, customerUsageAlertFromJSON, customerUsageLimitFromJSON, customizeFromJSON, deductionsFromJSON, deleteBalanceParamsToJSON, deleteBalanceResponseFromJSON, deleteCustomerParamsToJSON, deleteCustomerResponseFromJSON, deleteEntityParamsToJSON, deleteEntityResponseFromJSON, deleteFeatureParamsToJSON, deleteFeatureResponseFromJSON, deletePlanParamsToJSON, deletePlanResponseFromJSON, dfuFlashParamsToJSON, dfuFlashResultFromJSON, discountFromJSON, entitlementsGrantedFromJSON, entityFromJSON, eventsAggregateParamsToJSON, eventsListParamsToJSON, expiryFromJSON, featureGrantFromJSON, featureGrantPromoCodeFromJSON, files, finalizeBalanceParamsToJSON, finalizeLockResponseBody1FromJSON, finalizeLockResponseBody2FromJSON, finalizeLockResponseFromJSON, flag1FromJSON, flag2FromJSON, flagDisplay1FromJSON, flagDisplay2FromJSON, flagsFromJSON, flashedFromJSON, formatZodError, freeTrialFromJSON, freeTrialParamsFromJSON, freeTrialRequestToJSON, getCustomerAutoTopupFromJSON, getCustomerBillingControlsFromJSON, getCustomerConfigFromJSON, getCustomerCreditSchemaFromJSON, getCustomerCustomerFromJSON, getCustomerDiscountFromJSON, getCustomerDisplayFromJSON, getCustomerEntityFromJSON, getCustomerFeatureFromJSON, getCustomerFilterFromJSON, getCustomerFlagsFromJSON, getCustomerInvoiceFromJSON, getCustomerModelMarkupsFromJSON, getCustomerOverageAllowedFromJSON, getCustomerParamsToJSON, getCustomerProcessorsFromJSON, getCustomerProviderMarkupsFromJSON, getCustomerPurchaseFromJSON, getCustomerPurchaseLimit1FromJSON, getCustomerPurchaseLimit2FromJSON, getCustomerPurchaseLimitUnionFromJSON, getCustomerReferralFromJSON, getCustomerResponseFromJSON, getCustomerRevenuecatFromJSON, getCustomerRewardsFromJSON, getCustomerSpendLimitFromJSON, getCustomerStripeFromJSON, getCustomerSubscriptionFromJSON, getCustomerTrialsUsedFromJSON, getCustomerUsageAlertFromJSON, getCustomerUsageLimitFromJSON, getCustomerVercelFromJSON, getEntityBillingControlsFromJSON, getEntityCreditSchemaFromJSON, getEntityDisplayFromJSON, getEntityFeatureFromJSON, getEntityFilterFromJSON, getEntityFlagsFromJSON, getEntityInvoiceFromJSON, getEntityModelMarkupsFromJSON, getEntityOverageAllowedFromJSON, getEntityParamsToJSON, getEntityProviderMarkupsFromJSON, getEntityPurchaseFromJSON, getEntityResponseFromJSON, getEntitySpendLimitFromJSON, getEntitySubscriptionFromJSON, getEntityUsageAlertFromJSON, getEntityUsageLimitFromJSON, getFeatureCreditSchemaFromJSON, getFeatureDisplayFromJSON, getFeatureModelMarkupsFromJSON, getFeatureParamsToJSON, getFeatureProviderMarkupsFromJSON, getFeatureResponseFromJSON, getOrCreateCustomerAutoTopupToJSON, getOrCreateCustomerBillingControlsToJSON, getOrCreateCustomerConfigToJSON, getOrCreateCustomerFilterToJSON, getOrCreateCustomerOverageAllowedToJSON, getOrCreateCustomerParamsToJSON, getOrCreateCustomerPropertiesToJSON, getOrCreateCustomerPurchaseLimitToJSON, getOrCreateCustomerSpendLimitToJSON, getOrCreateCustomerUsageAlertToJSON, getOrCreateCustomerUsageLimitToJSON, getPlanAutoTopupFromJSON, getPlanBasePriceFromJSON, getPlanBillingControlsFromJSON, getPlanConfigFromJSON, getPlanCreditSchemaFromJSON, getPlanCustomerEligibilityFromJSON, getPlanCustomizeFromJSON, getPlanFeatureDisplayFromJSON, getPlanFeatureFromJSON, getPlanFilterFromJSON, getPlanFreeTrialFromJSON, getPlanFreeTrialParamsFromJSON, getPlanIntervalUnionFromJSON, getPlanItemDisplayFromJSON, getPlanItemFromJSON, getPlanItemPriceFromJSON, getPlanItemResetFromJSON, getPlanItemRolloverFromJSON, getPlanItemTierFromJSON, getPlanItemToFromJSON, getPlanOverageAllowedFromJSON, getPlanParamsToJSON, getPlanPlanItemFilterFromJSON, getPlanPlanItemFromJSON, getPlanPriceDisplayFromJSON, getPlanPriceFromJSON, getPlanProrationFromJSON, getPlanPurchaseLimitFromJSON, getPlanResponseFromJSON, getPlanSpendLimitFromJSON, getPlanUsageAlertFromJSON, getPlanUsageLimitFromJSON, getPlanVariantDetailsAutoTopupFromJSON, getPlanVariantDetailsBillingControlsFromJSON, getPlanVariantDetailsFilterFromJSON, getPlanVariantDetailsFromJSON, getPlanVariantDetailsOverageAllowedFromJSON, getPlanVariantDetailsPriceFromJSON, getPlanVariantDetailsPurchaseLimitFromJSON, getPlanVariantDetailsResetFromJSON, getPlanVariantDetailsRolloverFromJSON, getPlanVariantDetailsSpendLimitFromJSON, getPlanVariantDetailsTierFromJSON, getPlanVariantDetailsToFromJSON, getPlanVariantDetailsUsageAlertFromJSON, getPlanVariantDetailsUsageLimitFromJSON, getRevenueCatKeysAppFromJSON, getRevenueCatKeysParamsToJSON, getRevenueCatKeysResponseFromJSON, grantFromJSON, importBalanceToJSON, importCustomerDataToJSON, importFeatureQuantityToJSON, importFilterToJSON, importPlanToJSON, importProcessorToJSON, includedUsage1FromJSON, includedUsage2FromJSON, invoiceFromJSON, itemFromJSON, linkRevenueCatParamsToJSON, linkRevenueCatResponseFromJSON, linkToJSON, listCustomersAutoTopupFromJSON, listCustomersBillingControlsFromJSON, listCustomersConfigFromJSON, listCustomersCreditSchemaFromJSON, listCustomersDisplayFromJSON, listCustomersFeatureFromJSON, listCustomersFilterFromJSON, listCustomersFlagsFromJSON, listCustomersListFromJSON, listCustomersModelMarkupsFromJSON, listCustomersOverageAllowedFromJSON, listCustomersParamsToJSON, listCustomersPlanToJSON, listCustomersProcessorsFromJSON, listCustomersProviderMarkupsFromJSON, listCustomersPurchaseFromJSON, listCustomersPurchaseLimit1FromJSON, listCustomersPurchaseLimit2FromJSON, listCustomersPurchaseLimitUnionFromJSON, listCustomersResponseFromJSON, listCustomersRevenuecatFromJSON, listCustomersSpendLimitFromJSON, listCustomersStripeFromJSON, listCustomersSubscriptionFromJSON, listCustomersUsageAlertFromJSON, listCustomersUsageLimitFromJSON, listCustomersVercelFromJSON, listEntitiesBillingControlsFromJSON, listEntitiesCreditSchemaFromJSON, listEntitiesDisplayFromJSON, listEntitiesFeatureFromJSON, listEntitiesFilterFromJSON, listEntitiesFlagsFromJSON, listEntitiesInvoiceFromJSON, listEntitiesListFromJSON, listEntitiesModelMarkupsFromJSON, listEntitiesOverageAllowedFromJSON, listEntitiesParamsToJSON, listEntitiesPlanToJSON, listEntitiesProviderMarkupsFromJSON, listEntitiesPurchaseFromJSON, listEntitiesResponseFromJSON, listEntitiesSpendLimitFromJSON, listEntitiesSubscriptionFromJSON, listEntitiesUsageAlertFromJSON, listEntitiesUsageLimitFromJSON, listEventsCustomRangeToJSON, listEventsFeatureIdToJSON, listEventsIntervalUnionFromJSON, listEventsListFromJSON, listEventsResetFromJSON, listEventsResponseFromJSON, listFeaturesCreditSchemaFromJSON, listFeaturesDisplayFromJSON, listFeaturesListFromJSON, listFeaturesModelMarkupsFromJSON, listFeaturesProviderMarkupsFromJSON, listFeaturesRequestToJSON, listFeaturesResponseFromJSON, listPlansAutoTopupFromJSON, listPlansBasePriceFromJSON, listPlansBillingControlsFromJSON, listPlansConfigFromJSON, listPlansCreditSchemaFromJSON, listPlansCustomerEligibilityFromJSON, listPlansCustomizeFromJSON, listPlansFeatureDisplayFromJSON, listPlansFeatureFromJSON, listPlansFilterFromJSON, listPlansFreeTrialFromJSON, listPlansFreeTrialParamsFromJSON, listPlansIntervalUnionFromJSON, listPlansItemDisplayFromJSON, listPlansItemFromJSON, listPlansItemPriceFromJSON, listPlansItemResetFromJSON, listPlansItemRolloverFromJSON, listPlansItemTierFromJSON, listPlansListFromJSON, listPlansOverageAllowedFromJSON, listPlansParamsToJSON, listPlansPlanItemFilterFromJSON, listPlansPlanItemFromJSON, listPlansPriceDisplayFromJSON, listPlansPriceFromJSON, listPlansProrationFromJSON, listPlansPurchaseLimitFromJSON, listPlansResponseFromJSON, listPlansSpendLimitFromJSON, listPlansToFromJSON, listPlansUsageAlertFromJSON, listPlansUsageLimitFromJSON, listPlansVariantDetailsAutoTopupFromJSON, listPlansVariantDetailsBillingControlsFromJSON, listPlansVariantDetailsFilterFromJSON, listPlansVariantDetailsFromJSON, listPlansVariantDetailsOverageAllowedFromJSON, listPlansVariantDetailsPriceFromJSON, listPlansVariantDetailsPurchaseLimitFromJSON, listPlansVariantDetailsResetFromJSON, listPlansVariantDetailsRolloverFromJSON, listPlansVariantDetailsSpendLimitFromJSON, listPlansVariantDetailsTierFromJSON, listPlansVariantDetailsUsageAlertFromJSON, listPlansVariantDetailsUsageLimitFromJSON, listRewardsDurationFromJSON, listRewardsResponseFromJSON, migrationToJSON, mintKeyParamsToJSON, mintKeyResponseFromJSON, multiAttachAttachDiscountToJSON, multiAttachBasePriceToJSON, multiAttachBillingControlsToJSON, multiAttachCustomizeToJSON, multiAttachEntityDataToJSON, multiAttachFeatureQuantityToJSON, multiAttachFilterToJSON, multiAttachFreeTrialParamsToJSON, multiAttachInvoiceFromJSON, multiAttachInvoiceModeToJSON, multiAttachOverageAllowedToJSON, multiAttachParamsToJSON, multiAttachPlanItemToJSON, multiAttachPlanToJSON, multiAttachPriceToJSON, multiAttachPropertiesToJSON, multiAttachProrationToJSON, multiAttachRequiredActionFromJSON, multiAttachResetToJSON, multiAttachResponseFromJSON, multiAttachRolloverToJSON, multiAttachSpendLimitToJSON, multiAttachTierToJSON, multiAttachToToJSON, multiAttachUsageAlertToJSON, multiAttachUsageLimitToJSON, multiUpdateInvoiceFromJSON, multiUpdateParamsToJSON, multiUpdatePreviewResponseFromJSON, multiUpdateRequiredActionFromJSON, multiUpdateResponseFromJSON, multiUpdateUpdateToJSON, openCustomerPortalParamsToJSON, openCustomerPortalResponseFromJSON, phaseResponseFromJSON, phaseStartToJSON, phaseStartUnionToJSON, planAutoTopupFromJSON, planBillingControlsFromJSON, planConfigFromJSON, planCreditSchemaFromJSON, planFeatureDisplayFromJSON, planFeatureFromJSON, planFilterFromJSON, planFromJSON, planIntervalUnionFromJSON, planItemDisplayFromJSON, planItemFilterFromJSON, planItemFromJSON, planItemPriceFromJSON, planItemResetFromJSON, planItemRolloverFromJSON, planItemTierFromJSON, planItemToFromJSON, planOverageAllowedFromJSON, planPriceDisplayFromJSON, planPriceFromJSON, planPurchaseLimitFromJSON, planSpendLimitFromJSON, planUsageAlertFromJSON, planUsageLimitFromJSON, planVariantDetailsAutoTopupFromJSON, planVariantDetailsBillingControlsFromJSON, planVariantDetailsFilterFromJSON, planVariantDetailsOverageAllowedFromJSON, planVariantDetailsPriceFromJSON, planVariantDetailsPurchaseLimitFromJSON, planVariantDetailsResetFromJSON, planVariantDetailsRolloverFromJSON, planVariantDetailsSpendLimitFromJSON, planVariantDetailsTierFromJSON, planVariantDetailsToFromJSON, planVariantDetailsUsageAlertFromJSON, planVariantDetailsUsageLimitFromJSON, preview1FromJSON, preview2FromJSON, previewAttachAddItemPlanItemToJSON, previewAttachAddItemPriceToJSON, previewAttachAddItemProrationToJSON, previewAttachAddItemResetToJSON, previewAttachAddItemRolloverToJSON, previewAttachAddItemTierToJSON, previewAttachAddItemToToJSON, previewAttachAttachDiscountToJSON, previewAttachAutoTopupToJSON, previewAttachBasePriceToJSON, previewAttachBillingControlsToJSON, previewAttachCarryOverBalancesToJSON, previewAttachCarryOverUsagesToJSON, previewAttachCustomLineItemToJSON, previewAttachCustomizeToJSON, previewAttachDiscountFromJSON, previewAttachFeatureQuantityRequestToJSON, previewAttachFilterToJSON, previewAttachFreeTrialParamsToJSON, previewAttachIncomingFeatureQuantityFromJSON, previewAttachIncomingFromJSON, previewAttachIntervalUnionToJSON, previewAttachInvoiceCreditsFromJSON, previewAttachInvoiceModeToJSON, previewAttachItemPlanItemToJSON, previewAttachItemPriceToJSON, previewAttachItemProrationToJSON, previewAttachItemResetToJSON, previewAttachItemRolloverToJSON, previewAttachItemTierToJSON, previewAttachItemToToJSON, previewAttachLineItemFromJSON, previewAttachLineItemPeriodFromJSON, previewAttachNextCycleDiscountFromJSON, previewAttachNextCycleFromJSON, previewAttachNextCycleLineItemFromJSON, previewAttachNextCycleLineItemPeriodFromJSON, previewAttachOutgoingFeatureQuantityFromJSON, previewAttachOutgoingFromJSON, previewAttachOverageAllowedToJSON, previewAttachParamsToJSON, previewAttachPlanItemFilterToJSON, previewAttachPropertiesToJSON, previewAttachPurchaseLimitToJSON, previewAttachResponseFromJSON, previewAttachSpendLimitToJSON, previewAttachTaxFromJSON, previewAttachUsageAlertToJSON, previewAttachUsageLimitToJSON, previewAttachUsageLineItemFromJSON, previewAttachUsageLineItemPeriodFromJSON, previewMultiAttachAttachDiscountToJSON, previewMultiAttachBasePriceToJSON, previewMultiAttachBillingControlsToJSON, previewMultiAttachCustomizeToJSON, previewMultiAttachDiscountFromJSON, previewMultiAttachEntityDataToJSON, previewMultiAttachFilterToJSON, previewMultiAttachFreeTrialParamsToJSON, previewMultiAttachIncomingFeatureQuantityFromJSON, previewMultiAttachIncomingFromJSON, previewMultiAttachInvoiceCreditsFromJSON, previewMultiAttachInvoiceModeToJSON, previewMultiAttachLineItemFromJSON, previewMultiAttachLineItemPeriodFromJSON, previewMultiAttachNextCycleDiscountFromJSON, previewMultiAttachNextCycleFromJSON, previewMultiAttachNextCycleLineItemFromJSON, previewMultiAttachNextCycleLineItemPeriodFromJSON, previewMultiAttachOutgoingFeatureQuantityFromJSON, previewMultiAttachOutgoingFromJSON, previewMultiAttachOverageAllowedToJSON, previewMultiAttachParamsToJSON, previewMultiAttachPlanFeatureQuantityToJSON, previewMultiAttachPlanItemToJSON, previewMultiAttachPlanToJSON, previewMultiAttachPriceToJSON, previewMultiAttachPropertiesToJSON, previewMultiAttachProrationToJSON, previewMultiAttachResetToJSON, previewMultiAttachResponseFromJSON, previewMultiAttachRolloverToJSON, previewMultiAttachSpendLimitToJSON, previewMultiAttachTaxFromJSON, previewMultiAttachTierToJSON, previewMultiAttachToToJSON, previewMultiAttachUsageAlertToJSON, previewMultiAttachUsageLimitToJSON, previewMultiAttachUsageLineItemFromJSON, previewMultiAttachUsageLineItemPeriodFromJSON, previewMultiUpdateDiscountFromJSON, previewMultiUpdateIncomingFeatureQuantityFromJSON, previewMultiUpdateIncomingFromJSON, previewMultiUpdateLineItemFromJSON, previewMultiUpdateLineItemPeriodFromJSON, previewMultiUpdateNextCycleDiscountFromJSON, previewMultiUpdateNextCycleFromJSON, previewMultiUpdateNextCycleLineItemFromJSON, previewMultiUpdateNextCycleLineItemPeriodFromJSON, previewMultiUpdateOutgoingFeatureQuantityFromJSON, previewMultiUpdateOutgoingFromJSON, previewMultiUpdateParamsToJSON, previewMultiUpdateSubscriptionFromJSON, previewMultiUpdateUpdateToJSON, previewMultiUpdateUsageLineItemFromJSON, previewMultiUpdateUsageLineItemPeriodFromJSON, previewUpdateAddItemPlanItemToJSON, previewUpdateAddItemPriceToJSON, previewUpdateAddItemProrationToJSON, previewUpdateAddItemResetToJSON, previewUpdateAddItemRolloverToJSON, previewUpdateAddItemTierToJSON, previewUpdateAddItemToToJSON, previewUpdateAttachDiscountToJSON, previewUpdateAutoTopupToJSON, previewUpdateBasePriceToJSON, previewUpdateBillingControlsToJSON, previewUpdateCarryOverUsagesToJSON, previewUpdateCustomizeToJSON, previewUpdateDiscountFromJSON, previewUpdateFeatureQuantityRequestToJSON, previewUpdateFilterToJSON, previewUpdateFreeTrialParamsToJSON, previewUpdateIncomingFeatureQuantityFromJSON, previewUpdateIncomingFromJSON, previewUpdateIntervalUnionToJSON, previewUpdateInvoiceCreditsFromJSON, previewUpdateInvoiceModeToJSON, previewUpdateItemPlanItemToJSON, previewUpdateItemPriceToJSON, previewUpdateItemProrationToJSON, previewUpdateItemResetToJSON, previewUpdateItemRolloverToJSON, previewUpdateItemTierToJSON, previewUpdateItemToToJSON, previewUpdateLineItemFromJSON, previewUpdateLineItemPeriodFromJSON, previewUpdateNextCycleDiscountFromJSON, previewUpdateNextCycleFromJSON, previewUpdateNextCycleLineItemFromJSON, previewUpdateNextCycleLineItemPeriodFromJSON, previewUpdateOutgoingFeatureQuantityFromJSON, previewUpdateOutgoingFromJSON, previewUpdateOverageAllowedToJSON, previewUpdateParamsToJSON, previewUpdatePlanItemFilterToJSON, previewUpdatePropertiesToJSON, previewUpdatePurchaseLimitToJSON, previewUpdateRecalculateBalancesToJSON, previewUpdateResponseFromJSON, previewUpdateSpendLimitToJSON, previewUpdateTaxFromJSON, previewUpdateUsageAlertToJSON, previewUpdateUsageLimitToJSON, previewUpdateUsageLineItemFromJSON, previewUpdateUsageLineItemPeriodFromJSON, processorsFromJSON, productDisplay1FromJSON, productDisplay2FromJSON, propertiesToJSON, prorationFromJSON, purchaseFromJSON, redeemReferralCodeParamsToJSON, redeemReferralCodeResponseFromJSON, redeemRewardCodeParamsToJSON, redeemRewardCodeResponseFromJSON, referralCustomerFromJSON, referralFromJSON, refreshKeyParamsToJSON, refreshKeyResponseFromJSON, requestBodyToJSON, resultFromJSON, revenuecatFromJSON, revokeKeyParamsToJSON, revokeKeyResponseFromJSON, rewardsFromJSON, rewardsListParamsToJSON, securityToJSON, serverURLFromOptions, setupPaymentAddItemPlanItemToJSON, setupPaymentAddItemPriceToJSON, setupPaymentAddItemProrationToJSON, setupPaymentAddItemResetToJSON, setupPaymentAddItemRolloverToJSON, setupPaymentAddItemTierToJSON, setupPaymentAddItemToToJSON, setupPaymentAttachDiscountToJSON, setupPaymentAutoTopupToJSON, setupPaymentBasePriceToJSON, setupPaymentBillingControlsToJSON, setupPaymentCarryOverBalancesToJSON, setupPaymentCarryOverUsagesToJSON, setupPaymentCustomLineItemToJSON, setupPaymentCustomizeToJSON, setupPaymentFeatureQuantityToJSON, setupPaymentFilterToJSON, setupPaymentFreeTrialParamsToJSON, setupPaymentIntervalUnionToJSON, setupPaymentItemPlanItemToJSON, setupPaymentItemPriceToJSON, setupPaymentItemProrationToJSON, setupPaymentItemResetToJSON, setupPaymentItemRolloverToJSON, setupPaymentItemTierToJSON, setupPaymentItemToToJSON, setupPaymentOverageAllowedToJSON, setupPaymentParamsToJSON, setupPaymentPlanItemFilterToJSON, setupPaymentPropertiesToJSON, setupPaymentPurchaseLimitToJSON, setupPaymentResponseFromJSON, setupPaymentSpendLimitToJSON, setupPaymentUsageAlertToJSON, setupPaymentUsageLimitToJSON, startingAfter2ToJSON, startsAt2ToJSON, stripeFromJSON, subscriptionFromJSON, syncRevenueCatAppFromJSON, syncRevenueCatParamsToJSON, syncRevenueCatResponseFromJSON, totalFromJSON, trackDeduction1FromJSON, trackDeduction2FromJSON, trackIntervalUnion1FromJSON, trackIntervalUnion2FromJSON, trackLockToJSON, trackParamsToJSON, trackReset1FromJSON, trackReset2FromJSON, trackResponseBody1FromJSON, trackResponseBody2FromJSON, trackResponseFromJSON, trackTokensDeduction1FromJSON, trackTokensDeduction2FromJSON, trackTokensIntervalUnion1FromJSON, trackTokensIntervalUnion2FromJSON, trackTokensParamsToJSON, trackTokensReset1FromJSON, trackTokensReset2FromJSON, trackTokensResponseBody1FromJSON, trackTokensResponseBody2FromJSON, trackTokensResponseFromJSON, trialsUsedFromJSON, index as types, updateBalanceParamsToJSON, updateBalanceResponseFromJSON, updateCustomerAutoTopupRequestToJSON, updateCustomerAutoTopupResponseFromJSON, updateCustomerBillingControlsRequestToJSON, updateCustomerBillingControlsResponseFromJSON, updateCustomerConfigRequestToJSON, updateCustomerConfigResponseFromJSON, updateCustomerCreditSchemaFromJSON, updateCustomerDisplayFromJSON, updateCustomerFeatureFromJSON, updateCustomerFilterRequestToJSON, updateCustomerFilterResponseFromJSON, updateCustomerFlagsFromJSON, updateCustomerModelMarkupsFromJSON, updateCustomerOverageAllowedRequestToJSON, updateCustomerOverageAllowedResponseFromJSON, updateCustomerParamsToJSON, updateCustomerProcessorsFromJSON, updateCustomerPropertiesToJSON, updateCustomerProviderMarkupsFromJSON, updateCustomerPurchaseFromJSON, updateCustomerPurchaseLimitRequestToJSON, updateCustomerPurchaseLimitResponse1FromJSON, updateCustomerPurchaseLimitResponse2FromJSON, updateCustomerPurchaseLimitUnionFromJSON, updateCustomerResponseFromJSON, updateCustomerRevenuecatFromJSON, updateCustomerSpendLimitRequestToJSON, updateCustomerSpendLimitResponseFromJSON, updateCustomerStripeFromJSON, updateCustomerSubscriptionFromJSON, updateCustomerUsageAlertRequestBodyToJSON, updateCustomerUsageAlertResponseFromJSON, updateCustomerUsageLimitRequestToJSON, updateCustomerUsageLimitResponseFromJSON, updateCustomerVercelFromJSON, updateEntityBillingControlsRequestToJSON, updateEntityBillingControlsResponseFromJSON, updateEntityCreditSchemaFromJSON, updateEntityDisplayFromJSON, updateEntityFeatureFromJSON, updateEntityFilterRequestToJSON, updateEntityFilterResponseFromJSON, updateEntityFlagsFromJSON, updateEntityInvoiceFromJSON, updateEntityModelMarkupsFromJSON, updateEntityOverageAllowedRequestToJSON, updateEntityOverageAllowedResponseFromJSON, updateEntityParamsToJSON, updateEntityPropertiesToJSON, updateEntityProviderMarkupsFromJSON, updateEntityPurchaseFromJSON, updateEntityResponseFromJSON, updateEntitySpendLimitRequestToJSON, updateEntitySpendLimitResponseFromJSON, updateEntitySubscriptionFromJSON, updateEntityUsageAlertRequestBodyToJSON, updateEntityUsageAlertResponseFromJSON, updateEntityUsageLimitRequestToJSON, updateEntityUsageLimitResponseFromJSON, updateFeatureCreditSchemaRequestBodyToJSON, updateFeatureCreditSchemaResponseFromJSON, updateFeatureDisplayRequestBodyToJSON, updateFeatureDisplayResponseFromJSON, updateFeatureModelMarkupsRequestToJSON, updateFeatureModelMarkupsResponseFromJSON, updateFeatureParamsToJSON, updateFeatureProviderMarkupsRequestToJSON, updateFeatureProviderMarkupsResponseFromJSON, updateFeatureResponseFromJSON, updatePlanAutoTopupRequestToJSON, updatePlanAutoTopupResponseFromJSON, updatePlanBasePriceRequestToJSON, updatePlanBasePriceResponseFromJSON, updatePlanBillingControlsRequestToJSON, updatePlanBillingControlsResponseFromJSON, updatePlanConfigRequestToJSON, updatePlanConfigResponseFromJSON, updatePlanCreditSchemaFromJSON, updatePlanCustomerEligibilityFromJSON, updatePlanCustomizeResponseFromJSON, updatePlanFeatureDisplayFromJSON, updatePlanFeatureFromJSON, updatePlanFilterRequestToJSON, updatePlanFilterResponseFromJSON, updatePlanFreeTrialFromJSON, updatePlanFreeTrialParamsRequestToJSON, updatePlanFreeTrialParamsResponseFromJSON, updatePlanItemDisplayFromJSON, updatePlanItemFromJSON, updatePlanItemPlanItemToJSON, updatePlanItemPriceRequestBodyToJSON, updatePlanItemPriceResponseFromJSON, updatePlanItemProrationToJSON, updatePlanItemResetRequestBodyToJSON, updatePlanItemResetResponseFromJSON, updatePlanItemRolloverRequestBodyToJSON, updatePlanItemRolloverResponseFromJSON, updatePlanItemTierRequestBodyToJSON, updatePlanItemTierResponseFromJSON, updatePlanItemToRequestBodyToJSON, updatePlanItemToResponseFromJSON, updatePlanOverageAllowedRequestToJSON, updatePlanOverageAllowedResponseFromJSON, updatePlanParamsToJSON, updatePlanPlanItemFilterResponseFromJSON, updatePlanPlanItemResponseFromJSON, updatePlanPriceDisplayFromJSON, updatePlanPriceResponseFromJSON, updatePlanPropertiesToJSON, updatePlanProrationResponseFromJSON, updatePlanPurchaseLimitRequestToJSON, updatePlanPurchaseLimitResponseFromJSON, updatePlanResponseFromJSON, updatePlanSpendLimitRequestToJSON, updatePlanSpendLimitResponseFromJSON, updatePlanUsageAlertRequestBodyToJSON, updatePlanUsageAlertResponseFromJSON, updatePlanUsageLimitRequestToJSON, updatePlanUsageLimitResponseFromJSON, updatePlanVariantDetailsAutoTopupFromJSON, updatePlanVariantDetailsBillingControlsFromJSON, updatePlanVariantDetailsFilterFromJSON, updatePlanVariantDetailsFromJSON, updatePlanVariantDetailsIntervalUnionFromJSON, updatePlanVariantDetailsOverageAllowedFromJSON, updatePlanVariantDetailsPriceFromJSON, updatePlanVariantDetailsPurchaseLimitFromJSON, updatePlanVariantDetailsResetFromJSON, updatePlanVariantDetailsRolloverFromJSON, updatePlanVariantDetailsSpendLimitFromJSON, updatePlanVariantDetailsTierFromJSON, updatePlanVariantDetailsToFromJSON, updatePlanVariantDetailsUsageAlertFromJSON, updatePlanVariantDetailsUsageLimitFromJSON, updateSubscriptionParamsToJSON, variantAutoTopupToJSON, variantBasePriceToJSON, variantBillingControlsToJSON, variantCustomizeToJSON, variantDetailsFromJSON, variantFilterToJSON, variantFreeTrialParamsToJSON, variantIntervalUnionToJSON, variantMigrationToJSON, variantOverageAllowedToJSON, variantPlanItemFilterToJSON, variantPlanItemToJSON, variantPriceToJSON, variantPropertiesToJSON, variantProrationToJSON, variantPurchaseLimitToJSON, variantResetToJSON, variantRolloverToJSON, variantSpendLimitToJSON, variantTierToJSON, variantToJSON, variantToToJSON, variantUsageAlertToJSON, variantUsageLimitToJSON, vercelFromJSON };
|