stigg-api-client-v2 3.70.0__py3-none-any.whl → 3.70.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +251 -251
- {stigg_api_client_v2-3.70.0.dist-info → stigg_api_client_v2-3.70.3.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-3.70.0.dist-info → stigg_api_client_v2-3.70.3.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-3.70.0.dist-info → stigg_api_client_v2-3.70.3.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-3.70.0.dist-info → stigg_api_client_v2-3.70.3.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -81,6 +81,50 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
81
81
|
currency: Currency
|
|
82
82
|
|
|
83
83
|
|
|
84
|
+
class PriceFragment(BaseModel):
|
|
85
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
86
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
87
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
88
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
89
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
90
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
91
|
+
billing_country_code: Optional[str] = Field(
|
|
92
|
+
alias="billingCountryCode", default=None
|
|
93
|
+
)
|
|
94
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
95
|
+
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
96
|
+
alias="creditRate", default=None
|
|
97
|
+
)
|
|
98
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
99
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
100
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
101
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
class PriceFragmentPrice(BaseModel):
|
|
105
|
+
amount: float
|
|
106
|
+
currency: Currency
|
|
107
|
+
|
|
108
|
+
|
|
109
|
+
class PriceFragmentCreditRate(BaseModel):
|
|
110
|
+
amount: float
|
|
111
|
+
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
115
|
+
pass
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
class PriceFragmentFeature(BaseModel):
|
|
119
|
+
ref_id: str = Field(alias="refId")
|
|
120
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
121
|
+
feature_units_plural: Optional[str] = Field(
|
|
122
|
+
alias="featureUnitsPlural", default=None
|
|
123
|
+
)
|
|
124
|
+
display_name: str = Field(alias="displayName")
|
|
125
|
+
description: Optional[str] = Field(default=None)
|
|
126
|
+
|
|
127
|
+
|
|
84
128
|
class OveragePriceFragment(BaseModel):
|
|
85
129
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
86
130
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -148,50 +192,6 @@ class PackageEntitlementFragmentFeature(BaseModel):
|
|
|
148
192
|
)
|
|
149
193
|
|
|
150
194
|
|
|
151
|
-
class PriceFragment(BaseModel):
|
|
152
|
-
billing_model: BillingModel = Field(alias="billingModel")
|
|
153
|
-
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
154
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
155
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
156
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
157
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
158
|
-
billing_country_code: Optional[str] = Field(
|
|
159
|
-
alias="billingCountryCode", default=None
|
|
160
|
-
)
|
|
161
|
-
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
162
|
-
credit_rate: Optional["PriceFragmentCreditRate"] = Field(
|
|
163
|
-
alias="creditRate", default=None
|
|
164
|
-
)
|
|
165
|
-
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
166
|
-
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
167
|
-
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
168
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
class PriceFragmentPrice(BaseModel):
|
|
172
|
-
amount: float
|
|
173
|
-
currency: Currency
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
class PriceFragmentCreditRate(BaseModel):
|
|
177
|
-
amount: float
|
|
178
|
-
custom_currency_id: Any = Field(alias="customCurrencyId")
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
class PriceFragmentTiers(PriceTierFragment):
|
|
182
|
-
pass
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
class PriceFragmentFeature(BaseModel):
|
|
186
|
-
ref_id: str = Field(alias="refId")
|
|
187
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
188
|
-
feature_units_plural: Optional[str] = Field(
|
|
189
|
-
alias="featureUnitsPlural", default=None
|
|
190
|
-
)
|
|
191
|
-
display_name: str = Field(alias="displayName")
|
|
192
|
-
description: Optional[str] = Field(default=None)
|
|
193
|
-
|
|
194
|
-
|
|
195
195
|
class AddonFragment(BaseModel):
|
|
196
196
|
id: Any
|
|
197
197
|
ref_id: str = Field(alias="refId")
|
|
@@ -315,177 +315,19 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
315
315
|
pass
|
|
316
316
|
|
|
317
317
|
|
|
318
|
-
class
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
class SlimCustomerFragment(BaseModel):
|
|
323
|
-
id: Any
|
|
324
|
-
name: Optional[str] = Field(default=None)
|
|
325
|
-
email: Optional[str] = Field(default=None)
|
|
326
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
327
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
328
|
-
ref_id: str = Field(alias="refId")
|
|
329
|
-
customer_id: str = Field(alias="customerId")
|
|
330
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
331
|
-
additional_meta_data: Optional[Any] = Field(
|
|
332
|
-
alias="additionalMetaData", default=None
|
|
333
|
-
)
|
|
334
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
335
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
336
|
-
)
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
class CustomerResourceFragment(BaseModel):
|
|
340
|
-
resource_id: str = Field(alias="resourceId")
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
344
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
345
|
-
display_name: str = Field(alias="displayName")
|
|
346
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
347
|
-
default=None
|
|
348
|
-
)
|
|
349
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
353
|
-
pass
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
357
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
358
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
class ProductFragment(BaseModel):
|
|
362
|
-
ref_id: str = Field(alias="refId")
|
|
363
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
364
|
-
description: Optional[str] = Field(default=None)
|
|
365
|
-
additional_meta_data: Optional[Any] = Field(
|
|
366
|
-
alias="additionalMetaData", default=None
|
|
367
|
-
)
|
|
368
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
372
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
373
|
-
alias="downgradePlan", default=None
|
|
374
|
-
)
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
378
|
-
ref_id: str = Field(alias="refId")
|
|
379
|
-
display_name: str = Field(alias="displayName")
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
class PlanFragment(BaseModel):
|
|
383
|
-
id: Any
|
|
384
|
-
ref_id: str = Field(alias="refId")
|
|
385
|
-
display_name: str = Field(alias="displayName")
|
|
386
|
-
description: Optional[str] = Field(default=None)
|
|
387
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
388
|
-
version_number: int = Field(alias="versionNumber")
|
|
389
|
-
additional_meta_data: Optional[Any] = Field(
|
|
390
|
-
alias="additionalMetaData", default=None
|
|
391
|
-
)
|
|
392
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
393
|
-
alias="hiddenFromWidgets", default=None
|
|
394
|
-
)
|
|
395
|
-
product: "PlanFragmentProduct"
|
|
396
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
397
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
398
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
399
|
-
alias="inheritedEntitlements", default=None
|
|
400
|
-
)
|
|
401
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
402
|
-
alias="compatibleAddons", default=None
|
|
403
|
-
)
|
|
404
|
-
compatible_package_groups: Optional[
|
|
405
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
406
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
407
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
408
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
409
|
-
alias="overagePrices", default=None
|
|
410
|
-
)
|
|
411
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
412
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
413
|
-
alias="defaultTrialConfig", default=None
|
|
414
|
-
)
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
class PlanFragmentProduct(ProductFragment):
|
|
418
|
-
pass
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
class PlanFragmentBasePlan(BaseModel):
|
|
422
|
-
ref_id: str = Field(alias="refId")
|
|
423
|
-
display_name: str = Field(alias="displayName")
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
427
|
-
pass
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
431
|
-
pass
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
435
|
-
pass
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
439
|
-
pass
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
class PlanFragmentPrices(PriceFragment):
|
|
443
|
-
pass
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
447
|
-
pass
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
451
|
-
duration: float
|
|
452
|
-
units: TrialPeriodUnits
|
|
453
|
-
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
454
|
-
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
455
|
-
alias="trialEndBehavior", default=None
|
|
456
|
-
)
|
|
318
|
+
class TotalPriceFragment(BaseModel):
|
|
319
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
320
|
+
total: "TotalPriceFragmentTotal"
|
|
457
321
|
|
|
458
322
|
|
|
459
|
-
class
|
|
460
|
-
|
|
323
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
324
|
+
amount: float
|
|
325
|
+
currency: Currency
|
|
461
326
|
|
|
462
327
|
|
|
463
|
-
class
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
created_at: Any = Field(alias="createdAt")
|
|
467
|
-
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
468
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
469
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
470
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
471
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
472
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
473
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
474
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
475
|
-
alias="billingReason", default=None
|
|
476
|
-
)
|
|
477
|
-
currency: Optional[str] = Field(default=None)
|
|
478
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
479
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
480
|
-
alias="subTotalExcludingTax", default=None
|
|
481
|
-
)
|
|
482
|
-
total: Optional[float] = Field(default=None)
|
|
483
|
-
total_excluding_tax: Optional[float] = Field(
|
|
484
|
-
alias="totalExcludingTax", default=None
|
|
485
|
-
)
|
|
486
|
-
tax: Optional[float] = Field(default=None)
|
|
487
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
488
|
-
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
328
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
329
|
+
amount: float
|
|
330
|
+
currency: Currency
|
|
489
331
|
|
|
490
332
|
|
|
491
333
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -650,6 +492,175 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
650
492
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
651
493
|
|
|
652
494
|
|
|
495
|
+
class SlimCustomerFragment(BaseModel):
|
|
496
|
+
id: Any
|
|
497
|
+
name: Optional[str] = Field(default=None)
|
|
498
|
+
email: Optional[str] = Field(default=None)
|
|
499
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
500
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
501
|
+
ref_id: str = Field(alias="refId")
|
|
502
|
+
customer_id: str = Field(alias="customerId")
|
|
503
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
504
|
+
additional_meta_data: Optional[Any] = Field(
|
|
505
|
+
alias="additionalMetaData", default=None
|
|
506
|
+
)
|
|
507
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
508
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
509
|
+
)
|
|
510
|
+
|
|
511
|
+
|
|
512
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
513
|
+
billing_id: str = Field(alias="billingId")
|
|
514
|
+
status: SubscriptionInvoiceStatus
|
|
515
|
+
created_at: Any = Field(alias="createdAt")
|
|
516
|
+
due_date: Optional[Any] = Field(alias="dueDate", default=None)
|
|
517
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
518
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
519
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
520
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
521
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
522
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
523
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
524
|
+
alias="billingReason", default=None
|
|
525
|
+
)
|
|
526
|
+
currency: Optional[str] = Field(default=None)
|
|
527
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
528
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
529
|
+
alias="subTotalExcludingTax", default=None
|
|
530
|
+
)
|
|
531
|
+
total: Optional[float] = Field(default=None)
|
|
532
|
+
total_excluding_tax: Optional[float] = Field(
|
|
533
|
+
alias="totalExcludingTax", default=None
|
|
534
|
+
)
|
|
535
|
+
tax: Optional[float] = Field(default=None)
|
|
536
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
537
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
538
|
+
|
|
539
|
+
|
|
540
|
+
class ProductFragment(BaseModel):
|
|
541
|
+
ref_id: str = Field(alias="refId")
|
|
542
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
543
|
+
description: Optional[str] = Field(default=None)
|
|
544
|
+
additional_meta_data: Optional[Any] = Field(
|
|
545
|
+
alias="additionalMetaData", default=None
|
|
546
|
+
)
|
|
547
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
548
|
+
|
|
549
|
+
|
|
550
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
551
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
552
|
+
alias="downgradePlan", default=None
|
|
553
|
+
)
|
|
554
|
+
|
|
555
|
+
|
|
556
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
557
|
+
ref_id: str = Field(alias="refId")
|
|
558
|
+
display_name: str = Field(alias="displayName")
|
|
559
|
+
|
|
560
|
+
|
|
561
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
562
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
563
|
+
display_name: str = Field(alias="displayName")
|
|
564
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
565
|
+
default=None
|
|
566
|
+
)
|
|
567
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
571
|
+
pass
|
|
572
|
+
|
|
573
|
+
|
|
574
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
575
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
576
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
577
|
+
|
|
578
|
+
|
|
579
|
+
class PlanFragment(BaseModel):
|
|
580
|
+
id: Any
|
|
581
|
+
ref_id: str = Field(alias="refId")
|
|
582
|
+
display_name: str = Field(alias="displayName")
|
|
583
|
+
description: Optional[str] = Field(default=None)
|
|
584
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
585
|
+
version_number: int = Field(alias="versionNumber")
|
|
586
|
+
additional_meta_data: Optional[Any] = Field(
|
|
587
|
+
alias="additionalMetaData", default=None
|
|
588
|
+
)
|
|
589
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
590
|
+
alias="hiddenFromWidgets", default=None
|
|
591
|
+
)
|
|
592
|
+
product: "PlanFragmentProduct"
|
|
593
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
594
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
595
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
596
|
+
alias="inheritedEntitlements", default=None
|
|
597
|
+
)
|
|
598
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
599
|
+
alias="compatibleAddons", default=None
|
|
600
|
+
)
|
|
601
|
+
compatible_package_groups: Optional[
|
|
602
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
603
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
604
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
605
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
606
|
+
alias="overagePrices", default=None
|
|
607
|
+
)
|
|
608
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
609
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
610
|
+
alias="defaultTrialConfig", default=None
|
|
611
|
+
)
|
|
612
|
+
|
|
613
|
+
|
|
614
|
+
class PlanFragmentProduct(ProductFragment):
|
|
615
|
+
pass
|
|
616
|
+
|
|
617
|
+
|
|
618
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
619
|
+
ref_id: str = Field(alias="refId")
|
|
620
|
+
display_name: str = Field(alias="displayName")
|
|
621
|
+
|
|
622
|
+
|
|
623
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
624
|
+
pass
|
|
625
|
+
|
|
626
|
+
|
|
627
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
628
|
+
pass
|
|
629
|
+
|
|
630
|
+
|
|
631
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
632
|
+
pass
|
|
633
|
+
|
|
634
|
+
|
|
635
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
636
|
+
pass
|
|
637
|
+
|
|
638
|
+
|
|
639
|
+
class PlanFragmentPrices(PriceFragment):
|
|
640
|
+
pass
|
|
641
|
+
|
|
642
|
+
|
|
643
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
644
|
+
pass
|
|
645
|
+
|
|
646
|
+
|
|
647
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
648
|
+
duration: float
|
|
649
|
+
units: TrialPeriodUnits
|
|
650
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
651
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
652
|
+
alias="trialEndBehavior", default=None
|
|
653
|
+
)
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
657
|
+
limit: float
|
|
658
|
+
|
|
659
|
+
|
|
660
|
+
class CustomerResourceFragment(BaseModel):
|
|
661
|
+
resource_id: str = Field(alias="resourceId")
|
|
662
|
+
|
|
663
|
+
|
|
653
664
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
654
665
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
655
666
|
alias="subscriptionScheduleType"
|
|
@@ -804,19 +815,8 @@ class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(Bas
|
|
|
804
815
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
805
816
|
|
|
806
817
|
|
|
807
|
-
class
|
|
808
|
-
|
|
809
|
-
total: "TotalPriceFragmentTotal"
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
class TotalPriceFragmentSubTotal(BaseModel):
|
|
813
|
-
amount: float
|
|
814
|
-
currency: Currency
|
|
815
|
-
|
|
816
|
-
|
|
817
|
-
class TotalPriceFragmentTotal(BaseModel):
|
|
818
|
-
amount: float
|
|
819
|
-
currency: Currency
|
|
818
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
819
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
820
820
|
|
|
821
821
|
|
|
822
822
|
class SubscriptionFragment(BaseModel):
|
|
@@ -1005,16 +1005,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
1005
1005
|
)
|
|
1006
1006
|
|
|
1007
1007
|
|
|
1008
|
-
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1009
|
-
publishable_key: str = Field(alias="publishableKey")
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1013
|
-
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1014
|
-
setup_secret: str = Field(alias="setupSecret")
|
|
1015
|
-
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
1008
|
class PromotionalEntitlementFragment(BaseModel):
|
|
1019
1009
|
status: PromotionalEntitlementStatus
|
|
1020
1010
|
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
@@ -1136,6 +1126,16 @@ class CustomerFragmentPromotionalEntitlements(PromotionalEntitlementFragment):
|
|
|
1136
1126
|
pass
|
|
1137
1127
|
|
|
1138
1128
|
|
|
1129
|
+
class ZuoraCheckoutCredentialsFragment(BaseModel):
|
|
1130
|
+
publishable_key: str = Field(alias="publishableKey")
|
|
1131
|
+
|
|
1132
|
+
|
|
1133
|
+
class StripeCheckoutCredentialsFragment(BaseModel):
|
|
1134
|
+
account_id: Optional[str] = Field(alias="accountId", default=None)
|
|
1135
|
+
setup_secret: str = Field(alias="setupSecret")
|
|
1136
|
+
public_key: Optional[str] = Field(alias="publicKey", default=None)
|
|
1137
|
+
|
|
1138
|
+
|
|
1139
1139
|
class CheckoutStateFragment(BaseModel):
|
|
1140
1140
|
configuration: Optional["CheckoutStateFragmentConfiguration"] = Field(default=None)
|
|
1141
1141
|
setup_secret: str = Field(alias="setupSecret")
|
|
@@ -1362,6 +1362,13 @@ class CustomerPortalPromotionalEntitlementFragment(BaseModel):
|
|
|
1362
1362
|
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1363
1363
|
|
|
1364
1364
|
|
|
1365
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1366
|
+
addon_id: str = Field(alias="addonId")
|
|
1367
|
+
description: Optional[str] = Field(default=None)
|
|
1368
|
+
display_name: str = Field(alias="displayName")
|
|
1369
|
+
quantity: int
|
|
1370
|
+
|
|
1371
|
+
|
|
1365
1372
|
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1366
1373
|
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1367
1374
|
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
@@ -1566,13 +1573,6 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1566
1573
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1567
1574
|
|
|
1568
1575
|
|
|
1569
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1570
|
-
addon_id: str = Field(alias="addonId")
|
|
1571
|
-
description: Optional[str] = Field(default=None)
|
|
1572
|
-
display_name: str = Field(alias="displayName")
|
|
1573
|
-
quantity: int
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
1576
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1577
1577
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1578
1578
|
plan_id: str = Field(alias="planId")
|
|
@@ -2959,32 +2959,32 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2959
2959
|
|
|
2960
2960
|
AddonDependencyFragment.model_rebuild()
|
|
2961
2961
|
PriceTierFragment.model_rebuild()
|
|
2962
|
+
PriceFragment.model_rebuild()
|
|
2962
2963
|
OveragePriceFragment.model_rebuild()
|
|
2963
2964
|
PackageEntitlementFragment.model_rebuild()
|
|
2964
|
-
PriceFragment.model_rebuild()
|
|
2965
2965
|
AddonFragment.model_rebuild()
|
|
2966
2966
|
FeatureFragment.model_rebuild()
|
|
2967
2967
|
EntitlementFragment.model_rebuild()
|
|
2968
|
-
|
|
2968
|
+
TotalPriceFragment.model_rebuild()
|
|
2969
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2969
2970
|
SlimCustomerFragment.model_rebuild()
|
|
2970
|
-
|
|
2971
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2971
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2972
2972
|
ProductFragment.model_rebuild()
|
|
2973
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2973
2974
|
PlanFragment.model_rebuild()
|
|
2974
|
-
|
|
2975
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2975
|
+
CustomerResourceFragment.model_rebuild()
|
|
2976
2976
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2977
|
-
|
|
2977
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2978
2978
|
SubscriptionFragment.model_rebuild()
|
|
2979
2979
|
ApplySubscriptionFragment.model_rebuild()
|
|
2980
2980
|
FontVariantFragment.model_rebuild()
|
|
2981
2981
|
TypographyConfigurationFragment.model_rebuild()
|
|
2982
2982
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2983
|
-
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
2984
|
-
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
2985
2983
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2986
2984
|
CouponFragment.model_rebuild()
|
|
2987
2985
|
CustomerFragment.model_rebuild()
|
|
2986
|
+
ZuoraCheckoutCredentialsFragment.model_rebuild()
|
|
2987
|
+
StripeCheckoutCredentialsFragment.model_rebuild()
|
|
2988
2988
|
CheckoutStateFragment.model_rebuild()
|
|
2989
2989
|
CreditGrantFragment.model_rebuild()
|
|
2990
2990
|
CreditsBalanceSummaryFragment.model_rebuild()
|
|
@@ -2992,9 +2992,9 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
2992
2992
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2993
2993
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2994
2994
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2995
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2995
2996
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2996
2997
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2997
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2998
2998
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2999
2999
|
CustomerPortalFragment.model_rebuild()
|
|
3000
3000
|
CustomerStatisticsFragment.model_rebuild()
|
|
@@ -124,7 +124,7 @@ stigg/generated/enums.py,sha256=HPIePI-595qtOG4D8Ca9GwvOQYLXGAv7auER5fYzS9Q,3854
|
|
|
124
124
|
stigg/generated/estimate_subscription.py,sha256=c0_vg0A_Hi8fdjeGudWZ0WziUF9jcjX5rlRitGMAMaQ,479
|
|
125
125
|
stigg/generated/estimate_subscription_update.py,sha256=ZYIFqqHHDfzhrOn95QnMmPNTXZ7JrKWRlUFzk8fWwKA,528
|
|
126
126
|
stigg/generated/exceptions.py,sha256=OQu-ZYCCV4VyMWTd1HR8gIjIK2CrA_JMlFxqOAJugWY,2411
|
|
127
|
-
stigg/generated/fragments.py,sha256=
|
|
127
|
+
stigg/generated/fragments.py,sha256=43XpvgL3F6X9wDwmbIckfBcx2uVuJxnkBhtdfOZuGTk,108321
|
|
128
128
|
stigg/generated/get_active_subscriptions.py,sha256=ngZ9jr8vzGI59wT8FhUFl46a8j9waoNjeZ1_lrcu2ww,513
|
|
129
129
|
stigg/generated/get_active_subscriptions_list.py,sha256=Awi9al2MXxdt_y7ZnWYZh8U3R9XiX50c7TyO4WZxyhw,541
|
|
130
130
|
stigg/generated/get_checkout_state.py,sha256=SAOXGAND879dwb7R5mr5LPZuPVuMUDwNR5M4mgmHv6w,409
|
|
@@ -168,7 +168,7 @@ stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9e
|
|
|
168
168
|
stigg/generated/unlink_promotional_entitlements_group.py,sha256=8UIRQ0CNvReRfX0LZmDYkRn9mMjZm9n41YG6-p7Z8qU,636
|
|
169
169
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
170
170
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
171
|
-
stigg_api_client_v2-3.70.
|
|
172
|
-
stigg_api_client_v2-3.70.
|
|
173
|
-
stigg_api_client_v2-3.70.
|
|
174
|
-
stigg_api_client_v2-3.70.
|
|
171
|
+
stigg_api_client_v2-3.70.3.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
172
|
+
stigg_api_client_v2-3.70.3.dist-info/METADATA,sha256=D3LmtLoPkK-aO5G8Xbqfr2t5ox4949qSuliLP2c4LWc,2257
|
|
173
|
+
stigg_api_client_v2-3.70.3.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
174
|
+
stigg_api_client_v2-3.70.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|