stigg-api-client-v2 2.437.0__py3-none-any.whl → 2.438.2__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/fragments.py +282 -282
- {stigg_api_client_v2-2.437.0.dist-info → stigg_api_client_v2-2.438.2.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.437.0.dist-info → stigg_api_client_v2-2.438.2.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.437.0.dist-info → stigg_api_client_v2-2.438.2.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.437.0.dist-info → stigg_api_client_v2-2.438.2.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -116,6 +116,38 @@ class PriceFragmentFeature(BaseModel):
|
|
|
116
116
|
description: Optional[str] = Field(default=None)
|
|
117
117
|
|
|
118
118
|
|
|
119
|
+
class OveragePriceFragment(BaseModel):
|
|
120
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
121
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
122
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
123
|
+
billing_country_code: Optional[str] = Field(
|
|
124
|
+
alias="billingCountryCode", default=None
|
|
125
|
+
)
|
|
126
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
127
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
128
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
129
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
133
|
+
amount: float
|
|
134
|
+
currency: Currency
|
|
135
|
+
|
|
136
|
+
|
|
137
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
138
|
+
pass
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
142
|
+
ref_id: str = Field(alias="refId")
|
|
143
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
144
|
+
feature_units_plural: Optional[str] = Field(
|
|
145
|
+
alias="featureUnitsPlural", default=None
|
|
146
|
+
)
|
|
147
|
+
display_name: str = Field(alias="displayName")
|
|
148
|
+
description: Optional[str] = Field(default=None)
|
|
149
|
+
|
|
150
|
+
|
|
119
151
|
class PackageEntitlementFragment(BaseModel):
|
|
120
152
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
121
153
|
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
@@ -149,38 +181,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
149
181
|
)
|
|
150
182
|
|
|
151
183
|
|
|
152
|
-
class OveragePriceFragment(BaseModel):
|
|
153
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
155
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
156
|
-
billing_country_code: Optional[str] = Field(
|
|
157
|
-
alias="billingCountryCode", default=None
|
|
158
|
-
)
|
|
159
|
-
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
160
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
-
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
162
|
-
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
class OveragePriceFragmentPrice(BaseModel):
|
|
166
|
-
amount: float
|
|
167
|
-
currency: Currency
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
171
|
-
pass
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
class OveragePriceFragmentFeature(BaseModel):
|
|
175
|
-
ref_id: str = Field(alias="refId")
|
|
176
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
|
-
feature_units_plural: Optional[str] = Field(
|
|
178
|
-
alias="featureUnitsPlural", default=None
|
|
179
|
-
)
|
|
180
|
-
display_name: str = Field(alias="displayName")
|
|
181
|
-
description: Optional[str] = Field(default=None)
|
|
182
|
-
|
|
183
|
-
|
|
184
184
|
class AddonFragment(BaseModel):
|
|
185
185
|
id: str
|
|
186
186
|
ref_id: str = Field(alias="refId")
|
|
@@ -216,89 +216,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class FeatureFragment(BaseModel):
|
|
220
|
-
typename__: str = Field(alias="__typename")
|
|
221
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
222
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
223
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
224
|
-
feature_units_plural: Optional[str] = Field(
|
|
225
|
-
alias="featureUnitsPlural", default=None
|
|
226
|
-
)
|
|
227
|
-
description: Optional[str] = Field(default=None)
|
|
228
|
-
display_name: str = Field(alias="displayName")
|
|
229
|
-
ref_id: str = Field(alias="refId")
|
|
230
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
231
|
-
alias="unitTransformation", default=None
|
|
232
|
-
)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
236
|
-
divide: float
|
|
237
|
-
round: UnitTransformationRound
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
class EntitlementFragment(BaseModel):
|
|
241
|
-
typename__: str = Field(alias="__typename")
|
|
242
|
-
is_granted: bool = Field(alias="isGranted")
|
|
243
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
244
|
-
alias="accessDeniedReason", default=None
|
|
245
|
-
)
|
|
246
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
247
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
248
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
249
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
250
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
251
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
252
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
253
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
254
|
-
alias="entitlementUpdatedAt", default=None
|
|
255
|
-
)
|
|
256
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
257
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
258
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
259
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
260
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
261
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
262
|
-
alias="resetPeriod", default=None
|
|
263
|
-
)
|
|
264
|
-
reset_period_configuration: Optional[
|
|
265
|
-
Annotated[
|
|
266
|
-
Union[
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
269
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
270
|
-
],
|
|
271
|
-
Field(discriminator="typename__"),
|
|
272
|
-
]
|
|
273
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
274
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
278
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
279
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
-
alias="monthlyAccordingTo", default=None
|
|
281
|
-
)
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
285
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
286
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
287
|
-
alias="weeklyAccordingTo", default=None
|
|
288
|
-
)
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
292
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
-
alias="yearlyAccordingTo", default=None
|
|
295
|
-
)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
299
|
-
pass
|
|
300
|
-
|
|
301
|
-
|
|
302
219
|
class ProductFragment(BaseModel):
|
|
303
220
|
ref_id: str = Field(alias="refId")
|
|
304
221
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -419,6 +336,25 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
419
336
|
limit: float
|
|
420
337
|
|
|
421
338
|
|
|
339
|
+
class TotalPriceFragment(BaseModel):
|
|
340
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
341
|
+
total: "TotalPriceFragmentTotal"
|
|
342
|
+
|
|
343
|
+
|
|
344
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
345
|
+
amount: float
|
|
346
|
+
currency: Currency
|
|
347
|
+
|
|
348
|
+
|
|
349
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
350
|
+
amount: float
|
|
351
|
+
currency: Currency
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
355
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
356
|
+
|
|
357
|
+
|
|
422
358
|
class SubscriptionInvoiceFragment(BaseModel):
|
|
423
359
|
billing_id: str = Field(alias="billingId")
|
|
424
360
|
status: SubscriptionInvoiceStatus
|
|
@@ -446,45 +382,66 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
446
382
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
447
383
|
|
|
448
384
|
|
|
449
|
-
class
|
|
385
|
+
class CustomerResourceFragment(BaseModel):
|
|
386
|
+
resource_id: str = Field(alias="resourceId")
|
|
387
|
+
|
|
388
|
+
|
|
389
|
+
class SlimCustomerFragment(BaseModel):
|
|
390
|
+
id: str
|
|
391
|
+
name: Optional[str] = Field(default=None)
|
|
392
|
+
email: Optional[str] = Field(default=None)
|
|
393
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
394
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
395
|
+
ref_id: str = Field(alias="refId")
|
|
396
|
+
customer_id: str = Field(alias="customerId")
|
|
397
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
398
|
+
additional_meta_data: Optional[Any] = Field(
|
|
399
|
+
alias="additionalMetaData", default=None
|
|
400
|
+
)
|
|
401
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
402
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
403
|
+
)
|
|
404
|
+
|
|
405
|
+
|
|
406
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
450
407
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
451
408
|
alias="subscriptionScheduleType"
|
|
452
409
|
)
|
|
453
410
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
454
411
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
455
|
-
target_package: Optional["
|
|
412
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
456
413
|
alias="targetPackage", default=None
|
|
457
414
|
)
|
|
458
415
|
schedule_variables: Optional[
|
|
459
416
|
Annotated[
|
|
460
417
|
Union[
|
|
461
|
-
"
|
|
462
|
-
"
|
|
463
|
-
"
|
|
464
|
-
"
|
|
465
|
-
"
|
|
466
|
-
"
|
|
467
|
-
"
|
|
468
|
-
"
|
|
418
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
419
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
420
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
421
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
422
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
423
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
424
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
425
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
469
426
|
],
|
|
470
427
|
Field(discriminator="typename__"),
|
|
471
428
|
]
|
|
472
429
|
] = Field(alias="scheduleVariables", default=None)
|
|
473
430
|
|
|
474
431
|
|
|
475
|
-
class
|
|
432
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
476
433
|
id: str
|
|
477
434
|
ref_id: str = Field(alias="refId")
|
|
478
435
|
display_name: str = Field(alias="displayName")
|
|
479
436
|
|
|
480
437
|
|
|
481
|
-
class
|
|
438
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
482
439
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
483
440
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
484
441
|
new_quantity: float = Field(alias="newQuantity")
|
|
485
442
|
|
|
486
443
|
|
|
487
|
-
class
|
|
444
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
488
445
|
BaseModel
|
|
489
446
|
):
|
|
490
447
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -492,55 +449,53 @@ class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVa
|
|
|
492
449
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
493
450
|
|
|
494
451
|
|
|
495
|
-
class
|
|
452
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
496
453
|
BaseModel
|
|
497
454
|
):
|
|
498
455
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
499
456
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
500
457
|
|
|
501
458
|
|
|
502
|
-
class
|
|
459
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
503
460
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
504
461
|
|
|
505
462
|
|
|
506
|
-
class
|
|
507
|
-
BaseModel
|
|
508
|
-
):
|
|
463
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
509
464
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
510
465
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
511
466
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
512
467
|
billable_features: Optional[
|
|
513
468
|
List[
|
|
514
|
-
"
|
|
469
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
515
470
|
]
|
|
516
471
|
] = Field(alias="billableFeatures", default=None)
|
|
517
472
|
addons: Optional[
|
|
518
473
|
List[
|
|
519
|
-
"
|
|
474
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
520
475
|
]
|
|
521
476
|
] = Field(default=None)
|
|
522
477
|
price_overrides: Optional[
|
|
523
478
|
List[
|
|
524
|
-
"
|
|
479
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
525
480
|
]
|
|
526
481
|
] = Field(alias="priceOverrides", default=None)
|
|
527
482
|
|
|
528
483
|
|
|
529
|
-
class
|
|
484
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
530
485
|
BaseModel
|
|
531
486
|
):
|
|
532
487
|
feature_id: str = Field(alias="featureId")
|
|
533
488
|
quantity: float
|
|
534
489
|
|
|
535
490
|
|
|
536
|
-
class
|
|
491
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
537
492
|
BaseModel
|
|
538
493
|
):
|
|
539
494
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
540
495
|
quantity: float
|
|
541
496
|
|
|
542
497
|
|
|
543
|
-
class
|
|
498
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
544
499
|
BaseModel
|
|
545
500
|
):
|
|
546
501
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -548,43 +503,39 @@ class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPr
|
|
|
548
503
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
549
504
|
|
|
550
505
|
|
|
551
|
-
class
|
|
506
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
552
507
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
553
508
|
plan_ref_id: str = Field(alias="planRefId")
|
|
554
509
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
555
510
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
556
511
|
billable_features: Optional[
|
|
557
512
|
List[
|
|
558
|
-
"
|
|
513
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
559
514
|
]
|
|
560
515
|
] = Field(alias="billableFeatures", default=None)
|
|
561
516
|
addons: Optional[
|
|
562
|
-
List[
|
|
563
|
-
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
564
|
-
]
|
|
517
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
565
518
|
] = Field(default=None)
|
|
566
519
|
price_overrides: Optional[
|
|
567
520
|
List[
|
|
568
|
-
"
|
|
521
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
569
522
|
]
|
|
570
523
|
] = Field(alias="priceOverrides", default=None)
|
|
571
524
|
|
|
572
525
|
|
|
573
|
-
class
|
|
526
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
574
527
|
BaseModel
|
|
575
528
|
):
|
|
576
529
|
feature_id: str = Field(alias="featureId")
|
|
577
530
|
quantity: float
|
|
578
531
|
|
|
579
532
|
|
|
580
|
-
class
|
|
581
|
-
BaseModel
|
|
582
|
-
):
|
|
533
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
583
534
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
584
535
|
quantity: float
|
|
585
536
|
|
|
586
537
|
|
|
587
|
-
class
|
|
538
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
588
539
|
BaseModel
|
|
589
540
|
):
|
|
590
541
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -592,7 +543,7 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOv
|
|
|
592
543
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
593
544
|
|
|
594
545
|
|
|
595
|
-
class
|
|
546
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
596
547
|
BaseModel
|
|
597
548
|
):
|
|
598
549
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -600,76 +551,51 @@ class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVar
|
|
|
600
551
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
601
552
|
|
|
602
553
|
|
|
603
|
-
class
|
|
604
|
-
BaseModel
|
|
605
|
-
):
|
|
554
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
606
555
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
607
556
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
608
557
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
609
558
|
|
|
610
559
|
|
|
611
|
-
class
|
|
612
|
-
resource_id: str = Field(alias="resourceId")
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
616
|
-
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
class TotalPriceFragment(BaseModel):
|
|
620
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
621
|
-
total: "TotalPriceFragmentTotal"
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
625
|
-
amount: float
|
|
626
|
-
currency: Currency
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
630
|
-
amount: float
|
|
631
|
-
currency: Currency
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
class SubscriptionFutureUpdateData(BaseModel):
|
|
560
|
+
class SubscriptionScheduledUpdateData(BaseModel):
|
|
635
561
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
636
562
|
alias="subscriptionScheduleType"
|
|
637
563
|
)
|
|
638
564
|
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
639
565
|
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
640
|
-
target_package: Optional["
|
|
566
|
+
target_package: Optional["SubscriptionScheduledUpdateDataTargetPackage"] = Field(
|
|
641
567
|
alias="targetPackage", default=None
|
|
642
568
|
)
|
|
643
569
|
schedule_variables: Optional[
|
|
644
570
|
Annotated[
|
|
645
571
|
Union[
|
|
646
|
-
"
|
|
647
|
-
"
|
|
648
|
-
"
|
|
649
|
-
"
|
|
650
|
-
"
|
|
651
|
-
"
|
|
652
|
-
"
|
|
653
|
-
"
|
|
572
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables",
|
|
573
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
574
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
575
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables",
|
|
576
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
577
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables",
|
|
578
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
579
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
654
580
|
],
|
|
655
581
|
Field(discriminator="typename__"),
|
|
656
582
|
]
|
|
657
583
|
] = Field(alias="scheduleVariables", default=None)
|
|
658
584
|
|
|
659
585
|
|
|
660
|
-
class
|
|
586
|
+
class SubscriptionScheduledUpdateDataTargetPackage(BaseModel):
|
|
661
587
|
id: str
|
|
662
588
|
ref_id: str = Field(alias="refId")
|
|
663
589
|
display_name: str = Field(alias="displayName")
|
|
664
590
|
|
|
665
591
|
|
|
666
|
-
class
|
|
592
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
667
593
|
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
668
594
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
669
595
|
new_quantity: float = Field(alias="newQuantity")
|
|
670
596
|
|
|
671
597
|
|
|
672
|
-
class
|
|
598
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
673
599
|
BaseModel
|
|
674
600
|
):
|
|
675
601
|
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -677,53 +603,55 @@ class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVaria
|
|
|
677
603
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
678
604
|
|
|
679
605
|
|
|
680
|
-
class
|
|
606
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
681
607
|
BaseModel
|
|
682
608
|
):
|
|
683
609
|
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
684
610
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
685
611
|
|
|
686
612
|
|
|
687
|
-
class
|
|
613
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
688
614
|
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
689
615
|
|
|
690
616
|
|
|
691
|
-
class
|
|
617
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariables(
|
|
618
|
+
BaseModel
|
|
619
|
+
):
|
|
692
620
|
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
693
621
|
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
694
622
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
695
623
|
billable_features: Optional[
|
|
696
624
|
List[
|
|
697
|
-
"
|
|
625
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
698
626
|
]
|
|
699
627
|
] = Field(alias="billableFeatures", default=None)
|
|
700
628
|
addons: Optional[
|
|
701
629
|
List[
|
|
702
|
-
"
|
|
630
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
703
631
|
]
|
|
704
632
|
] = Field(default=None)
|
|
705
633
|
price_overrides: Optional[
|
|
706
634
|
List[
|
|
707
|
-
"
|
|
635
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
708
636
|
]
|
|
709
637
|
] = Field(alias="priceOverrides", default=None)
|
|
710
638
|
|
|
711
639
|
|
|
712
|
-
class
|
|
640
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
713
641
|
BaseModel
|
|
714
642
|
):
|
|
715
643
|
feature_id: str = Field(alias="featureId")
|
|
716
644
|
quantity: float
|
|
717
645
|
|
|
718
646
|
|
|
719
|
-
class
|
|
647
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
720
648
|
BaseModel
|
|
721
649
|
):
|
|
722
650
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
723
651
|
quantity: float
|
|
724
652
|
|
|
725
653
|
|
|
726
|
-
class
|
|
654
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
727
655
|
BaseModel
|
|
728
656
|
):
|
|
729
657
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -731,39 +659,43 @@ class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPrice
|
|
|
731
659
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
732
660
|
|
|
733
661
|
|
|
734
|
-
class
|
|
662
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
735
663
|
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
736
664
|
plan_ref_id: str = Field(alias="planRefId")
|
|
737
665
|
change_type: PlanChangeType = Field(alias="changeType")
|
|
738
666
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
739
667
|
billable_features: Optional[
|
|
740
668
|
List[
|
|
741
|
-
"
|
|
669
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
742
670
|
]
|
|
743
671
|
] = Field(alias="billableFeatures", default=None)
|
|
744
672
|
addons: Optional[
|
|
745
|
-
List[
|
|
673
|
+
List[
|
|
674
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons"
|
|
675
|
+
]
|
|
746
676
|
] = Field(default=None)
|
|
747
677
|
price_overrides: Optional[
|
|
748
678
|
List[
|
|
749
|
-
"
|
|
679
|
+
"SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
750
680
|
]
|
|
751
681
|
] = Field(alias="priceOverrides", default=None)
|
|
752
682
|
|
|
753
683
|
|
|
754
|
-
class
|
|
684
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
755
685
|
BaseModel
|
|
756
686
|
):
|
|
757
687
|
feature_id: str = Field(alias="featureId")
|
|
758
688
|
quantity: float
|
|
759
689
|
|
|
760
690
|
|
|
761
|
-
class
|
|
691
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesAddons(
|
|
692
|
+
BaseModel
|
|
693
|
+
):
|
|
762
694
|
addon_ref_id: str = Field(alias="addonRefId")
|
|
763
695
|
quantity: float
|
|
764
696
|
|
|
765
697
|
|
|
766
|
-
class
|
|
698
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
767
699
|
BaseModel
|
|
768
700
|
):
|
|
769
701
|
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
@@ -771,7 +703,7 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverr
|
|
|
771
703
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
772
704
|
|
|
773
705
|
|
|
774
|
-
class
|
|
706
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
775
707
|
BaseModel
|
|
776
708
|
):
|
|
777
709
|
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
@@ -779,29 +711,14 @@ class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariab
|
|
|
779
711
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
780
712
|
|
|
781
713
|
|
|
782
|
-
class
|
|
714
|
+
class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
715
|
+
BaseModel
|
|
716
|
+
):
|
|
783
717
|
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
784
718
|
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
785
719
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
786
720
|
|
|
787
721
|
|
|
788
|
-
class SlimCustomerFragment(BaseModel):
|
|
789
|
-
id: str
|
|
790
|
-
name: Optional[str] = Field(default=None)
|
|
791
|
-
email: Optional[str] = Field(default=None)
|
|
792
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
793
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
794
|
-
ref_id: str = Field(alias="refId")
|
|
795
|
-
customer_id: str = Field(alias="customerId")
|
|
796
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
797
|
-
additional_meta_data: Optional[Any] = Field(
|
|
798
|
-
alias="additionalMetaData", default=None
|
|
799
|
-
)
|
|
800
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
801
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
802
|
-
)
|
|
803
|
-
|
|
804
|
-
|
|
805
722
|
class SubscriptionFragment(BaseModel):
|
|
806
723
|
id: str
|
|
807
724
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -911,6 +828,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
911
828
|
pass
|
|
912
829
|
|
|
913
830
|
|
|
831
|
+
class FeatureFragment(BaseModel):
|
|
832
|
+
typename__: str = Field(alias="__typename")
|
|
833
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
834
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
835
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
836
|
+
feature_units_plural: Optional[str] = Field(
|
|
837
|
+
alias="featureUnitsPlural", default=None
|
|
838
|
+
)
|
|
839
|
+
description: Optional[str] = Field(default=None)
|
|
840
|
+
display_name: str = Field(alias="displayName")
|
|
841
|
+
ref_id: str = Field(alias="refId")
|
|
842
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
843
|
+
alias="unitTransformation", default=None
|
|
844
|
+
)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
848
|
+
divide: float
|
|
849
|
+
round: UnitTransformationRound
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
class EntitlementFragment(BaseModel):
|
|
853
|
+
typename__: str = Field(alias="__typename")
|
|
854
|
+
is_granted: bool = Field(alias="isGranted")
|
|
855
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
856
|
+
alias="accessDeniedReason", default=None
|
|
857
|
+
)
|
|
858
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
859
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
860
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
861
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
862
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
863
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
864
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
865
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
866
|
+
alias="entitlementUpdatedAt", default=None
|
|
867
|
+
)
|
|
868
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
869
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
870
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
871
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
872
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
873
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
874
|
+
alias="resetPeriod", default=None
|
|
875
|
+
)
|
|
876
|
+
reset_period_configuration: Optional[
|
|
877
|
+
Annotated[
|
|
878
|
+
Union[
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
881
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
882
|
+
],
|
|
883
|
+
Field(discriminator="typename__"),
|
|
884
|
+
]
|
|
885
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
886
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
890
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
891
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
892
|
+
alias="monthlyAccordingTo", default=None
|
|
893
|
+
)
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
897
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
898
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
899
|
+
alias="weeklyAccordingTo", default=None
|
|
900
|
+
)
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
904
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
+
alias="yearlyAccordingTo", default=None
|
|
907
|
+
)
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
911
|
+
pass
|
|
912
|
+
|
|
913
|
+
|
|
914
914
|
class ApplySubscriptionFragment(BaseModel):
|
|
915
915
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
916
916
|
default=None
|
|
@@ -1257,14 +1257,11 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class
|
|
1260
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1261
|
+
addon_id: str = Field(alias="addonId")
|
|
1262
|
+
description: Optional[str] = Field(default=None)
|
|
1261
1263
|
display_name: str = Field(alias="displayName")
|
|
1262
|
-
|
|
1263
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1264
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1265
|
-
period: PromotionalEntitlementPeriod
|
|
1266
|
-
start_date: Any = Field(alias="startDate")
|
|
1267
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1264
|
+
quantity: int
|
|
1268
1265
|
|
|
1269
1266
|
|
|
1270
1267
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
@@ -1463,13 +1460,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1463
1460
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1464
1461
|
|
|
1465
1462
|
|
|
1466
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1467
|
-
addon_id: str = Field(alias="addonId")
|
|
1468
|
-
description: Optional[str] = Field(default=None)
|
|
1469
|
-
display_name: str = Field(alias="displayName")
|
|
1470
|
-
quantity: int
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
1463
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1474
1464
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1475
1465
|
plan_id: str = Field(alias="planId")
|
|
@@ -1566,6 +1556,16 @@ class CustomerPortalSubscriptionFragmentScheduledUpdates(
|
|
|
1566
1556
|
pass
|
|
1567
1557
|
|
|
1568
1558
|
|
|
1559
|
+
class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
1560
|
+
display_name: str = Field(alias="displayName")
|
|
1561
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1562
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1563
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1564
|
+
period: PromotionalEntitlementPeriod
|
|
1565
|
+
start_date: Any = Field(alias="startDate")
|
|
1566
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1567
|
+
|
|
1568
|
+
|
|
1569
1569
|
class CustomerPortalFragment(BaseModel):
|
|
1570
1570
|
subscriptions: List["CustomerPortalFragmentSubscriptions"]
|
|
1571
1571
|
entitlements: List["CustomerPortalFragmentEntitlements"]
|
|
@@ -1793,6 +1793,39 @@ class MockPaywallAddonDependencyFragment(BaseModel):
|
|
|
1793
1793
|
description: Optional[str] = Field(default=None)
|
|
1794
1794
|
|
|
1795
1795
|
|
|
1796
|
+
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1797
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1798
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1799
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1800
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1801
|
+
alias="resetPeriod", default=None
|
|
1802
|
+
)
|
|
1803
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1804
|
+
alias="hiddenFromWidgets", default=None
|
|
1805
|
+
)
|
|
1806
|
+
display_name_override: Optional[str] = Field(
|
|
1807
|
+
alias="displayNameOverride", default=None
|
|
1808
|
+
)
|
|
1809
|
+
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1810
|
+
default=None
|
|
1811
|
+
)
|
|
1812
|
+
|
|
1813
|
+
|
|
1814
|
+
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1815
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1816
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1817
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1818
|
+
feature_units_plural: Optional[str] = Field(
|
|
1819
|
+
alias="featureUnitsPlural", default=None
|
|
1820
|
+
)
|
|
1821
|
+
display_name: str = Field(alias="displayName")
|
|
1822
|
+
description: Optional[str] = Field(default=None)
|
|
1823
|
+
ref_id: str = Field(alias="refId")
|
|
1824
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1825
|
+
alias="additionalMetaData", default=None
|
|
1826
|
+
)
|
|
1827
|
+
|
|
1828
|
+
|
|
1796
1829
|
class MockPaywallPriceFragment(BaseModel):
|
|
1797
1830
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
1798
1831
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -1827,39 +1860,6 @@ class MockPaywallPriceFragmentFeature(BaseModel):
|
|
|
1827
1860
|
display_name: str = Field(alias="displayName")
|
|
1828
1861
|
|
|
1829
1862
|
|
|
1830
|
-
class MockPaywallPackageEntitlementFragment(BaseModel):
|
|
1831
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1832
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
1833
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1834
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1835
|
-
alias="resetPeriod", default=None
|
|
1836
|
-
)
|
|
1837
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
1838
|
-
alias="hiddenFromWidgets", default=None
|
|
1839
|
-
)
|
|
1840
|
-
display_name_override: Optional[str] = Field(
|
|
1841
|
-
alias="displayNameOverride", default=None
|
|
1842
|
-
)
|
|
1843
|
-
feature: Optional["MockPaywallPackageEntitlementFragmentFeature"] = Field(
|
|
1844
|
-
default=None
|
|
1845
|
-
)
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
class MockPaywallPackageEntitlementFragmentFeature(BaseModel):
|
|
1849
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1850
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1851
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1852
|
-
feature_units_plural: Optional[str] = Field(
|
|
1853
|
-
alias="featureUnitsPlural", default=None
|
|
1854
|
-
)
|
|
1855
|
-
display_name: str = Field(alias="displayName")
|
|
1856
|
-
description: Optional[str] = Field(default=None)
|
|
1857
|
-
ref_id: str = Field(alias="refId")
|
|
1858
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1859
|
-
alias="additionalMetaData", default=None
|
|
1860
|
-
)
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
1863
|
class MockPaywallAddonFragment(BaseModel):
|
|
1864
1864
|
ref_id: str = Field(alias="refId")
|
|
1865
1865
|
display_name: str = Field(alias="displayName")
|
|
@@ -2772,22 +2772,22 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2772
2772
|
AddonDependencyFragment.model_rebuild()
|
|
2773
2773
|
PriceTierFragment.model_rebuild()
|
|
2774
2774
|
PriceFragment.model_rebuild()
|
|
2775
|
-
PackageEntitlementFragment.model_rebuild()
|
|
2776
2775
|
OveragePriceFragment.model_rebuild()
|
|
2776
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2777
2777
|
AddonFragment.model_rebuild()
|
|
2778
|
-
FeatureFragment.model_rebuild()
|
|
2779
|
-
EntitlementFragment.model_rebuild()
|
|
2780
2778
|
ProductFragment.model_rebuild()
|
|
2781
2779
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2782
2780
|
PlanFragment.model_rebuild()
|
|
2781
|
+
TotalPriceFragment.model_rebuild()
|
|
2782
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2783
2783
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2784
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2785
2784
|
CustomerResourceFragment.model_rebuild()
|
|
2786
|
-
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2787
|
-
TotalPriceFragment.model_rebuild()
|
|
2788
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2789
2785
|
SlimCustomerFragment.model_rebuild()
|
|
2786
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2787
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2790
2788
|
SubscriptionFragment.model_rebuild()
|
|
2789
|
+
FeatureFragment.model_rebuild()
|
|
2790
|
+
EntitlementFragment.model_rebuild()
|
|
2791
2791
|
ApplySubscriptionFragment.model_rebuild()
|
|
2792
2792
|
FontVariantFragment.model_rebuild()
|
|
2793
2793
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2799,11 +2799,11 @@ CheckoutStateFragment.model_rebuild()
|
|
|
2799
2799
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2800
2800
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2801
2801
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2802
|
-
|
|
2802
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2803
2803
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2804
2804
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2805
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2806
2805
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2806
|
+
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2807
2807
|
CustomerPortalFragment.model_rebuild()
|
|
2808
2808
|
CustomerStatisticsFragment.model_rebuild()
|
|
2809
2809
|
CustomerWithSubscriptionsFragment.model_rebuild()
|
|
@@ -2813,8 +2813,8 @@ EntitlementsUpdatedPayload.model_rebuild()
|
|
|
2813
2813
|
ImmediateSubscriptionPreviewInvoiceFragment.model_rebuild()
|
|
2814
2814
|
LayoutConfigurationFragment.model_rebuild()
|
|
2815
2815
|
MockPaywallAddonDependencyFragment.model_rebuild()
|
|
2816
|
-
MockPaywallPriceFragment.model_rebuild()
|
|
2817
2816
|
MockPaywallPackageEntitlementFragment.model_rebuild()
|
|
2817
|
+
MockPaywallPriceFragment.model_rebuild()
|
|
2818
2818
|
MockPaywallAddonFragment.model_rebuild()
|
|
2819
2819
|
MockPaywallPlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2820
2820
|
MockPaywallPlanFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=9ioQN2tFCIyy3cENl_nhueILHgK6xJ4_XHFFmGztc0A,3529
|
|
|
123
123
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
124
124
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
125
125
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
126
|
-
stigg/generated/fragments.py,sha256=
|
|
126
|
+
stigg/generated/fragments.py,sha256=FiBUvSOYtf_YiFBrdcMZajDjznB2Y45UCvcNwLGRDC0,100917
|
|
127
127
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
128
128
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
129
129
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -160,7 +160,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
160
160
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
161
161
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
162
162
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
163
|
-
stigg_api_client_v2-2.
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
163
|
+
stigg_api_client_v2-2.438.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.438.2.dist-info/METADATA,sha256=pSZDTuSSp2tsiJ5TSp_jJqOD1U80r8ke2TZEOAV1jrM,2258
|
|
165
|
+
stigg_api_client_v2-2.438.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.438.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|