stigg-api-client-v2 3.115.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 +3 -0
- stigg/generated/fragments.py +519 -519
- stigg/generated/get_sdk_configuration.py +1 -0
- {stigg_api_client_v2-3.115.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.115.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/RECORD +9 -9
- {stigg_api_client_v2-3.115.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.115.0.dist-info → stigg_api_client_v2-3.116.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -62,6 +62,58 @@ class AddonDependencyFragment(BaseModel):
|
|
|
62
62
|
description: Optional[str] = Field(default=None)
|
|
63
63
|
|
|
64
64
|
|
|
65
|
+
class PriceTierFragment(BaseModel):
|
|
66
|
+
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
67
|
+
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
68
|
+
alias="unitPrice", default=None
|
|
69
|
+
)
|
|
70
|
+
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
71
|
+
alias="flatPrice", default=None
|
|
72
|
+
)
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
class PriceTierFragmentUnitPrice(BaseModel):
|
|
76
|
+
amount: float
|
|
77
|
+
currency: Currency
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class PriceTierFragmentFlatPrice(BaseModel):
|
|
81
|
+
amount: float
|
|
82
|
+
currency: Currency
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
class OveragePriceFragment(BaseModel):
|
|
86
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
87
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
88
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
89
|
+
billing_country_code: Optional[str] = Field(
|
|
90
|
+
alias="billingCountryCode", default=None
|
|
91
|
+
)
|
|
92
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
93
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
94
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
95
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
99
|
+
amount: float
|
|
100
|
+
currency: Currency
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
104
|
+
pass
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
108
|
+
ref_id: str = Field(alias="refId")
|
|
109
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
110
|
+
feature_units_plural: Optional[str] = Field(
|
|
111
|
+
alias="featureUnitsPlural", default=None
|
|
112
|
+
)
|
|
113
|
+
display_name: str = Field(alias="displayName")
|
|
114
|
+
description: Optional[str] = Field(default=None)
|
|
115
|
+
|
|
116
|
+
|
|
65
117
|
class PackageEntitlementFragment(BaseModel):
|
|
66
118
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
67
119
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -97,26 +149,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
97
149
|
)
|
|
98
150
|
|
|
99
151
|
|
|
100
|
-
class PriceTierFragment(BaseModel):
|
|
101
|
-
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
102
|
-
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
103
|
-
alias="unitPrice", default=None
|
|
104
|
-
)
|
|
105
|
-
flat_price: Optional["PriceTierFragmentFlatPrice"] = Field(
|
|
106
|
-
alias="flatPrice", default=None
|
|
107
|
-
)
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
class PriceTierFragmentUnitPrice(BaseModel):
|
|
111
|
-
amount: float
|
|
112
|
-
currency: Currency
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
class PriceTierFragmentFlatPrice(BaseModel):
|
|
116
|
-
amount: float
|
|
117
|
-
currency: Currency
|
|
118
|
-
|
|
119
|
-
|
|
120
152
|
class PriceFragment(BaseModel):
|
|
121
153
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
122
154
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -162,38 +194,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
162
194
|
description: Optional[str] = Field(default=None)
|
|
163
195
|
|
|
164
196
|
|
|
165
|
-
class OveragePriceFragment(BaseModel):
|
|
166
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
167
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
168
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
169
|
-
billing_country_code: Optional[str] = Field(
|
|
170
|
-
alias="billingCountryCode", default=None
|
|
171
|
-
)
|
|
172
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
173
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
174
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
175
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
179
|
-
amount: float
|
|
180
|
-
currency: Currency
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
184
|
-
pass
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
188
|
-
ref_id: str = Field(alias="refId")
|
|
189
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
190
|
-
feature_units_plural: Optional[str] = Field(
|
|
191
|
-
alias="featureUnitsPlural", default=None
|
|
192
|
-
)
|
|
193
|
-
display_name: str = Field(alias="displayName")
|
|
194
|
-
description: Optional[str] = Field(default=None)
|
|
195
|
-
|
|
196
|
-
|
|
197
197
|
class AddonFragment(BaseModel):
|
|
198
198
|
id: Any
|
|
199
199
|
ref_id: str = Field(alias="refId")
|
|
@@ -232,265 +232,175 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
232
232
|
pass
|
|
233
233
|
|
|
234
234
|
|
|
235
|
-
class
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
alias="featureUnitsPlural", default=None
|
|
242
|
-
)
|
|
243
|
-
description: Optional[str] = Field(default=None)
|
|
244
|
-
display_name: str = Field(alias="displayName")
|
|
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)
|
|
240
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
245
241
|
ref_id: str = Field(alias="refId")
|
|
246
|
-
|
|
247
|
-
|
|
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
|
|
246
|
+
)
|
|
247
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
248
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
248
249
|
)
|
|
249
250
|
|
|
250
251
|
|
|
251
|
-
class
|
|
252
|
-
|
|
253
|
-
|
|
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
|
|
252
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
253
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
254
|
+
alias="subscriptionScheduleType"
|
|
273
255
|
)
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
279
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
280
|
-
alias="resetPeriod", default=None
|
|
256
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
257
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
258
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
259
|
+
alias="targetPackage", default=None
|
|
281
260
|
)
|
|
282
|
-
|
|
261
|
+
schedule_variables: Optional[
|
|
283
262
|
Annotated[
|
|
284
263
|
Union[
|
|
285
|
-
"
|
|
286
|
-
"
|
|
287
|
-
"
|
|
264
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
265
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
266
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
267
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
268
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
269
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
270
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
271
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
288
272
|
],
|
|
289
273
|
Field(discriminator="typename__"),
|
|
290
274
|
]
|
|
291
|
-
] = Field(alias="
|
|
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
|
-
)
|
|
275
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
304
276
|
|
|
305
277
|
|
|
306
|
-
class
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
)
|
|
278
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
279
|
+
id: Any
|
|
280
|
+
ref_id: str = Field(alias="refId")
|
|
281
|
+
display_name: str = Field(alias="displayName")
|
|
311
282
|
|
|
312
283
|
|
|
313
|
-
class
|
|
314
|
-
typename__: Literal["
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
)
|
|
284
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
285
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
286
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
287
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
318
288
|
|
|
319
289
|
|
|
320
|
-
class
|
|
321
|
-
|
|
290
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
291
|
+
BaseModel
|
|
292
|
+
):
|
|
293
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
294
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
295
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
322
296
|
|
|
323
297
|
|
|
324
|
-
class
|
|
325
|
-
|
|
326
|
-
|
|
298
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
299
|
+
BaseModel
|
|
300
|
+
):
|
|
301
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
302
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
327
303
|
|
|
328
304
|
|
|
329
|
-
class
|
|
330
|
-
|
|
331
|
-
status: SubscriptionInvoiceStatus
|
|
332
|
-
created_at: Any = Field(alias="createdAt")
|
|
333
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
334
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
335
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
336
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
337
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
338
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
339
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
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
|
|
347
|
-
)
|
|
348
|
-
total: Optional[float] = Field(default=None)
|
|
349
|
-
total_excluding_tax: Optional[float] = Field(
|
|
350
|
-
alias="totalExcludingTax", default=None
|
|
351
|
-
)
|
|
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)
|
|
305
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
306
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
355
307
|
|
|
356
308
|
|
|
357
|
-
class
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
)
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
379
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
380
|
-
display_name: str = Field(alias="displayName")
|
|
381
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
382
|
-
default=None
|
|
383
|
-
)
|
|
384
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
388
|
-
pass
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
392
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
393
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
class PlanFragment(BaseModel):
|
|
397
|
-
id: Any
|
|
398
|
-
ref_id: str = Field(alias="refId")
|
|
399
|
-
display_name: str = Field(alias="displayName")
|
|
400
|
-
description: Optional[str] = Field(default=None)
|
|
401
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
402
|
-
version_number: int = Field(alias="versionNumber")
|
|
403
|
-
additional_meta_data: Optional[Any] = Field(
|
|
404
|
-
alias="additionalMetaData", default=None
|
|
405
|
-
)
|
|
406
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
407
|
-
alias="hiddenFromWidgets", default=None
|
|
408
|
-
)
|
|
409
|
-
product: "PlanFragmentProduct"
|
|
410
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
411
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
412
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
413
|
-
alias="inheritedEntitlements", default=None
|
|
414
|
-
)
|
|
415
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
416
|
-
alias="compatibleAddons", default=None
|
|
417
|
-
)
|
|
418
|
-
compatible_package_groups: Optional[
|
|
419
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
420
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
421
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
422
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
423
|
-
alias="overagePrices", default=None
|
|
424
|
-
)
|
|
425
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
426
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
427
|
-
alias="defaultTrialConfig", default=None
|
|
428
|
-
)
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
class PlanFragmentProduct(ProductFragment):
|
|
432
|
-
pass
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
436
|
-
ref_id: str = Field(alias="refId")
|
|
437
|
-
display_name: str = Field(alias="displayName")
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
441
|
-
pass
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
445
|
-
pass
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
449
|
-
pass
|
|
309
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
310
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
311
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
312
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
313
|
+
billable_features: Optional[
|
|
314
|
+
List[
|
|
315
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
316
|
+
]
|
|
317
|
+
] = Field(alias="billableFeatures", default=None)
|
|
318
|
+
addons: Optional[
|
|
319
|
+
List[
|
|
320
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
321
|
+
]
|
|
322
|
+
] = Field(default=None)
|
|
323
|
+
price_overrides: Optional[
|
|
324
|
+
List[
|
|
325
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
326
|
+
]
|
|
327
|
+
] = Field(alias="priceOverrides", default=None)
|
|
450
328
|
|
|
451
329
|
|
|
452
|
-
class
|
|
453
|
-
|
|
330
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
331
|
+
BaseModel
|
|
332
|
+
):
|
|
333
|
+
feature_id: str = Field(alias="featureId")
|
|
334
|
+
quantity: float
|
|
454
335
|
|
|
455
336
|
|
|
456
|
-
class
|
|
457
|
-
|
|
337
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
338
|
+
BaseModel
|
|
339
|
+
):
|
|
340
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
341
|
+
quantity: float
|
|
458
342
|
|
|
459
343
|
|
|
460
|
-
class
|
|
461
|
-
|
|
344
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
345
|
+
BaseModel
|
|
346
|
+
):
|
|
347
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
348
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
349
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
462
350
|
|
|
463
351
|
|
|
464
|
-
class
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
352
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
353
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
354
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
355
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
356
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
357
|
+
billable_features: Optional[
|
|
358
|
+
List[
|
|
359
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
360
|
+
]
|
|
361
|
+
] = Field(alias="billableFeatures", default=None)
|
|
362
|
+
addons: Optional[
|
|
363
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
364
|
+
] = Field(default=None)
|
|
365
|
+
price_overrides: Optional[
|
|
366
|
+
List[
|
|
367
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
368
|
+
]
|
|
369
|
+
] = Field(alias="priceOverrides", default=None)
|
|
471
370
|
|
|
472
371
|
|
|
473
|
-
class
|
|
474
|
-
|
|
372
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
373
|
+
BaseModel
|
|
374
|
+
):
|
|
375
|
+
feature_id: str = Field(alias="featureId")
|
|
376
|
+
quantity: float
|
|
475
377
|
|
|
476
378
|
|
|
477
|
-
class
|
|
478
|
-
|
|
479
|
-
|
|
379
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
380
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
381
|
+
quantity: float
|
|
480
382
|
|
|
481
383
|
|
|
482
|
-
class
|
|
483
|
-
|
|
484
|
-
|
|
384
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
385
|
+
BaseModel
|
|
386
|
+
):
|
|
387
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
388
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
389
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
485
390
|
|
|
486
391
|
|
|
487
|
-
class
|
|
488
|
-
|
|
489
|
-
|
|
392
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
393
|
+
BaseModel
|
|
394
|
+
):
|
|
395
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
396
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
397
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
490
398
|
|
|
491
399
|
|
|
492
|
-
class
|
|
493
|
-
|
|
400
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
401
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
402
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
403
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
494
404
|
|
|
495
405
|
|
|
496
406
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -655,179 +565,175 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
655
565
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
656
566
|
|
|
657
567
|
|
|
658
|
-
class
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
568
|
+
class CustomerResourceFragment(BaseModel):
|
|
569
|
+
resource_id: str = Field(alias="resourceId")
|
|
570
|
+
|
|
571
|
+
|
|
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)
|
|
663
577
|
updated_at: Any = Field(alias="updatedAt")
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
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
|
|
669
585
|
)
|
|
670
|
-
|
|
671
|
-
|
|
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
|
|
672
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)
|
|
673
598
|
|
|
674
599
|
|
|
675
|
-
class
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
681
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
682
|
-
alias="targetPackage", default=None
|
|
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
|
|
683
605
|
)
|
|
684
|
-
|
|
685
|
-
Annotated[
|
|
686
|
-
Union[
|
|
687
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
688
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
689
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
690
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
691
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
692
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
693
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
694
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
695
|
-
],
|
|
696
|
-
Field(discriminator="typename__"),
|
|
697
|
-
]
|
|
698
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
606
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
699
607
|
|
|
700
608
|
|
|
701
|
-
class
|
|
702
|
-
|
|
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)
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class ProductFragment(BaseModel):
|
|
619
|
+
ref_id: str = Field(alias="refId")
|
|
620
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
621
|
+
description: Optional[str] = Field(default=None)
|
|
622
|
+
additional_meta_data: Optional[Any] = Field(
|
|
623
|
+
alias="additionalMetaData", default=None
|
|
624
|
+
)
|
|
625
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
629
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
630
|
+
alias="downgradePlan", default=None
|
|
631
|
+
)
|
|
632
|
+
|
|
633
|
+
|
|
634
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
703
635
|
ref_id: str = Field(alias="refId")
|
|
704
636
|
display_name: str = Field(alias="displayName")
|
|
705
637
|
|
|
706
638
|
|
|
707
|
-
class
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
639
|
+
class PlanFragment(BaseModel):
|
|
640
|
+
id: Any
|
|
641
|
+
ref_id: str = Field(alias="refId")
|
|
642
|
+
display_name: str = Field(alias="displayName")
|
|
643
|
+
description: Optional[str] = Field(default=None)
|
|
644
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
645
|
+
version_number: int = Field(alias="versionNumber")
|
|
646
|
+
additional_meta_data: Optional[Any] = Field(
|
|
647
|
+
alias="additionalMetaData", default=None
|
|
648
|
+
)
|
|
649
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
650
|
+
alias="hiddenFromWidgets", default=None
|
|
651
|
+
)
|
|
652
|
+
product: "PlanFragmentProduct"
|
|
653
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
654
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
655
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
656
|
+
alias="inheritedEntitlements", default=None
|
|
657
|
+
)
|
|
658
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
659
|
+
alias="compatibleAddons", default=None
|
|
660
|
+
)
|
|
661
|
+
compatible_package_groups: Optional[
|
|
662
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
663
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
664
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
665
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
666
|
+
alias="overagePrices", default=None
|
|
667
|
+
)
|
|
668
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
669
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
670
|
+
alias="defaultTrialConfig", default=None
|
|
671
|
+
)
|
|
711
672
|
|
|
712
673
|
|
|
713
|
-
class
|
|
714
|
-
|
|
715
|
-
):
|
|
716
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
717
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
718
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
674
|
+
class PlanFragmentProduct(ProductFragment):
|
|
675
|
+
pass
|
|
719
676
|
|
|
720
677
|
|
|
721
|
-
class
|
|
722
|
-
|
|
723
|
-
)
|
|
724
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
725
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
678
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
679
|
+
ref_id: str = Field(alias="refId")
|
|
680
|
+
display_name: str = Field(alias="displayName")
|
|
726
681
|
|
|
727
682
|
|
|
728
|
-
class
|
|
729
|
-
|
|
683
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
684
|
+
pass
|
|
730
685
|
|
|
731
686
|
|
|
732
|
-
class
|
|
733
|
-
|
|
734
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
735
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
736
|
-
billable_features: Optional[
|
|
737
|
-
List[
|
|
738
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
739
|
-
]
|
|
740
|
-
] = Field(alias="billableFeatures", default=None)
|
|
741
|
-
addons: Optional[
|
|
742
|
-
List[
|
|
743
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
744
|
-
]
|
|
745
|
-
] = Field(default=None)
|
|
746
|
-
price_overrides: Optional[
|
|
747
|
-
List[
|
|
748
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
749
|
-
]
|
|
750
|
-
] = Field(alias="priceOverrides", default=None)
|
|
687
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
688
|
+
pass
|
|
751
689
|
|
|
752
690
|
|
|
753
|
-
class
|
|
754
|
-
|
|
755
|
-
):
|
|
756
|
-
feature_id: str = Field(alias="featureId")
|
|
757
|
-
quantity: float
|
|
691
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
692
|
+
pass
|
|
758
693
|
|
|
759
694
|
|
|
760
|
-
class
|
|
761
|
-
|
|
762
|
-
):
|
|
763
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
764
|
-
quantity: float
|
|
695
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
696
|
+
pass
|
|
765
697
|
|
|
766
698
|
|
|
767
|
-
class
|
|
768
|
-
|
|
769
|
-
):
|
|
770
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
771
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
772
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
699
|
+
class PlanFragmentPrices(PriceFragment):
|
|
700
|
+
pass
|
|
773
701
|
|
|
774
702
|
|
|
775
|
-
class
|
|
776
|
-
|
|
777
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
778
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
779
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
780
|
-
billable_features: Optional[
|
|
781
|
-
List[
|
|
782
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
783
|
-
]
|
|
784
|
-
] = Field(alias="billableFeatures", default=None)
|
|
785
|
-
addons: Optional[
|
|
786
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
787
|
-
] = Field(default=None)
|
|
788
|
-
price_overrides: Optional[
|
|
789
|
-
List[
|
|
790
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
791
|
-
]
|
|
792
|
-
] = Field(alias="priceOverrides", default=None)
|
|
703
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
704
|
+
pass
|
|
793
705
|
|
|
794
706
|
|
|
795
|
-
class
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
707
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
708
|
+
duration: float
|
|
709
|
+
units: TrialPeriodUnits
|
|
710
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
711
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
712
|
+
alias="trialEndBehavior", default=None
|
|
713
|
+
)
|
|
800
714
|
|
|
801
715
|
|
|
802
|
-
class
|
|
803
|
-
|
|
804
|
-
quantity: float
|
|
716
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
717
|
+
limit: float
|
|
805
718
|
|
|
806
719
|
|
|
807
|
-
class
|
|
808
|
-
|
|
809
|
-
):
|
|
810
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
811
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
812
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
720
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
721
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
813
722
|
|
|
814
723
|
|
|
815
|
-
class
|
|
816
|
-
|
|
817
|
-
|
|
818
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
819
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
820
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
724
|
+
class TotalPriceFragment(BaseModel):
|
|
725
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
726
|
+
total: "TotalPriceFragmentTotal"
|
|
821
727
|
|
|
822
728
|
|
|
823
|
-
class
|
|
824
|
-
|
|
825
|
-
|
|
826
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
729
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
730
|
+
amount: float
|
|
731
|
+
currency: Currency
|
|
827
732
|
|
|
828
733
|
|
|
829
|
-
class
|
|
830
|
-
|
|
734
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
735
|
+
amount: float
|
|
736
|
+
currency: Currency
|
|
831
737
|
|
|
832
738
|
|
|
833
739
|
class SubscriptionFragment(BaseModel):
|
|
@@ -917,26 +823,120 @@ class SubscriptionFragmentPlan(PlanFragment):
|
|
|
917
823
|
pass
|
|
918
824
|
|
|
919
825
|
|
|
920
|
-
class SubscriptionFragmentAddons(BaseModel):
|
|
921
|
-
id: Any
|
|
922
|
-
quantity: float
|
|
923
|
-
addon: "SubscriptionFragmentAddonsAddon"
|
|
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,16 +1016,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1016
1016
|
)
|
|
1017
1017
|
|
|
1018
1018
|
|
|
1019
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1020
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1021
|
-
|
|
1022
|
-
|
|
1023
|
-
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1024
|
-
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1025
|
-
setup_secret: str = Field(alias="setupSecret")
|
|
1026
|
-
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
1019
|
class PromotionalEntitlementFragment(BaseModel):
|
|
1030
1020
|
status: PromotionalEntitlementStatus
|
|
1031
1021
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
@@ -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")
|
|
@@ -1435,6 +1435,51 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1435
1435
|
pass
|
|
1436
1436
|
|
|
1437
1437
|
|
|
1438
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1439
|
+
display_name: str = Field(alias="displayName")
|
|
1440
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1441
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1442
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1443
|
+
period: PromotionalEntitlementPeriod
|
|
1444
|
+
start_date: Any = Field(alias="startDate")
|
|
1445
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1449
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1450
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1451
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1452
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1453
|
+
default=None
|
|
1454
|
+
)
|
|
1455
|
+
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1456
|
+
alias="creditRate", default=None
|
|
1457
|
+
)
|
|
1458
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1459
|
+
default=None
|
|
1460
|
+
)
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1464
|
+
amount: float
|
|
1465
|
+
currency: Currency
|
|
1466
|
+
|
|
1467
|
+
|
|
1468
|
+
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1469
|
+
amount: float
|
|
1470
|
+
currency_id: str = Field(alias="currencyId")
|
|
1471
|
+
|
|
1472
|
+
|
|
1473
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1474
|
+
id: Any
|
|
1475
|
+
ref_id: str = Field(alias="refId")
|
|
1476
|
+
display_name: str = Field(alias="displayName")
|
|
1477
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1478
|
+
feature_units_plural: Optional[str] = Field(
|
|
1479
|
+
alias="featureUnitsPlural", default=None
|
|
1480
|
+
)
|
|
1481
|
+
|
|
1482
|
+
|
|
1438
1483
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1439
1484
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1440
1485
|
alias="subscriptionScheduleType"
|
|
@@ -1604,41 +1649,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1604
1649
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1605
1650
|
|
|
1606
1651
|
|
|
1607
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1608
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1609
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1610
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1611
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1612
|
-
default=None
|
|
1613
|
-
)
|
|
1614
|
-
credit_rate: Optional["CustomerPortalSubscriptionPriceFragmentCreditRate"] = Field(
|
|
1615
|
-
alias="creditRate", default=None
|
|
1616
|
-
)
|
|
1617
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1618
|
-
default=None
|
|
1619
|
-
)
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1623
|
-
amount: float
|
|
1624
|
-
currency: Currency
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
class CustomerPortalSubscriptionPriceFragmentCreditRate(BaseModel):
|
|
1628
|
-
amount: float
|
|
1629
|
-
currency_id: str = Field(alias="currencyId")
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1633
|
-
id: Any
|
|
1634
|
-
ref_id: str = Field(alias="refId")
|
|
1635
|
-
display_name: str = Field(alias="displayName")
|
|
1636
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1637
|
-
feature_units_plural: Optional[str] = Field(
|
|
1638
|
-
alias="featureUnitsPlural", default=None
|
|
1639
|
-
)
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
1652
|
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1643
1653
|
addon_id: str = Field(alias="addonId")
|
|
1644
1654
|
description: Optional[str] = Field(default=None)
|
|
@@ -1750,16 +1760,6 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1750
1760
|
pass
|
|
1751
1761
|
|
|
1752
1762
|
|
|
1753
|
-
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1754
|
-
display_name: str = Field(alias="displayName")
|
|
1755
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1756
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1757
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1758
|
-
period: PromotionalEntitlementPeriod
|
|
1759
|
-
start_date: Any = Field(alias="startDate")
|
|
1760
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
1763
|
class CustomerPortalFragment(BaseModel):
|
|
1764
1764
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1765
1765
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -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
|
-
PriceFragment.model_rebuild()
|
|
3047
3045
|
OveragePriceFragment.model_rebuild()
|
|
3046
|
+
PackageEntitlementFragment.model_rebuild()
|
|
3047
|
+
PriceFragment.model_rebuild()
|
|
3048
3048
|
AddonFragment.model_rebuild()
|
|
3049
|
-
|
|
3050
|
-
|
|
3049
|
+
SlimCustomerFragment.model_rebuild()
|
|
3050
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
3051
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
3052
|
+
CustomerResourceFragment.model_rebuild()
|
|
3051
3053
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
3052
|
-
ProductFragment.model_rebuild()
|
|
3053
3054
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
3055
|
+
ProductFragment.model_rebuild()
|
|
3054
3056
|
PlanFragment.model_rebuild()
|
|
3055
|
-
TotalPriceFragment.model_rebuild()
|
|
3056
3057
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
3057
|
-
|
|
3058
|
-
SlimCustomerFragment.model_rebuild()
|
|
3059
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
3060
|
-
CustomerResourceFragment.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
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
3067
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
3068
3066
|
PromotionalEntitlementFragment.model_rebuild()
|
|
3069
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()
|
|
@@ -3079,11 +3079,11 @@ CreditsBalanceSummaryFragment.model_rebuild()
|
|
|
3079
3079
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
3080
3080
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
3081
3081
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
3082
|
-
|
|
3082
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3083
3083
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
3084
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
3084
3085
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
3085
3086
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
3086
|
-
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
3087
3087
|
CustomerPortalFragment.model_rebuild()
|
|
3088
3088
|
CustomerStatisticsFragment.model_rebuild()
|
|
3089
3089
|
CustomerWithSubscriptionsFragment.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()
|