stigg-api-client-v2 3.113.0__py3-none-any.whl → 3.116.0__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/async_client.py +1 -0
- stigg/generated/client.py +1 -0
- stigg/generated/enums.py +6 -0
- stigg/generated/fragments.py +407 -407
- stigg/generated/get_sdk_configuration.py +1 -0
- stigg/generated/input_types.py +9 -0
- {stigg_api_client_v2-3.113.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.113.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/RECORD +10 -10
- {stigg_api_client_v2-3.113.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.113.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -62,41 +62,6 @@ class AddonDependencyFragment(BaseModel):
|
|
|
62
62
|
description: Optional[str] = Field(default=None)
|
|
63
63
|
|
|
64
64
|
|
|
65
|
-
class PackageEntitlementFragment(BaseModel):
|
|
66
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
67
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
68
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
69
|
-
feature_id: str = Field(alias="featureId")
|
|
70
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
71
|
-
alias="resetPeriod", default=None
|
|
72
|
-
)
|
|
73
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
74
|
-
alias="hiddenFromWidgets", default=None
|
|
75
|
-
)
|
|
76
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
77
|
-
display_name_override: Optional[str] = Field(
|
|
78
|
-
alias="displayNameOverride", default=None
|
|
79
|
-
)
|
|
80
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
81
|
-
is_granted: bool = Field(alias="isGranted")
|
|
82
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
86
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
87
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
88
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
89
|
-
feature_units_plural: Optional[str] = Field(
|
|
90
|
-
alias="featureUnitsPlural", default=None
|
|
91
|
-
)
|
|
92
|
-
display_name: str = Field(alias="displayName")
|
|
93
|
-
description: Optional[str] = Field(default=None)
|
|
94
|
-
ref_id: str = Field(alias="refId")
|
|
95
|
-
additional_meta_data: Optional[Any] = Field(
|
|
96
|
-
alias="additionalMetaData", default=None
|
|
97
|
-
)
|
|
98
|
-
|
|
99
|
-
|
|
100
65
|
class PriceTierFragment(BaseModel):
|
|
101
66
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
102
67
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -149,6 +114,41 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
149
114
|
description: Optional[str] = Field(default=None)
|
|
150
115
|
|
|
151
116
|
|
|
117
|
+
class PackageEntitlementFragment(BaseModel):
|
|
118
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
119
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
120
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
121
|
+
feature_id: str = Field(alias="featureId")
|
|
122
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
123
|
+
alias="resetPeriod", default=None
|
|
124
|
+
)
|
|
125
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
126
|
+
alias="hiddenFromWidgets", default=None
|
|
127
|
+
)
|
|
128
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
129
|
+
display_name_override: Optional[str] = Field(
|
|
130
|
+
alias="displayNameOverride", default=None
|
|
131
|
+
)
|
|
132
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
133
|
+
is_granted: bool = Field(alias="isGranted")
|
|
134
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
138
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
139
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
140
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
141
|
+
feature_units_plural: Optional[str] = Field(
|
|
142
|
+
alias="featureUnitsPlural", default=None
|
|
143
|
+
)
|
|
144
|
+
display_name: str = Field(alias="displayName")
|
|
145
|
+
description: Optional[str] = Field(default=None)
|
|
146
|
+
ref_id: str = Field(alias="refId")
|
|
147
|
+
additional_meta_data: Optional[Any] = Field(
|
|
148
|
+
alias="additionalMetaData", default=None
|
|
149
|
+
)
|
|
150
|
+
|
|
151
|
+
|
|
152
152
|
class PriceFragment(BaseModel):
|
|
153
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -232,167 +232,62 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
232
232
|
pass
|
|
233
233
|
|
|
234
234
|
|
|
235
|
-
class
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
feature_units_plural: Optional[str] = Field(
|
|
241
|
-
alias="featureUnitsPlural", default=None
|
|
242
|
-
)
|
|
243
|
-
description: Optional[str] = Field(default=None)
|
|
244
|
-
display_name: str = Field(alias="displayName")
|
|
245
|
-
ref_id: str = Field(alias="refId")
|
|
246
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
247
|
-
alias="unitTransformation", default=None
|
|
248
|
-
)
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
252
|
-
divide: float
|
|
253
|
-
round: UnitTransformationRound
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
class EntitlementFragment(BaseModel):
|
|
257
|
-
typename__: str = Field(alias="__typename")
|
|
258
|
-
is_granted: bool = Field(alias="isGranted")
|
|
259
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
260
|
-
alias="accessDeniedReason", default=None
|
|
261
|
-
)
|
|
262
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
263
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
264
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
265
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
266
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
267
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
268
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
269
|
-
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
270
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
271
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
272
|
-
alias="entitlementUpdatedAt", default=None
|
|
273
|
-
)
|
|
274
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
275
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
276
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
277
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
278
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
279
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
280
|
-
alias="resetPeriod", default=None
|
|
281
|
-
)
|
|
282
|
-
reset_period_configuration: Optional[
|
|
283
|
-
Annotated[
|
|
284
|
-
Union[
|
|
285
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
286
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
287
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
288
|
-
],
|
|
289
|
-
Field(discriminator="typename__"),
|
|
290
|
-
]
|
|
291
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
292
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
293
|
-
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
294
|
-
alias="creditRate", default=None
|
|
295
|
-
)
|
|
296
|
-
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
300
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
301
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
302
|
-
alias="monthlyAccordingTo", default=None
|
|
303
|
-
)
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
307
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
308
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
309
|
-
alias="weeklyAccordingTo", default=None
|
|
310
|
-
)
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
314
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
315
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
316
|
-
alias="yearlyAccordingTo", default=None
|
|
317
|
-
)
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
321
|
-
pass
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
class EntitlementFragmentCreditRate(BaseModel):
|
|
325
|
-
amount: float
|
|
326
|
-
currency_id: str = Field(alias="currencyId")
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
330
|
-
billing_id: str = Field(alias="billingId")
|
|
331
|
-
status: SubscriptionInvoiceStatus
|
|
332
|
-
created_at: Any = Field(alias="createdAt")
|
|
333
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
235
|
+
class SlimCustomerFragment(BaseModel):
|
|
236
|
+
id: Any
|
|
237
|
+
name: Optional[str] = Field(default=None)
|
|
238
|
+
email: Optional[str] = Field(default=None)
|
|
239
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
334
240
|
updated_at: Any = Field(alias="updatedAt")
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
341
|
-
alias="billingReason", default=None
|
|
342
|
-
)
|
|
343
|
-
currency: Optional[str] = Field(default=None)
|
|
344
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
345
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
346
|
-
alias="subTotalExcludingTax", default=None
|
|
241
|
+
ref_id: str = Field(alias="refId")
|
|
242
|
+
customer_id: str = Field(alias="customerId")
|
|
243
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
244
|
+
additional_meta_data: Optional[Any] = Field(
|
|
245
|
+
alias="additionalMetaData", default=None
|
|
347
246
|
)
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
alias="totalExcludingTax", default=None
|
|
247
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
248
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
351
249
|
)
|
|
352
|
-
tax: Optional[float] = Field(default=None)
|
|
353
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
354
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
355
250
|
|
|
356
251
|
|
|
357
|
-
class
|
|
252
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
358
253
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
359
254
|
alias="subscriptionScheduleType"
|
|
360
255
|
)
|
|
361
256
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
362
257
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
363
|
-
target_package: Optional["
|
|
258
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
364
259
|
alias="targetPackage", default=None
|
|
365
260
|
)
|
|
366
261
|
schedule_variables: Optional[
|
|
367
262
|
Annotated[
|
|
368
263
|
Union[
|
|
369
|
-
"
|
|
370
|
-
"
|
|
371
|
-
"
|
|
372
|
-
"
|
|
373
|
-
"
|
|
374
|
-
"
|
|
375
|
-
"
|
|
376
|
-
"
|
|
264
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
265
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
266
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
267
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
268
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
269
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
270
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
271
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
377
272
|
],
|
|
378
273
|
Field(discriminator="typename__"),
|
|
379
274
|
]
|
|
380
275
|
] = Field(alias="scheduleVariables", default=None)
|
|
381
276
|
|
|
382
277
|
|
|
383
|
-
class
|
|
278
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
384
279
|
id: Any
|
|
385
280
|
ref_id: str = Field(alias="refId")
|
|
386
281
|
display_name: str = Field(alias="displayName")
|
|
387
282
|
|
|
388
283
|
|
|
389
|
-
class
|
|
284
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
390
285
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
391
286
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
392
287
|
new_quantity: float = Field(alias="newQuantity")
|
|
393
288
|
|
|
394
289
|
|
|
395
|
-
class
|
|
290
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
396
291
|
BaseModel
|
|
397
292
|
):
|
|
398
293
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -400,55 +295,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
400
295
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
401
296
|
|
|
402
297
|
|
|
403
|
-
class
|
|
298
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
404
299
|
BaseModel
|
|
405
300
|
):
|
|
406
301
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
407
302
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
408
303
|
|
|
409
304
|
|
|
410
|
-
class
|
|
305
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
411
306
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
412
307
|
|
|
413
308
|
|
|
414
|
-
class
|
|
415
|
-
BaseModel
|
|
416
|
-
):
|
|
309
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
417
310
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
418
311
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
419
312
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
420
313
|
billable_features: Optional[
|
|
421
314
|
List[
|
|
422
|
-
"
|
|
315
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
423
316
|
]
|
|
424
317
|
] = Field(alias="billableFeatures", default=None)
|
|
425
318
|
addons: Optional[
|
|
426
319
|
List[
|
|
427
|
-
"
|
|
320
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
428
321
|
]
|
|
429
322
|
] = Field(default=None)
|
|
430
323
|
price_overrides: Optional[
|
|
431
324
|
List[
|
|
432
|
-
"
|
|
325
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
433
326
|
]
|
|
434
327
|
] = Field(alias="priceOverrides", default=None)
|
|
435
328
|
|
|
436
329
|
|
|
437
|
-
class
|
|
330
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
438
331
|
BaseModel
|
|
439
332
|
):
|
|
440
333
|
feature_id: str = Field(alias="featureId")
|
|
441
334
|
quantity: float
|
|
442
335
|
|
|
443
336
|
|
|
444
|
-
class
|
|
337
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
445
338
|
BaseModel
|
|
446
339
|
):
|
|
447
340
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
448
341
|
quantity: float
|
|
449
342
|
|
|
450
343
|
|
|
451
|
-
class
|
|
344
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
452
345
|
BaseModel
|
|
453
346
|
):
|
|
454
347
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -456,43 +349,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
456
349
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
457
350
|
|
|
458
351
|
|
|
459
|
-
class
|
|
352
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
460
353
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
461
354
|
plan_ref_id: str = Field(alias="planRefId")
|
|
462
355
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
463
356
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
464
357
|
billable_features: Optional[
|
|
465
358
|
List[
|
|
466
|
-
"
|
|
359
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
467
360
|
]
|
|
468
361
|
] = Field(alias="billableFeatures", default=None)
|
|
469
362
|
addons: Optional[
|
|
470
|
-
List[
|
|
471
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
472
|
-
]
|
|
363
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
473
364
|
] = Field(default=None)
|
|
474
365
|
price_overrides: Optional[
|
|
475
366
|
List[
|
|
476
|
-
"
|
|
367
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
477
368
|
]
|
|
478
369
|
] = Field(alias="priceOverrides", default=None)
|
|
479
370
|
|
|
480
371
|
|
|
481
|
-
class
|
|
372
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
482
373
|
BaseModel
|
|
483
374
|
):
|
|
484
375
|
feature_id: str = Field(alias="featureId")
|
|
485
376
|
quantity: float
|
|
486
377
|
|
|
487
378
|
|
|
488
|
-
class
|
|
489
|
-
BaseModel
|
|
490
|
-
):
|
|
379
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
491
380
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
492
381
|
quantity: float
|
|
493
382
|
|
|
494
383
|
|
|
495
|
-
class
|
|
384
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
496
385
|
BaseModel
|
|
497
386
|
):
|
|
498
387
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -500,7 +389,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
500
389
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
501
390
|
|
|
502
391
|
|
|
503
|
-
class
|
|
392
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
504
393
|
BaseModel
|
|
505
394
|
):
|
|
506
395
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -508,53 +397,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
508
397
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
509
398
|
|
|
510
399
|
|
|
511
|
-
class
|
|
512
|
-
BaseModel
|
|
513
|
-
):
|
|
400
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
514
401
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
515
402
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
516
403
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
517
404
|
|
|
518
405
|
|
|
519
|
-
class
|
|
406
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
520
407
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
521
408
|
alias="subscriptionScheduleType"
|
|
522
409
|
)
|
|
523
410
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
524
411
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
525
|
-
target_package: Optional["
|
|
412
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
526
413
|
alias="targetPackage", default=None
|
|
527
414
|
)
|
|
528
415
|
schedule_variables: Optional[
|
|
529
416
|
Annotated[
|
|
530
417
|
Union[
|
|
531
|
-
"
|
|
532
|
-
"
|
|
533
|
-
"
|
|
534
|
-
"
|
|
535
|
-
"
|
|
536
|
-
"
|
|
537
|
-
"
|
|
538
|
-
"
|
|
418
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
419
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
420
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
421
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
422
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
423
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
424
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
425
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
539
426
|
],
|
|
540
427
|
Field(discriminator="typename__"),
|
|
541
428
|
]
|
|
542
429
|
] = Field(alias="scheduleVariables", default=None)
|
|
543
430
|
|
|
544
431
|
|
|
545
|
-
class
|
|
432
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
546
433
|
id: Any
|
|
547
434
|
ref_id: str = Field(alias="refId")
|
|
548
435
|
display_name: str = Field(alias="displayName")
|
|
549
436
|
|
|
550
437
|
|
|
551
|
-
class
|
|
438
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
552
439
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
553
440
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
554
441
|
new_quantity: float = Field(alias="newQuantity")
|
|
555
442
|
|
|
556
443
|
|
|
557
|
-
class
|
|
444
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
558
445
|
BaseModel
|
|
559
446
|
):
|
|
560
447
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -562,53 +449,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
562
449
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
563
450
|
|
|
564
451
|
|
|
565
|
-
class
|
|
452
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
566
453
|
BaseModel
|
|
567
454
|
):
|
|
568
455
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
569
456
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
570
457
|
|
|
571
458
|
|
|
572
|
-
class
|
|
459
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
573
460
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
574
461
|
|
|
575
462
|
|
|
576
|
-
class
|
|
463
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
464
|
+
BaseModel
|
|
465
|
+
):
|
|
577
466
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
578
467
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
579
468
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
580
469
|
billable_features: Optional[
|
|
581
470
|
List[
|
|
582
|
-
"
|
|
471
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
583
472
|
]
|
|
584
473
|
] = Field(alias="billableFeatures", default=None)
|
|
585
474
|
addons: Optional[
|
|
586
475
|
List[
|
|
587
|
-
"
|
|
476
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
588
477
|
]
|
|
589
478
|
] = Field(default=None)
|
|
590
479
|
price_overrides: Optional[
|
|
591
480
|
List[
|
|
592
|
-
"
|
|
481
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
593
482
|
]
|
|
594
483
|
] = Field(alias="priceOverrides", default=None)
|
|
595
484
|
|
|
596
485
|
|
|
597
|
-
class
|
|
486
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
598
487
|
BaseModel
|
|
599
488
|
):
|
|
600
489
|
feature_id: str = Field(alias="featureId")
|
|
601
490
|
quantity: float
|
|
602
491
|
|
|
603
492
|
|
|
604
|
-
class
|
|
493
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
605
494
|
BaseModel
|
|
606
495
|
):
|
|
607
496
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
608
497
|
quantity: float
|
|
609
498
|
|
|
610
499
|
|
|
611
|
-
class
|
|
500
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
612
501
|
BaseModel
|
|
613
502
|
):
|
|
614
503
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -616,39 +505,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
616
505
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
617
506
|
|
|
618
507
|
|
|
619
|
-
class
|
|
508
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
620
509
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
621
510
|
plan_ref_id: str = Field(alias="planRefId")
|
|
622
511
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
623
512
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
624
513
|
billable_features: Optional[
|
|
625
514
|
List[
|
|
626
|
-
"
|
|
515
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
627
516
|
]
|
|
628
517
|
] = Field(alias="billableFeatures", default=None)
|
|
629
518
|
addons: Optional[
|
|
630
|
-
List[
|
|
519
|
+
List[
|
|
520
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
521
|
+
]
|
|
631
522
|
] = Field(default=None)
|
|
632
523
|
price_overrides: Optional[
|
|
633
524
|
List[
|
|
634
|
-
"
|
|
525
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
635
526
|
]
|
|
636
527
|
] = Field(alias="priceOverrides", default=None)
|
|
637
528
|
|
|
638
529
|
|
|
639
|
-
class
|
|
530
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
640
531
|
BaseModel
|
|
641
532
|
):
|
|
642
533
|
feature_id: str = Field(alias="featureId")
|
|
643
534
|
quantity: float
|
|
644
535
|
|
|
645
536
|
|
|
646
|
-
class
|
|
537
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
538
|
+
BaseModel
|
|
539
|
+
):
|
|
647
540
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
648
541
|
quantity: float
|
|
649
542
|
|
|
650
543
|
|
|
651
|
-
class
|
|
544
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
652
545
|
BaseModel
|
|
653
546
|
):
|
|
654
547
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -656,7 +549,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
656
549
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
657
550
|
|
|
658
551
|
|
|
659
|
-
class
|
|
552
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
660
553
|
BaseModel
|
|
661
554
|
):
|
|
662
555
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -664,29 +557,62 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
664
557
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
665
558
|
|
|
666
559
|
|
|
667
|
-
class
|
|
560
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
561
|
+
BaseModel
|
|
562
|
+
):
|
|
668
563
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
669
564
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
670
565
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
671
566
|
|
|
672
567
|
|
|
673
|
-
class
|
|
674
|
-
|
|
675
|
-
total: "TotalPriceFragmentTotal"
|
|
568
|
+
class CustomerResourceFragment(BaseModel):
|
|
569
|
+
resource_id: str = Field(alias="resourceId")
|
|
676
570
|
|
|
677
571
|
|
|
678
|
-
class
|
|
679
|
-
|
|
680
|
-
|
|
572
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
573
|
+
billing_id: str = Field(alias="billingId")
|
|
574
|
+
status: SubscriptionInvoiceStatus
|
|
575
|
+
created_at: Any = Field(alias="createdAt")
|
|
576
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
577
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
578
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
579
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
580
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
581
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
582
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
583
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
584
|
+
alias="billingReason", default=None
|
|
585
|
+
)
|
|
586
|
+
currency: Optional[str] = Field(default=None)
|
|
587
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
588
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
589
|
+
alias="subTotalExcludingTax", default=None
|
|
590
|
+
)
|
|
591
|
+
total: Optional[float] = Field(default=None)
|
|
592
|
+
total_excluding_tax: Optional[float] = Field(
|
|
593
|
+
alias="totalExcludingTax", default=None
|
|
594
|
+
)
|
|
595
|
+
tax: Optional[float] = Field(default=None)
|
|
596
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
597
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
681
598
|
|
|
682
599
|
|
|
683
|
-
class
|
|
684
|
-
|
|
685
|
-
|
|
600
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
601
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
602
|
+
display_name: str = Field(alias="displayName")
|
|
603
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
604
|
+
default=None
|
|
605
|
+
)
|
|
606
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
686
607
|
|
|
687
608
|
|
|
688
|
-
class
|
|
689
|
-
|
|
609
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
610
|
+
pass
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
614
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
615
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
690
616
|
|
|
691
617
|
|
|
692
618
|
class ProductFragment(BaseModel):
|
|
@@ -710,24 +636,6 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
710
636
|
display_name: str = Field(alias="displayName")
|
|
711
637
|
|
|
712
638
|
|
|
713
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
714
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
715
|
-
display_name: str = Field(alias="displayName")
|
|
716
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
717
|
-
default=None
|
|
718
|
-
)
|
|
719
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
723
|
-
pass
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
727
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
728
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
729
|
-
|
|
730
|
-
|
|
731
639
|
class PlanFragment(BaseModel):
|
|
732
640
|
id: Any
|
|
733
641
|
ref_id: str = Field(alias="refId")
|
|
@@ -809,25 +717,23 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
809
717
|
limit: float
|
|
810
718
|
|
|
811
719
|
|
|
812
|
-
class
|
|
813
|
-
|
|
814
|
-
name: Optional[str] = Field(default=None)
|
|
815
|
-
email: Optional[str] = Field(default=None)
|
|
816
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
817
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
818
|
-
ref_id: str = Field(alias="refId")
|
|
819
|
-
customer_id: str = Field(alias="customerId")
|
|
820
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
821
|
-
additional_meta_data: Optional[Any] = Field(
|
|
822
|
-
alias="additionalMetaData", default=None
|
|
823
|
-
)
|
|
824
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
825
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
826
|
-
)
|
|
720
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
721
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
827
722
|
|
|
828
723
|
|
|
829
|
-
class
|
|
830
|
-
|
|
724
|
+
class TotalPriceFragment(BaseModel):
|
|
725
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
726
|
+
total: "TotalPriceFragmentTotal"
|
|
727
|
+
|
|
728
|
+
|
|
729
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
730
|
+
amount: float
|
|
731
|
+
currency: Currency
|
|
732
|
+
|
|
733
|
+
|
|
734
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
735
|
+
amount: float
|
|
736
|
+
currency: Currency
|
|
831
737
|
|
|
832
738
|
|
|
833
739
|
class SubscriptionFragment(BaseModel):
|
|
@@ -881,62 +787,156 @@ class SubscriptionFragment(BaseModel):
|
|
|
881
787
|
)
|
|
882
788
|
|
|
883
789
|
|
|
884
|
-
class SubscriptionFragmentPayingCustomer(SlimCustomerFragment):
|
|
885
|
-
pass
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
class SubscriptionFragmentLatestInvoice(SubscriptionInvoiceFragment):
|
|
889
|
-
pass
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
class SubscriptionFragmentResource(CustomerResourceFragment):
|
|
893
|
-
pass
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
class SubscriptionFragmentExperimentInfo(BaseModel):
|
|
897
|
-
name: str
|
|
898
|
-
group_type: experimentGroupType = Field(alias="groupType")
|
|
899
|
-
group_name: str = Field(alias="groupName")
|
|
900
|
-
id: str
|
|
901
|
-
|
|
902
|
-
|
|
903
|
-
class SubscriptionFragmentPrices(BaseModel):
|
|
904
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
905
|
-
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
909
|
-
pass
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
913
|
-
pass
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
class SubscriptionFragmentPlan(PlanFragment):
|
|
917
|
-
pass
|
|
918
|
-
|
|
919
|
-
|
|
920
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
921
|
-
id: Any
|
|
922
|
-
quantity: float
|
|
923
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
790
|
+
class SubscriptionFragmentPayingCustomer(SlimCustomerFragment):
|
|
791
|
+
pass
|
|
792
|
+
|
|
793
|
+
|
|
794
|
+
class SubscriptionFragmentLatestInvoice(SubscriptionInvoiceFragment):
|
|
795
|
+
pass
|
|
796
|
+
|
|
797
|
+
|
|
798
|
+
class SubscriptionFragmentResource(CustomerResourceFragment):
|
|
799
|
+
pass
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
class SubscriptionFragmentExperimentInfo(BaseModel):
|
|
803
|
+
name: str
|
|
804
|
+
group_type: experimentGroupType = Field(alias="groupType")
|
|
805
|
+
group_name: str = Field(alias="groupName")
|
|
806
|
+
id: str
|
|
807
|
+
|
|
808
|
+
|
|
809
|
+
class SubscriptionFragmentPrices(BaseModel):
|
|
810
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
811
|
+
price: Optional["SubscriptionFragmentPricesPrice"] = Field(default=None)
|
|
812
|
+
|
|
813
|
+
|
|
814
|
+
class SubscriptionFragmentPricesPrice(PriceFragment):
|
|
815
|
+
pass
|
|
816
|
+
|
|
817
|
+
|
|
818
|
+
class SubscriptionFragmentTotalPrice(TotalPriceFragment):
|
|
819
|
+
pass
|
|
820
|
+
|
|
821
|
+
|
|
822
|
+
class SubscriptionFragmentPlan(PlanFragment):
|
|
823
|
+
pass
|
|
824
|
+
|
|
825
|
+
|
|
826
|
+
class SubscriptionFragmentAddons(BaseModel):
|
|
827
|
+
id: Any
|
|
828
|
+
quantity: float
|
|
829
|
+
addon: "SubscriptionFragmentAddonsAddon"
|
|
830
|
+
|
|
831
|
+
|
|
832
|
+
class SubscriptionFragmentAddonsAddon(AddonFragment):
|
|
833
|
+
pass
|
|
834
|
+
|
|
835
|
+
|
|
836
|
+
class SubscriptionFragmentScheduledUpdates(SubscriptionScheduledUpdateData):
|
|
837
|
+
pass
|
|
838
|
+
|
|
839
|
+
|
|
840
|
+
class SubscriptionFragmentFutureUpdates(SubscriptionFutureUpdateData):
|
|
841
|
+
pass
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragment):
|
|
845
|
+
pass
|
|
846
|
+
|
|
847
|
+
|
|
848
|
+
class FeatureFragment(BaseModel):
|
|
849
|
+
typename__: str = Field(alias="__typename")
|
|
850
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
851
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
852
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
853
|
+
feature_units_plural: Optional[str] = Field(
|
|
854
|
+
alias="featureUnitsPlural", default=None
|
|
855
|
+
)
|
|
856
|
+
description: Optional[str] = Field(default=None)
|
|
857
|
+
display_name: str = Field(alias="displayName")
|
|
858
|
+
ref_id: str = Field(alias="refId")
|
|
859
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
860
|
+
alias="unitTransformation", default=None
|
|
861
|
+
)
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
865
|
+
divide: float
|
|
866
|
+
round: UnitTransformationRound
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
class EntitlementFragment(BaseModel):
|
|
870
|
+
typename__: str = Field(alias="__typename")
|
|
871
|
+
is_granted: bool = Field(alias="isGranted")
|
|
872
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
873
|
+
alias="accessDeniedReason", default=None
|
|
874
|
+
)
|
|
875
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
876
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
877
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
878
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
879
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
880
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
881
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
882
|
+
requested_values: Optional[List[str]] = Field(alias="requestedValues", default=None)
|
|
883
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
884
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
885
|
+
alias="entitlementUpdatedAt", default=None
|
|
886
|
+
)
|
|
887
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
888
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
889
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
890
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
891
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
892
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
893
|
+
alias="resetPeriod", default=None
|
|
894
|
+
)
|
|
895
|
+
reset_period_configuration: Optional[
|
|
896
|
+
Annotated[
|
|
897
|
+
Union[
|
|
898
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
899
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
900
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
901
|
+
],
|
|
902
|
+
Field(discriminator="typename__"),
|
|
903
|
+
]
|
|
904
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
905
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
906
|
+
credit_rate: Optional["EntitlementFragmentCreditRate"] = Field(
|
|
907
|
+
alias="creditRate", default=None
|
|
908
|
+
)
|
|
909
|
+
valid_until: Optional[float] = Field(alias="validUntil", default=None)
|
|
910
|
+
|
|
911
|
+
|
|
912
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
913
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
914
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
915
|
+
alias="monthlyAccordingTo", default=None
|
|
916
|
+
)
|
|
924
917
|
|
|
925
918
|
|
|
926
|
-
class
|
|
927
|
-
|
|
919
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
920
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
921
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
922
|
+
alias="weeklyAccordingTo", default=None
|
|
923
|
+
)
|
|
928
924
|
|
|
929
925
|
|
|
930
|
-
class
|
|
931
|
-
|
|
926
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
927
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
928
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
929
|
+
alias="yearlyAccordingTo", default=None
|
|
930
|
+
)
|
|
932
931
|
|
|
933
932
|
|
|
934
|
-
class
|
|
933
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
935
934
|
pass
|
|
936
935
|
|
|
937
936
|
|
|
938
|
-
class
|
|
939
|
-
|
|
937
|
+
class EntitlementFragmentCreditRate(BaseModel):
|
|
938
|
+
amount: float
|
|
939
|
+
currency_id: str = Field(alias="currencyId")
|
|
940
940
|
|
|
941
941
|
|
|
942
942
|
class ApplySubscriptionFragment(BaseModel):
|
|
@@ -1016,14 +1016,33 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1016
1016
|
)
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
-
class
|
|
1020
|
-
|
|
1021
|
-
|
|
1022
|
-
|
|
1019
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1020
|
+
status: PromotionalEntitlementStatus
|
|
1021
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1022
|
+
feature_id: Any = Field(alias="featureId")
|
|
1023
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1024
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1025
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1026
|
+
alias="resetPeriod", default=None
|
|
1027
|
+
)
|
|
1028
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1029
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1030
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1023
1031
|
|
|
1024
1032
|
|
|
1025
|
-
class
|
|
1026
|
-
|
|
1033
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1034
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1035
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1036
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1037
|
+
feature_units_plural: Optional[str] = Field(
|
|
1038
|
+
alias="featureUnitsPlural", default=None
|
|
1039
|
+
)
|
|
1040
|
+
display_name: str = Field(alias="displayName")
|
|
1041
|
+
description: Optional[str] = Field(default=None)
|
|
1042
|
+
ref_id: str = Field(alias="refId")
|
|
1043
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1044
|
+
alias="additionalMetaData", default=None
|
|
1045
|
+
)
|
|
1027
1046
|
|
|
1028
1047
|
|
|
1029
1048
|
class CouponFragment(BaseModel):
|
|
@@ -1060,35 +1079,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1060
1079
|
status: SyncStatus
|
|
1061
1080
|
|
|
1062
1081
|
|
|
1063
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1064
|
-
status: PromotionalEntitlementStatus
|
|
1065
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1066
|
-
feature_id: Any = Field(alias="featureId")
|
|
1067
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1068
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1069
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1070
|
-
alias="resetPeriod", default=None
|
|
1071
|
-
)
|
|
1072
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1073
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1074
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1078
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1079
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1080
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1081
|
-
feature_units_plural: Optional[str] = Field(
|
|
1082
|
-
alias="featureUnitsPlural", default=None
|
|
1083
|
-
)
|
|
1084
|
-
display_name: str = Field(alias="displayName")
|
|
1085
|
-
description: Optional[str] = Field(default=None)
|
|
1086
|
-
ref_id: str = Field(alias="refId")
|
|
1087
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1088
|
-
alias="additionalMetaData", default=None
|
|
1089
|
-
)
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
1082
|
class CustomerFragment(SlimCustomerFragment):
|
|
1093
1083
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1094
1084
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1147,6 +1137,16 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1147
1137
|
pass
|
|
1148
1138
|
|
|
1149
1139
|
|
|
1140
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1141
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1142
|
+
|
|
1143
|
+
|
|
1144
|
+
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1145
|
+
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1146
|
+
setup_secret: str = Field(alias="setupSecret")
|
|
1147
|
+
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1148
|
+
|
|
1149
|
+
|
|
1150
1150
|
class CheckoutStateFragment(BaseModel):
|
|
1151
1151
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1152
1152
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1445,13 +1445,6 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1445
1445
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1446
1446
|
|
|
1447
1447
|
|
|
1448
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1449
|
-
addon_id: str = Field(alias="addonId")
|
|
1450
|
-
description: Optional[str] = Field(default=None)
|
|
1451
|
-
display_name: str = Field(alias="displayName")
|
|
1452
|
-
quantity: int
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
1448
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1456
1449
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1457
1450
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1656,6 +1649,13 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1656
1649
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1657
1650
|
|
|
1658
1651
|
|
|
1652
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1653
|
+
addon_id: str = Field(alias="addonId")
|
|
1654
|
+
description: Optional[str] = Field(default=None)
|
|
1655
|
+
display_name: str = Field(alias="displayName")
|
|
1656
|
+
quantity: int
|
|
1657
|
+
|
|
1658
|
+
|
|
1659
1659
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1660
1660
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1661
1661
|
plan_id: str = Field(alias="planId")
|
|
@@ -1987,41 +1987,6 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1987
1987
|
description: Optional[str] = Field(default=None)
|
|
1988
1988
|
|
|
1989
1989
|
|
|
1990
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1991
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1992
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1993
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1994
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1995
|
-
alias="resetPeriod", default=None
|
|
1996
|
-
)
|
|
1997
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1998
|
-
alias="hiddenFromWidgets", default=None
|
|
1999
|
-
)
|
|
2000
|
-
display_name_override: Optional[str] = Field(
|
|
2001
|
-
alias="displayNameOverride", default=None
|
|
2002
|
-
)
|
|
2003
|
-
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2004
|
-
is_granted: bool = Field(alias="isGranted")
|
|
2005
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2006
|
-
default=None
|
|
2007
|
-
)
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2011
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
2012
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2013
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2014
|
-
feature_units_plural: Optional[str] = Field(
|
|
2015
|
-
alias="featureUnitsPlural", default=None
|
|
2016
|
-
)
|
|
2017
|
-
display_name: str = Field(alias="displayName")
|
|
2018
|
-
description: Optional[str] = Field(default=None)
|
|
2019
|
-
ref_id: str = Field(alias="refId")
|
|
2020
|
-
additional_meta_data: Optional[Any] = Field(
|
|
2021
|
-
alias="additionalMetaData", default=None
|
|
2022
|
-
)
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
1990
|
class MockPaywallPriceFragment(BaseModel):
|
|
2026
1991
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
2027
1992
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -2064,6 +2029,41 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
2064
2029
|
display_name: str = Field(alias="displayName")
|
|
2065
2030
|
|
|
2066
2031
|
|
|
2032
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
2033
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
2034
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
2035
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
2036
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
2037
|
+
alias="resetPeriod", default=None
|
|
2038
|
+
)
|
|
2039
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
2040
|
+
alias="hiddenFromWidgets", default=None
|
|
2041
|
+
)
|
|
2042
|
+
display_name_override: Optional[str] = Field(
|
|
2043
|
+
alias="displayNameOverride", default=None
|
|
2044
|
+
)
|
|
2045
|
+
enum_values: Optional[List[str]] = Field(alias="enumValues", default=None)
|
|
2046
|
+
is_granted: bool = Field(alias="isGranted")
|
|
2047
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
2048
|
+
default=None
|
|
2049
|
+
)
|
|
2050
|
+
|
|
2051
|
+
|
|
2052
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
2053
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
2054
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
2055
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
2056
|
+
feature_units_plural: Optional[str] = Field(
|
|
2057
|
+
alias="featureUnitsPlural", default=None
|
|
2058
|
+
)
|
|
2059
|
+
display_name: str = Field(alias="displayName")
|
|
2060
|
+
description: Optional[str] = Field(default=None)
|
|
2061
|
+
ref_id: str = Field(alias="refId")
|
|
2062
|
+
additional_meta_data: Optional[Any] = Field(
|
|
2063
|
+
alias="additionalMetaData", default=None
|
|
2064
|
+
)
|
|
2065
|
+
|
|
2066
|
+
|
|
2067
2067
|
class MockPaywallAddonFragment(BaseModel):
|
|
2068
2068
|
ref_id: str = Field(alias="refId")
|
|
2069
2069
|
display_name: str = Field(alias="displayName")
|
|
@@ -3041,33 +3041,33 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
3041
3041
|
|
|
3042
3042
|
|
|
3043
3043
|
AddonDependencyFragment.model_rebuild()
|
|
3044
|
-
PackageEntitlementFragment.model_rebuild()
|
|
3045
3044
|
PriceTierFragment.model_rebuild()
|
|
3046
3045
|
OveragePriceFragment.model_rebuild()
|
|
3046
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3047
3047
|
PriceFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
|
-
|
|
3050
|
-
EntitlementFragment.model_rebuild()
|
|
3051
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
3052
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3049
|
+
SlimCustomerFragment.model_rebuild()
|
|
3053
3050
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
3054
|
-
|
|
3055
|
-
|
|
3056
|
-
|
|
3051
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3052
|
+
CustomerResourceFragment.model_rebuild()
|
|
3053
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
3057
3054
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3055
|
+
ProductFragment.model_rebuild()
|
|
3058
3056
|
PlanFragment.model_rebuild()
|
|
3059
|
-
|
|
3060
|
-
|
|
3057
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3058
|
+
TotalPriceFragment.model_rebuild()
|
|
3061
3059
|
SubscriptionFragment.model_rebuild()
|
|
3060
|
+
FeatureFragment.model_rebuild()
|
|
3061
|
+
EntitlementFragment.model_rebuild()
|
|
3062
3062
|
ApplySubscriptionFragment.model_rebuild()
|
|
3063
3063
|
FontVariantFragment.model_rebuild()
|
|
3064
3064
|
TypographyConfigurationFragment.model_rebuild()
|
|
3065
3065
|
CheckoutConfigurationFragment.model_rebuild()
|
|
3066
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3067
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3068
|
-
CouponFragment.model_rebuild()
|
|
3069
3066
|
PromotionalEntitlementFragment.model_rebuild()
|
|
3067
|
+
CouponFragment.model_rebuild()
|
|
3070
3068
|
CustomerFragment.model_rebuild()
|
|
3069
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3070
|
+
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3071
3071
|
CheckoutStateFragment.model_rebuild()
|
|
3072
3072
|
CreditBalanceFragment.model_rebuild()
|
|
3073
3073
|
CreditBalanceUpdatedPayload.model_rebuild()
|
|
@@ -3080,9 +3080,9 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
3080
3080
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
3082
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3084
3083
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3085
3084
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3085
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3086
3086
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -3093,8 +3093,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
3093
3093
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
3094
3094
|
LayoutConfigurationFragment.model_rebuild()
|
|
3095
3095
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
3096
|
-
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3097
3096
|
MockPaywallPriceFragment.model_rebuild()
|
|
3097
|
+
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
3098
3098
|
MockPaywallAddonFragment.model_rebuild()
|
|
3099
3099
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3100
3100
|
MockPaywallPlanFragment.model_rebuild()
|