stigg-api-client-v2 2.323.4__py3-none-any.whl → 2.325.3__py3-none-any.whl
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.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/__init__.py +6 -0
- stigg/generated/enums.py +2 -0
- stigg/generated/fragments.py +423 -423
- stigg/generated/input_types.py +19 -0
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/RECORD +8 -8
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.323.4.dist-info → stigg_api_client_v2-2.325.3.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -79,33 +79,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
79
|
currency: Currency
|
|
80
80
|
|
|
81
81
|
|
|
82
|
-
class
|
|
82
|
+
class OveragePriceFragment(BaseModel):
|
|
83
83
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
84
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
85
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
86
85
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
88
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
89
86
|
billing_country_code: Optional[str] = Field(
|
|
90
87
|
alias="billingCountryCode", default=None
|
|
91
88
|
)
|
|
92
|
-
price: Optional["
|
|
89
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
90
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
-
tiers: Optional[List["
|
|
95
|
-
feature: Optional["
|
|
96
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
91
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
92
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
97
93
|
|
|
98
94
|
|
|
99
|
-
class
|
|
95
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
100
96
|
amount: float
|
|
101
97
|
currency: Currency
|
|
102
98
|
|
|
103
99
|
|
|
104
|
-
class
|
|
100
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
105
101
|
pass
|
|
106
102
|
|
|
107
103
|
|
|
108
|
-
class
|
|
104
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
109
105
|
ref_id: str = Field(alias="refId")
|
|
110
106
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
111
107
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -115,29 +111,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
115
111
|
description: Optional[str] = Field(default=None)
|
|
116
112
|
|
|
117
113
|
|
|
118
|
-
class
|
|
114
|
+
class PriceFragment(BaseModel):
|
|
119
115
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
120
116
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
117
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
121
118
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
119
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
120
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
122
121
|
billing_country_code: Optional[str] = Field(
|
|
123
122
|
alias="billingCountryCode", default=None
|
|
124
123
|
)
|
|
125
|
-
price: Optional["
|
|
124
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
126
125
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
127
|
-
tiers: Optional[List["
|
|
128
|
-
feature: Optional["
|
|
126
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
127
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
128
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
129
129
|
|
|
130
130
|
|
|
131
|
-
class
|
|
131
|
+
class PriceFragmentPrice(BaseModel):
|
|
132
132
|
amount: float
|
|
133
133
|
currency: Currency
|
|
134
134
|
|
|
135
135
|
|
|
136
|
-
class
|
|
136
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
137
137
|
pass
|
|
138
138
|
|
|
139
139
|
|
|
140
|
-
class
|
|
140
|
+
class PriceFragmentFeature(BaseModel):
|
|
141
141
|
ref_id: str = Field(alias="refId")
|
|
142
142
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
143
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -215,45 +215,256 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
215
215
|
pass
|
|
216
216
|
|
|
217
217
|
|
|
218
|
-
class
|
|
218
|
+
class FeatureFragment(BaseModel):
|
|
219
|
+
typename__: str = Field(alias="__typename")
|
|
220
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
221
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
222
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
223
|
+
feature_units_plural: Optional[str] = Field(
|
|
224
|
+
alias="featureUnitsPlural", default=None
|
|
225
|
+
)
|
|
226
|
+
description: Optional[str] = Field(default=None)
|
|
227
|
+
display_name: str = Field(alias="displayName")
|
|
228
|
+
ref_id: str = Field(alias="refId")
|
|
229
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
230
|
+
alias="unitTransformation", default=None
|
|
231
|
+
)
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
235
|
+
divide: float
|
|
236
|
+
round: UnitTransformationRound
|
|
237
|
+
|
|
238
|
+
|
|
239
|
+
class EntitlementFragment(BaseModel):
|
|
240
|
+
typename__: str = Field(alias="__typename")
|
|
241
|
+
is_granted: bool = Field(alias="isGranted")
|
|
242
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
243
|
+
alias="accessDeniedReason", default=None
|
|
244
|
+
)
|
|
245
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
246
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
247
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
248
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
249
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
250
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
251
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
252
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
253
|
+
alias="entitlementUpdatedAt", default=None
|
|
254
|
+
)
|
|
255
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
256
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
257
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
258
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
259
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
260
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
261
|
+
alias="resetPeriod", default=None
|
|
262
|
+
)
|
|
263
|
+
reset_period_configuration: Optional[
|
|
264
|
+
Annotated[
|
|
265
|
+
Union[
|
|
266
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
267
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
268
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
269
|
+
],
|
|
270
|
+
Field(discriminator="typename__"),
|
|
271
|
+
]
|
|
272
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
273
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
274
|
+
|
|
275
|
+
|
|
276
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
277
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
278
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
279
|
+
alias="monthlyAccordingTo", default=None
|
|
280
|
+
)
|
|
281
|
+
|
|
282
|
+
|
|
283
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
284
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
285
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
286
|
+
alias="weeklyAccordingTo", default=None
|
|
287
|
+
)
|
|
288
|
+
|
|
289
|
+
|
|
290
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
291
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
292
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
293
|
+
alias="yearlyAccordingTo", default=None
|
|
294
|
+
)
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
298
|
+
pass
|
|
299
|
+
|
|
300
|
+
|
|
301
|
+
class ProductFragment(BaseModel):
|
|
302
|
+
ref_id: str = Field(alias="refId")
|
|
303
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
304
|
+
description: Optional[str] = Field(default=None)
|
|
305
|
+
additional_meta_data: Optional[Any] = Field(
|
|
306
|
+
alias="additionalMetaData", default=None
|
|
307
|
+
)
|
|
308
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
309
|
+
|
|
310
|
+
|
|
311
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
312
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
313
|
+
alias="downgradePlan", default=None
|
|
314
|
+
)
|
|
315
|
+
|
|
316
|
+
|
|
317
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
318
|
+
ref_id: str = Field(alias="refId")
|
|
319
|
+
display_name: str = Field(alias="displayName")
|
|
320
|
+
|
|
321
|
+
|
|
322
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
323
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
324
|
+
display_name: str = Field(alias="displayName")
|
|
325
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
326
|
+
default=None
|
|
327
|
+
)
|
|
328
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
329
|
+
|
|
330
|
+
|
|
331
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
332
|
+
pass
|
|
333
|
+
|
|
334
|
+
|
|
335
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
336
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
337
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
338
|
+
|
|
339
|
+
|
|
340
|
+
class PlanFragment(BaseModel):
|
|
341
|
+
id: str
|
|
342
|
+
ref_id: str = Field(alias="refId")
|
|
343
|
+
display_name: str = Field(alias="displayName")
|
|
344
|
+
description: Optional[str] = Field(default=None)
|
|
345
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
346
|
+
version_number: int = Field(alias="versionNumber")
|
|
347
|
+
additional_meta_data: Optional[Any] = Field(
|
|
348
|
+
alias="additionalMetaData", default=None
|
|
349
|
+
)
|
|
350
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
351
|
+
alias="hiddenFromWidgets", default=None
|
|
352
|
+
)
|
|
353
|
+
product: "PlanFragmentProduct"
|
|
354
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
355
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
356
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
357
|
+
alias="inheritedEntitlements", default=None
|
|
358
|
+
)
|
|
359
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
360
|
+
alias="compatibleAddons", default=None
|
|
361
|
+
)
|
|
362
|
+
compatible_package_groups: Optional[
|
|
363
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
364
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
365
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
366
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
367
|
+
alias="overagePrices", default=None
|
|
368
|
+
)
|
|
369
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
370
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
371
|
+
alias="defaultTrialConfig", default=None
|
|
372
|
+
)
|
|
373
|
+
|
|
374
|
+
|
|
375
|
+
class PlanFragmentProduct(ProductFragment):
|
|
376
|
+
pass
|
|
377
|
+
|
|
378
|
+
|
|
379
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
380
|
+
ref_id: str = Field(alias="refId")
|
|
381
|
+
display_name: str = Field(alias="displayName")
|
|
382
|
+
|
|
383
|
+
|
|
384
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
385
|
+
pass
|
|
386
|
+
|
|
387
|
+
|
|
388
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
389
|
+
pass
|
|
390
|
+
|
|
391
|
+
|
|
392
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
393
|
+
pass
|
|
394
|
+
|
|
395
|
+
|
|
396
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
397
|
+
pass
|
|
398
|
+
|
|
399
|
+
|
|
400
|
+
class PlanFragmentPrices(PriceFragment):
|
|
401
|
+
pass
|
|
402
|
+
|
|
403
|
+
|
|
404
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
405
|
+
pass
|
|
406
|
+
|
|
407
|
+
|
|
408
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
409
|
+
duration: float
|
|
410
|
+
units: TrialPeriodUnits
|
|
411
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
412
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
413
|
+
alias="trialEndBehavior", default=None
|
|
414
|
+
)
|
|
415
|
+
|
|
416
|
+
|
|
417
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
418
|
+
limit: float
|
|
419
|
+
|
|
420
|
+
|
|
421
|
+
class CustomerResourceFragment(BaseModel):
|
|
422
|
+
resource_id: str = Field(alias="resourceId")
|
|
423
|
+
|
|
424
|
+
|
|
425
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
426
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
219
430
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
220
431
|
alias="subscriptionScheduleType"
|
|
221
432
|
)
|
|
222
433
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
223
434
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
224
|
-
target_package: Optional["
|
|
435
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
225
436
|
alias="targetPackage", default=None
|
|
226
437
|
)
|
|
227
438
|
schedule_variables: Optional[
|
|
228
439
|
Annotated[
|
|
229
440
|
Union[
|
|
230
|
-
"
|
|
231
|
-
"
|
|
232
|
-
"
|
|
233
|
-
"
|
|
234
|
-
"
|
|
235
|
-
"
|
|
236
|
-
"
|
|
237
|
-
"
|
|
441
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
442
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
443
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
444
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
445
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
446
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
447
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
448
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
238
449
|
],
|
|
239
450
|
Field(discriminator="typename__"),
|
|
240
451
|
]
|
|
241
452
|
] = Field(alias="scheduleVariables", default=None)
|
|
242
453
|
|
|
243
454
|
|
|
244
|
-
class
|
|
455
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
245
456
|
id: str
|
|
246
457
|
ref_id: str = Field(alias="refId")
|
|
247
458
|
display_name: str = Field(alias="displayName")
|
|
248
459
|
|
|
249
460
|
|
|
250
|
-
class
|
|
461
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
251
462
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
252
463
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
253
464
|
new_quantity: float = Field(alias="newQuantity")
|
|
254
465
|
|
|
255
466
|
|
|
256
|
-
class
|
|
467
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
257
468
|
BaseModel
|
|
258
469
|
):
|
|
259
470
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -261,53 +472,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
261
472
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
262
473
|
|
|
263
474
|
|
|
264
|
-
class
|
|
475
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
265
476
|
BaseModel
|
|
266
477
|
):
|
|
267
478
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
268
479
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
269
480
|
|
|
270
481
|
|
|
271
|
-
class
|
|
482
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
272
483
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
273
484
|
|
|
274
485
|
|
|
275
|
-
class
|
|
486
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
487
|
+
BaseModel
|
|
488
|
+
):
|
|
276
489
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
277
490
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
278
491
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
279
492
|
billable_features: Optional[
|
|
280
493
|
List[
|
|
281
|
-
"
|
|
494
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
282
495
|
]
|
|
283
496
|
] = Field(alias="billableFeatures", default=None)
|
|
284
497
|
addons: Optional[
|
|
285
498
|
List[
|
|
286
|
-
"
|
|
499
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
287
500
|
]
|
|
288
501
|
] = Field(default=None)
|
|
289
502
|
price_overrides: Optional[
|
|
290
503
|
List[
|
|
291
|
-
"
|
|
504
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
292
505
|
]
|
|
293
506
|
] = Field(alias="priceOverrides", default=None)
|
|
294
507
|
|
|
295
508
|
|
|
296
|
-
class
|
|
509
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
297
510
|
BaseModel
|
|
298
511
|
):
|
|
299
512
|
feature_id: str = Field(alias="featureId")
|
|
300
513
|
quantity: float
|
|
301
514
|
|
|
302
515
|
|
|
303
|
-
class
|
|
516
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
304
517
|
BaseModel
|
|
305
518
|
):
|
|
306
519
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
307
520
|
quantity: float
|
|
308
521
|
|
|
309
522
|
|
|
310
|
-
class
|
|
523
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
311
524
|
BaseModel
|
|
312
525
|
):
|
|
313
526
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -315,39 +528,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
315
528
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
316
529
|
|
|
317
530
|
|
|
318
|
-
class
|
|
531
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
319
532
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
320
533
|
plan_ref_id: str = Field(alias="planRefId")
|
|
321
534
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
322
535
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
323
536
|
billable_features: Optional[
|
|
324
537
|
List[
|
|
325
|
-
"
|
|
538
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
326
539
|
]
|
|
327
540
|
] = Field(alias="billableFeatures", default=None)
|
|
328
541
|
addons: Optional[
|
|
329
|
-
List[
|
|
542
|
+
List[
|
|
543
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
544
|
+
]
|
|
330
545
|
] = Field(default=None)
|
|
331
546
|
price_overrides: Optional[
|
|
332
547
|
List[
|
|
333
|
-
"
|
|
548
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
334
549
|
]
|
|
335
550
|
] = Field(alias="priceOverrides", default=None)
|
|
336
551
|
|
|
337
552
|
|
|
338
|
-
class
|
|
553
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
339
554
|
BaseModel
|
|
340
555
|
):
|
|
341
556
|
feature_id: str = Field(alias="featureId")
|
|
342
557
|
quantity: float
|
|
343
558
|
|
|
344
559
|
|
|
345
|
-
class
|
|
560
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
561
|
+
BaseModel
|
|
562
|
+
):
|
|
346
563
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
347
564
|
quantity: float
|
|
348
565
|
|
|
349
566
|
|
|
350
|
-
class
|
|
567
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
351
568
|
BaseModel
|
|
352
569
|
):
|
|
353
570
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -355,7 +572,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
355
572
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
356
573
|
|
|
357
574
|
|
|
358
|
-
class
|
|
575
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
359
576
|
BaseModel
|
|
360
577
|
):
|
|
361
578
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -363,51 +580,53 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
363
580
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
364
581
|
|
|
365
582
|
|
|
366
|
-
class
|
|
583
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
584
|
+
BaseModel
|
|
585
|
+
):
|
|
367
586
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
368
587
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
369
588
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
370
589
|
|
|
371
590
|
|
|
372
|
-
class
|
|
591
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
373
592
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
374
593
|
alias="subscriptionScheduleType"
|
|
375
594
|
)
|
|
376
595
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
377
596
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
378
|
-
target_package: Optional["
|
|
597
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
379
598
|
alias="targetPackage", default=None
|
|
380
599
|
)
|
|
381
600
|
schedule_variables: Optional[
|
|
382
601
|
Annotated[
|
|
383
602
|
Union[
|
|
384
|
-
"
|
|
385
|
-
"
|
|
386
|
-
"
|
|
387
|
-
"
|
|
388
|
-
"
|
|
389
|
-
"
|
|
390
|
-
"
|
|
391
|
-
"
|
|
603
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
604
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
605
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
606
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
607
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
608
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
609
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
610
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
392
611
|
],
|
|
393
612
|
Field(discriminator="typename__"),
|
|
394
613
|
]
|
|
395
614
|
] = Field(alias="scheduleVariables", default=None)
|
|
396
615
|
|
|
397
616
|
|
|
398
|
-
class
|
|
617
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
399
618
|
id: str
|
|
400
619
|
ref_id: str = Field(alias="refId")
|
|
401
620
|
display_name: str = Field(alias="displayName")
|
|
402
621
|
|
|
403
622
|
|
|
404
|
-
class
|
|
623
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
405
624
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
406
625
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
407
626
|
new_quantity: float = Field(alias="newQuantity")
|
|
408
627
|
|
|
409
628
|
|
|
410
|
-
class
|
|
629
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
411
630
|
BaseModel
|
|
412
631
|
):
|
|
413
632
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -415,55 +634,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
415
634
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
416
635
|
|
|
417
636
|
|
|
418
|
-
class
|
|
637
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
419
638
|
BaseModel
|
|
420
639
|
):
|
|
421
640
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
422
641
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
423
642
|
|
|
424
643
|
|
|
425
|
-
class
|
|
644
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
426
645
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
427
646
|
|
|
428
647
|
|
|
429
|
-
class
|
|
430
|
-
BaseModel
|
|
431
|
-
):
|
|
648
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
432
649
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
433
650
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
434
651
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
435
652
|
billable_features: Optional[
|
|
436
653
|
List[
|
|
437
|
-
"
|
|
654
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
438
655
|
]
|
|
439
656
|
] = Field(alias="billableFeatures", default=None)
|
|
440
657
|
addons: Optional[
|
|
441
658
|
List[
|
|
442
|
-
"
|
|
659
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
443
660
|
]
|
|
444
661
|
] = Field(default=None)
|
|
445
662
|
price_overrides: Optional[
|
|
446
663
|
List[
|
|
447
|
-
"
|
|
664
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
448
665
|
]
|
|
449
666
|
] = Field(alias="priceOverrides", default=None)
|
|
450
667
|
|
|
451
668
|
|
|
452
|
-
class
|
|
669
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
453
670
|
BaseModel
|
|
454
671
|
):
|
|
455
672
|
feature_id: str = Field(alias="featureId")
|
|
456
673
|
quantity: float
|
|
457
674
|
|
|
458
675
|
|
|
459
|
-
class
|
|
676
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
460
677
|
BaseModel
|
|
461
678
|
):
|
|
462
679
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
463
680
|
quantity: float
|
|
464
681
|
|
|
465
682
|
|
|
466
|
-
class
|
|
683
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
467
684
|
BaseModel
|
|
468
685
|
):
|
|
469
686
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -471,43 +688,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
471
688
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
472
689
|
|
|
473
690
|
|
|
474
|
-
class
|
|
691
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
475
692
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
476
693
|
plan_ref_id: str = Field(alias="planRefId")
|
|
477
694
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
478
695
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
479
696
|
billable_features: Optional[
|
|
480
697
|
List[
|
|
481
|
-
"
|
|
698
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
482
699
|
]
|
|
483
700
|
] = Field(alias="billableFeatures", default=None)
|
|
484
701
|
addons: Optional[
|
|
485
|
-
List[
|
|
486
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
487
|
-
]
|
|
702
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
488
703
|
] = Field(default=None)
|
|
489
704
|
price_overrides: Optional[
|
|
490
705
|
List[
|
|
491
|
-
"
|
|
706
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
492
707
|
]
|
|
493
708
|
] = Field(alias="priceOverrides", default=None)
|
|
494
709
|
|
|
495
710
|
|
|
496
|
-
class
|
|
711
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
497
712
|
BaseModel
|
|
498
713
|
):
|
|
499
714
|
feature_id: str = Field(alias="featureId")
|
|
500
715
|
quantity: float
|
|
501
716
|
|
|
502
717
|
|
|
503
|
-
class
|
|
504
|
-
BaseModel
|
|
505
|
-
):
|
|
718
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
506
719
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
507
720
|
quantity: float
|
|
508
721
|
|
|
509
722
|
|
|
510
|
-
class
|
|
723
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
511
724
|
BaseModel
|
|
512
725
|
):
|
|
513
726
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -515,7 +728,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
515
728
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
516
729
|
|
|
517
730
|
|
|
518
|
-
class
|
|
731
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
519
732
|
BaseModel
|
|
520
733
|
):
|
|
521
734
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -523,14 +736,27 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
523
736
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
524
737
|
|
|
525
738
|
|
|
526
|
-
class
|
|
527
|
-
BaseModel
|
|
528
|
-
):
|
|
739
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
529
740
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
530
741
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
531
742
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
532
743
|
|
|
533
744
|
|
|
745
|
+
class TotalPriceFragment(BaseModel):
|
|
746
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
747
|
+
total: "TotalPriceFragmentTotal"
|
|
748
|
+
|
|
749
|
+
|
|
750
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
751
|
+
amount: float
|
|
752
|
+
currency: Currency
|
|
753
|
+
|
|
754
|
+
|
|
755
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
756
|
+
amount: float
|
|
757
|
+
currency: Currency
|
|
758
|
+
|
|
759
|
+
|
|
534
760
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
535
761
|
billing_id: str = Field(alias="billingId")
|
|
536
762
|
status: SubscriptionInvoiceStatus
|
|
@@ -558,29 +784,6 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
558
784
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
559
785
|
|
|
560
786
|
|
|
561
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
562
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
class TotalPriceFragment(BaseModel):
|
|
566
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
567
|
-
total: "TotalPriceFragmentTotal"
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
571
|
-
amount: float
|
|
572
|
-
currency: Currency
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
576
|
-
amount: float
|
|
577
|
-
currency: Currency
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
class CustomerResourceFragment(BaseModel):
|
|
581
|
-
resource_id: str = Field(alias="resourceId")
|
|
582
|
-
|
|
583
|
-
|
|
584
787
|
class SlimCustomerFragment(BaseModel):
|
|
585
788
|
id: str
|
|
586
789
|
name: Optional[str] = Field(default=None)
|
|
@@ -598,126 +801,6 @@ class SlimCustomerFragment(BaseModel):
|
|
|
598
801
|
)
|
|
599
802
|
|
|
600
803
|
|
|
601
|
-
class ProductFragment(BaseModel):
|
|
602
|
-
ref_id: str = Field(alias="refId")
|
|
603
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
604
|
-
description: Optional[str] = Field(default=None)
|
|
605
|
-
additional_meta_data: Optional[Any] = Field(
|
|
606
|
-
alias="additionalMetaData", default=None
|
|
607
|
-
)
|
|
608
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
612
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
613
|
-
alias="downgradePlan", default=None
|
|
614
|
-
)
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
618
|
-
ref_id: str = Field(alias="refId")
|
|
619
|
-
display_name: str = Field(alias="displayName")
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
623
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
624
|
-
display_name: str = Field(alias="displayName")
|
|
625
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
626
|
-
default=None
|
|
627
|
-
)
|
|
628
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
632
|
-
pass
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
636
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
637
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
class PlanFragment(BaseModel):
|
|
641
|
-
id: str
|
|
642
|
-
ref_id: str = Field(alias="refId")
|
|
643
|
-
display_name: str = Field(alias="displayName")
|
|
644
|
-
description: Optional[str] = Field(default=None)
|
|
645
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
646
|
-
version_number: int = Field(alias="versionNumber")
|
|
647
|
-
additional_meta_data: Optional[Any] = Field(
|
|
648
|
-
alias="additionalMetaData", default=None
|
|
649
|
-
)
|
|
650
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
651
|
-
alias="hiddenFromWidgets", default=None
|
|
652
|
-
)
|
|
653
|
-
product: "PlanFragmentProduct"
|
|
654
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
655
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
656
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
657
|
-
alias="inheritedEntitlements", default=None
|
|
658
|
-
)
|
|
659
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
660
|
-
alias="compatibleAddons", default=None
|
|
661
|
-
)
|
|
662
|
-
compatible_package_groups: Optional[
|
|
663
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
664
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
665
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
666
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
667
|
-
alias="overagePrices", default=None
|
|
668
|
-
)
|
|
669
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
670
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
671
|
-
alias="defaultTrialConfig", default=None
|
|
672
|
-
)
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
class PlanFragmentProduct(ProductFragment):
|
|
676
|
-
pass
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
680
|
-
ref_id: str = Field(alias="refId")
|
|
681
|
-
display_name: str = Field(alias="displayName")
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
685
|
-
pass
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
689
|
-
pass
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
693
|
-
pass
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
697
|
-
pass
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
class PlanFragmentPrices(PriceFragment):
|
|
701
|
-
pass
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
705
|
-
pass
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
709
|
-
duration: float
|
|
710
|
-
units: TrialPeriodUnits
|
|
711
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
712
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
713
|
-
alias="trialEndBehavior", default=None
|
|
714
|
-
)
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
718
|
-
limit: float
|
|
719
|
-
|
|
720
|
-
|
|
721
804
|
class SubscriptionFragment(BaseModel):
|
|
722
805
|
id: str
|
|
723
806
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -797,116 +880,33 @@ class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
|
797
880
|
pass
|
|
798
881
|
|
|
799
882
|
|
|
800
|
-
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
801
|
-
pass
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
805
|
-
pass
|
|
806
|
-
|
|
807
|
-
|
|
808
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
809
|
-
id: str
|
|
810
|
-
quantity: float
|
|
811
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
815
|
-
pass
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
819
|
-
pass
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
823
|
-
pass
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
827
|
-
pass
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
class FeatureFragment(BaseModel):
|
|
831
|
-
typename__: str = Field(alias="__typename")
|
|
832
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
833
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
834
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
835
|
-
feature_units_plural: Optional[str] = Field(
|
|
836
|
-
alias="featureUnitsPlural", default=None
|
|
837
|
-
)
|
|
838
|
-
description: Optional[str] = Field(default=None)
|
|
839
|
-
display_name: str = Field(alias="displayName")
|
|
840
|
-
ref_id: str = Field(alias="refId")
|
|
841
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
842
|
-
alias="unitTransformation", default=None
|
|
843
|
-
)
|
|
844
|
-
|
|
883
|
+
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
884
|
+
pass
|
|
845
885
|
|
|
846
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
847
|
-
divide: float
|
|
848
|
-
round: UnitTransformationRound
|
|
849
886
|
|
|
887
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
888
|
+
pass
|
|
850
889
|
|
|
851
|
-
class EntitlementFragment(BaseModel):
|
|
852
|
-
typename__: str = Field(alias="__typename")
|
|
853
|
-
is_granted: bool = Field(alias="isGranted")
|
|
854
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
855
|
-
alias="accessDeniedReason", default=None
|
|
856
|
-
)
|
|
857
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
858
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
859
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
860
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
861
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
862
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
863
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
864
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
865
|
-
alias="entitlementUpdatedAt", default=None
|
|
866
|
-
)
|
|
867
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
868
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
869
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
870
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
871
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
872
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
873
|
-
alias="resetPeriod", default=None
|
|
874
|
-
)
|
|
875
|
-
reset_period_configuration: Optional[
|
|
876
|
-
Annotated[
|
|
877
|
-
Union[
|
|
878
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
879
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
880
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
881
|
-
],
|
|
882
|
-
Field(discriminator="typename__"),
|
|
883
|
-
]
|
|
884
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
885
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
886
890
|
|
|
891
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
892
|
+
id: str
|
|
893
|
+
quantity: float
|
|
894
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
887
895
|
|
|
888
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
889
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
890
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
891
|
-
alias="monthlyAccordingTo", default=None
|
|
892
|
-
)
|
|
893
896
|
|
|
897
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
898
|
+
pass
|
|
894
899
|
|
|
895
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
896
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
897
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
898
|
-
alias="weeklyAccordingTo", default=None
|
|
899
|
-
)
|
|
900
900
|
|
|
901
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
902
|
+
pass
|
|
901
903
|
|
|
902
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
903
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
904
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
905
|
-
alias="yearlyAccordingTo", default=None
|
|
906
|
-
)
|
|
907
904
|
|
|
905
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
906
|
+
pass
|
|
908
907
|
|
|
909
|
-
|
|
908
|
+
|
|
909
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
910
910
|
pass
|
|
911
911
|
|
|
912
912
|
|
|
@@ -987,35 +987,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
987
987
|
)
|
|
988
988
|
|
|
989
989
|
|
|
990
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
991
|
-
status: PromotionalEntitlementStatus
|
|
992
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
993
|
-
feature_id: str = Field(alias="featureId")
|
|
994
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
995
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
996
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
997
|
-
alias="resetPeriod", default=None
|
|
998
|
-
)
|
|
999
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1000
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1001
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1005
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1006
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1007
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1008
|
-
feature_units_plural: Optional[str] = Field(
|
|
1009
|
-
alias="featureUnitsPlural", default=None
|
|
1010
|
-
)
|
|
1011
|
-
display_name: str = Field(alias="displayName")
|
|
1012
|
-
description: Optional[str] = Field(default=None)
|
|
1013
|
-
ref_id: str = Field(alias="refId")
|
|
1014
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1015
|
-
alias="additionalMetaData", default=None
|
|
1016
|
-
)
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
990
|
class CouponFragment(BaseModel):
|
|
1020
991
|
id: str
|
|
1021
992
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1050,6 +1021,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1050
1021
|
status: SyncStatus
|
|
1051
1022
|
|
|
1052
1023
|
|
|
1024
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1025
|
+
status: PromotionalEntitlementStatus
|
|
1026
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1027
|
+
feature_id: str = Field(alias="featureId")
|
|
1028
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1029
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1030
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1031
|
+
alias="resetPeriod", default=None
|
|
1032
|
+
)
|
|
1033
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1034
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1035
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1036
|
+
|
|
1037
|
+
|
|
1038
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1039
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1040
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1041
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1042
|
+
feature_units_plural: Optional[str] = Field(
|
|
1043
|
+
alias="featureUnitsPlural", default=None
|
|
1044
|
+
)
|
|
1045
|
+
display_name: str = Field(alias="displayName")
|
|
1046
|
+
description: Optional[str] = Field(default=None)
|
|
1047
|
+
ref_id: str = Field(alias="refId")
|
|
1048
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1049
|
+
alias="additionalMetaData", default=None
|
|
1050
|
+
)
|
|
1051
|
+
|
|
1052
|
+
|
|
1053
1053
|
class CustomerFragment(SlimCustomerFragment):
|
|
1054
1054
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1055
1055
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1250,6 +1250,23 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1250
1250
|
pass
|
|
1251
1251
|
|
|
1252
1252
|
|
|
1253
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1254
|
+
display_name: str = Field(alias="displayName")
|
|
1255
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1256
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1257
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1258
|
+
period: PromotionalEntitlementPeriod
|
|
1259
|
+
start_date: Any = Field(alias="startDate")
|
|
1260
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1261
|
+
|
|
1262
|
+
|
|
1263
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1264
|
+
addon_id: str = Field(alias="addonId")
|
|
1265
|
+
description: Optional[str] = Field(default=None)
|
|
1266
|
+
display_name: str = Field(alias="displayName")
|
|
1267
|
+
quantity: int
|
|
1268
|
+
|
|
1269
|
+
|
|
1253
1270
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1254
1271
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1255
1272
|
alias="subscriptionScheduleType"
|
|
@@ -1419,13 +1436,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1419
1436
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1420
1437
|
|
|
1421
1438
|
|
|
1422
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1423
|
-
addon_id: str = Field(alias="addonId")
|
|
1424
|
-
description: Optional[str] = Field(default=None)
|
|
1425
|
-
display_name: str = Field(alias="displayName")
|
|
1426
|
-
quantity: int
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
1439
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1430
1440
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1431
1441
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1549,16 +1559,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1549
1559
|
pass
|
|
1550
1560
|
|
|
1551
1561
|
|
|
1552
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1553
|
-
display_name: str = Field(alias="displayName")
|
|
1554
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1555
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1556
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1557
|
-
period: PromotionalEntitlementPeriod
|
|
1558
|
-
start_date: Any = Field(alias="startDate")
|
|
1559
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
1562
|
class CustomerPortalFragment(BaseModel):
|
|
1563
1563
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1564
1564
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1786,39 +1786,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1786
1786
|
description: Optional[str] = Field(default=None)
|
|
1787
1787
|
|
|
1788
1788
|
|
|
1789
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1790
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1791
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1792
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1793
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1794
|
-
alias="resetPeriod", default=None
|
|
1795
|
-
)
|
|
1796
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1797
|
-
alias="hiddenFromWidgets", default=None
|
|
1798
|
-
)
|
|
1799
|
-
display_name_override: Optional[str] = Field(
|
|
1800
|
-
alias="displayNameOverride", default=None
|
|
1801
|
-
)
|
|
1802
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1803
|
-
default=None
|
|
1804
|
-
)
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1808
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1809
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1810
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1811
|
-
feature_units_plural: Optional[str] = Field(
|
|
1812
|
-
alias="featureUnitsPlural", default=None
|
|
1813
|
-
)
|
|
1814
|
-
display_name: str = Field(alias="displayName")
|
|
1815
|
-
description: Optional[str] = Field(default=None)
|
|
1816
|
-
ref_id: str = Field(alias="refId")
|
|
1817
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1818
|
-
alias="additionalMetaData", default=None
|
|
1819
|
-
)
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
1789
|
class MockPaywallPriceFragment(BaseModel):
|
|
1823
1790
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1824
1791
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1853,6 +1820,39 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1853
1820
|
display_name: str = Field(alias="displayName")
|
|
1854
1821
|
|
|
1855
1822
|
|
|
1823
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1824
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1825
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1826
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1827
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1828
|
+
alias="resetPeriod", default=None
|
|
1829
|
+
)
|
|
1830
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1831
|
+
alias="hiddenFromWidgets", default=None
|
|
1832
|
+
)
|
|
1833
|
+
display_name_override: Optional[str] = Field(
|
|
1834
|
+
alias="displayNameOverride", default=None
|
|
1835
|
+
)
|
|
1836
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1837
|
+
default=None
|
|
1838
|
+
)
|
|
1839
|
+
|
|
1840
|
+
|
|
1841
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1842
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1843
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1844
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1845
|
+
feature_units_plural: Optional[str] = Field(
|
|
1846
|
+
alias="featureUnitsPlural", default=None
|
|
1847
|
+
)
|
|
1848
|
+
display_name: str = Field(alias="displayName")
|
|
1849
|
+
description: Optional[str] = Field(default=None)
|
|
1850
|
+
ref_id: str = Field(alias="refId")
|
|
1851
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1852
|
+
alias="additionalMetaData", default=None
|
|
1853
|
+
)
|
|
1854
|
+
|
|
1855
|
+
|
|
1856
1856
|
class MockPaywallAddonFragment(BaseModel):
|
|
1857
1857
|
ref_id: str = Field(alias="refId")
|
|
1858
1858
|
display_name: str = Field(alias="displayName")
|
|
@@ -2764,39 +2764,39 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2764
2764
|
|
|
2765
2765
|
AddonDependencyFragment.model_rebuild()
|
|
2766
2766
|
PriceTierFragment.model_rebuild()
|
|
2767
|
-
PriceFragment.model_rebuild()
|
|
2768
2767
|
OveragePriceFragment.model_rebuild()
|
|
2768
|
+
PriceFragment.model_rebuild()
|
|
2769
2769
|
PackageEntitlementFragment.model_rebuild()
|
|
2770
2770
|
AddonFragment.model_rebuild()
|
|
2771
|
-
|
|
2772
|
-
|
|
2773
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2775
|
-
TotalPriceFragment.model_rebuild()
|
|
2776
|
-
CustomerResourceFragment.model_rebuild()
|
|
2777
|
-
SlimCustomerFragment.model_rebuild()
|
|
2771
|
+
FeatureFragment.model_rebuild()
|
|
2772
|
+
EntitlementFragment.model_rebuild()
|
|
2778
2773
|
ProductFragment.model_rebuild()
|
|
2779
2774
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2780
2775
|
PlanFragment.model_rebuild()
|
|
2776
|
+
CustomerResourceFragment.model_rebuild()
|
|
2777
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2778
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2779
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
|
+
TotalPriceFragment.model_rebuild()
|
|
2781
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
|
+
SlimCustomerFragment.model_rebuild()
|
|
2781
2783
|
SubscriptionFragment.model_rebuild()
|
|
2782
|
-
FeatureFragment.model_rebuild()
|
|
2783
|
-
EntitlementFragment.model_rebuild()
|
|
2784
2784
|
ApplySubscriptionFragment.model_rebuild()
|
|
2785
2785
|
FontVariantFragment.model_rebuild()
|
|
2786
2786
|
TypographyConfigurationFragment.model_rebuild()
|
|
2787
2787
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2788
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2788
|
CouponFragment.model_rebuild()
|
|
2789
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2790
2790
|
CustomerFragment.model_rebuild()
|
|
2791
2791
|
CheckoutStateFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2794
2794
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2795
|
-
|
|
2795
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2796
2796
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2797
2798
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2798
2799
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2799
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalFragment.model_rebuild()
|
|
2801
2801
|
CustomerStatisticsFragment.model_rebuild()
|
|
2802
2802
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2806,8 +2806,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2806
2806
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2807
2807
|
LayoutConfigurationFragment.model_rebuild()
|
|
2808
2808
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2809
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2810
2809
|
MockPaywallPriceFragment.model_rebuild()
|
|
2810
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2811
2811
|
MockPaywallAddonFragment.model_rebuild()
|
|
2812
2812
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2813
2813
|
MockPaywallPlanFragment.model_rebuild()
|