stigg-api-client-v2 2.447.2__py3-none-any.whl → 2.448.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 +172 -172
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.2.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.2.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.2.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.2.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -80,6 +80,38 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
80
|
currency: Currency
|
|
81
81
|
|
|
82
82
|
|
|
83
|
+
class OveragePriceFragment(BaseModel):
|
|
84
|
+
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
|
+
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
87
|
+
billing_country_code: Optional[str] = Field(
|
|
88
|
+
alias="billingCountryCode", default=None
|
|
89
|
+
)
|
|
90
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
91
|
+
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
92
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
93
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
97
|
+
amount: float
|
|
98
|
+
currency: Currency
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
102
|
+
pass
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
106
|
+
ref_id: str = Field(alias="refId")
|
|
107
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
108
|
+
feature_units_plural: Optional[str] = Field(
|
|
109
|
+
alias="featureUnitsPlural", default=None
|
|
110
|
+
)
|
|
111
|
+
display_name: str = Field(alias="displayName")
|
|
112
|
+
description: Optional[str] = Field(default=None)
|
|
113
|
+
|
|
114
|
+
|
|
83
115
|
class PriceFragment(BaseModel):
|
|
84
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
@@ -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")
|
|
@@ -299,40 +299,25 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
299
299
|
pass
|
|
300
300
|
|
|
301
301
|
|
|
302
|
-
class
|
|
303
|
-
resource_id: str = Field(alias="resourceId")
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
class SlimCustomerFragment(BaseModel):
|
|
307
|
-
id: str
|
|
308
|
-
name: Optional[str] = Field(default=None)
|
|
309
|
-
email: Optional[str] = Field(default=None)
|
|
310
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
311
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
302
|
+
class ProductFragment(BaseModel):
|
|
312
303
|
ref_id: str = Field(alias="refId")
|
|
313
|
-
|
|
314
|
-
|
|
304
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
305
|
+
description: Optional[str] = Field(default=None)
|
|
315
306
|
additional_meta_data: Optional[Any] = Field(
|
|
316
307
|
alias="additionalMetaData", default=None
|
|
317
308
|
)
|
|
318
|
-
|
|
319
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
320
|
-
)
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
class TotalPriceFragment(BaseModel):
|
|
324
|
-
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
325
|
-
total: "TotalPriceFragmentTotal"
|
|
309
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
326
310
|
|
|
327
311
|
|
|
328
|
-
class
|
|
329
|
-
|
|
330
|
-
|
|
312
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
313
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
314
|
+
alias="downgradePlan", default=None
|
|
315
|
+
)
|
|
331
316
|
|
|
332
317
|
|
|
333
|
-
class
|
|
334
|
-
|
|
335
|
-
|
|
318
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
319
|
+
ref_id: str = Field(alias="refId")
|
|
320
|
+
display_name: str = Field(alias="displayName")
|
|
336
321
|
|
|
337
322
|
|
|
338
323
|
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
@@ -353,27 +338,6 @@ class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
|
353
338
|
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
354
339
|
|
|
355
340
|
|
|
356
|
-
class ProductFragment(BaseModel):
|
|
357
|
-
ref_id: str = Field(alias="refId")
|
|
358
|
-
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
359
|
-
description: Optional[str] = Field(default=None)
|
|
360
|
-
additional_meta_data: Optional[Any] = Field(
|
|
361
|
-
alias="additionalMetaData", default=None
|
|
362
|
-
)
|
|
363
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
class ProductFragmentProductSettings(BaseModel):
|
|
367
|
-
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
368
|
-
alias="downgradePlan", default=None
|
|
369
|
-
)
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
373
|
-
ref_id: str = Field(alias="refId")
|
|
374
|
-
display_name: str = Field(alias="displayName")
|
|
375
|
-
|
|
376
|
-
|
|
377
341
|
class PlanFragment(BaseModel):
|
|
378
342
|
id: str
|
|
379
343
|
ref_id: str = Field(alias="refId")
|
|
@@ -455,6 +419,33 @@ class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
|
455
419
|
limit: float
|
|
456
420
|
|
|
457
421
|
|
|
422
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
423
|
+
billing_id: str = Field(alias="billingId")
|
|
424
|
+
status: SubscriptionInvoiceStatus
|
|
425
|
+
created_at: Any = Field(alias="createdAt")
|
|
426
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
427
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
428
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
429
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
430
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
431
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
432
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
433
|
+
alias="billingReason", default=None
|
|
434
|
+
)
|
|
435
|
+
currency: Optional[str] = Field(default=None)
|
|
436
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
437
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
438
|
+
alias="subTotalExcludingTax", default=None
|
|
439
|
+
)
|
|
440
|
+
total: Optional[float] = Field(default=None)
|
|
441
|
+
total_excluding_tax: Optional[float] = Field(
|
|
442
|
+
alias="totalExcludingTax", default=None
|
|
443
|
+
)
|
|
444
|
+
tax: Optional[float] = Field(default=None)
|
|
445
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
446
|
+
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
447
|
+
|
|
448
|
+
|
|
458
449
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
459
450
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
460
451
|
alias="subscriptionScheduleType"
|
|
@@ -617,37 +608,46 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
617
608
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
618
609
|
|
|
619
610
|
|
|
620
|
-
class
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
611
|
+
class SlimCustomerFragment(BaseModel):
|
|
612
|
+
id: str
|
|
613
|
+
name: Optional[str] = Field(default=None)
|
|
614
|
+
email: Optional[str] = Field(default=None)
|
|
615
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
624
616
|
updated_at: Any = Field(alias="updatedAt")
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
631
|
-
alias="billingReason", default=None
|
|
632
|
-
)
|
|
633
|
-
currency: Optional[str] = Field(default=None)
|
|
634
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
635
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
636
|
-
alias="subTotalExcludingTax", default=None
|
|
617
|
+
ref_id: str = Field(alias="refId")
|
|
618
|
+
customer_id: str = Field(alias="customerId")
|
|
619
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
620
|
+
additional_meta_data: Optional[Any] = Field(
|
|
621
|
+
alias="additionalMetaData", default=None
|
|
637
622
|
)
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
alias="totalExcludingTax", default=None
|
|
623
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
624
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
641
625
|
)
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
626
|
+
|
|
627
|
+
|
|
628
|
+
class CustomerResourceFragment(BaseModel):
|
|
629
|
+
resource_id: str = Field(alias="resourceId")
|
|
645
630
|
|
|
646
631
|
|
|
647
632
|
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
648
633
|
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
649
634
|
|
|
650
635
|
|
|
636
|
+
class TotalPriceFragment(BaseModel):
|
|
637
|
+
sub_total: "TotalPriceFragmentSubTotal" = Field(alias="subTotal")
|
|
638
|
+
total: "TotalPriceFragmentTotal"
|
|
639
|
+
|
|
640
|
+
|
|
641
|
+
class TotalPriceFragmentSubTotal(BaseModel):
|
|
642
|
+
amount: float
|
|
643
|
+
currency: Currency
|
|
644
|
+
|
|
645
|
+
|
|
646
|
+
class TotalPriceFragmentTotal(BaseModel):
|
|
647
|
+
amount: float
|
|
648
|
+
currency: Currency
|
|
649
|
+
|
|
650
|
+
|
|
651
651
|
class SubscriptionFutureUpdateData(BaseModel):
|
|
652
652
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
653
653
|
alias="subscriptionScheduleType"
|
|
@@ -988,6 +988,35 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
988
988
|
)
|
|
989
989
|
|
|
990
990
|
|
|
991
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
992
|
+
status: PromotionalEntitlementStatus
|
|
993
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
994
|
+
feature_id: str = Field(alias="featureId")
|
|
995
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
996
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
997
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
998
|
+
alias="resetPeriod", default=None
|
|
999
|
+
)
|
|
1000
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1001
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1002
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1003
|
+
|
|
1004
|
+
|
|
1005
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1006
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1007
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1008
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1009
|
+
feature_units_plural: Optional[str] = Field(
|
|
1010
|
+
alias="featureUnitsPlural", default=None
|
|
1011
|
+
)
|
|
1012
|
+
display_name: str = Field(alias="displayName")
|
|
1013
|
+
description: Optional[str] = Field(default=None)
|
|
1014
|
+
ref_id: str = Field(alias="refId")
|
|
1015
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1016
|
+
alias="additionalMetaData", default=None
|
|
1017
|
+
)
|
|
1018
|
+
|
|
1019
|
+
|
|
991
1020
|
class CouponFragment(BaseModel):
|
|
992
1021
|
id: str
|
|
993
1022
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1022,35 +1051,6 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1022
1051
|
status: SyncStatus
|
|
1023
1052
|
|
|
1024
1053
|
|
|
1025
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
1026
|
-
status: PromotionalEntitlementStatus
|
|
1027
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1028
|
-
feature_id: str = Field(alias="featureId")
|
|
1029
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1030
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1031
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1032
|
-
alias="resetPeriod", default=None
|
|
1033
|
-
)
|
|
1034
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1035
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1036
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1037
|
-
|
|
1038
|
-
|
|
1039
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1040
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1041
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1042
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1043
|
-
feature_units_plural: Optional[str] = Field(
|
|
1044
|
-
alias="featureUnitsPlural", default=None
|
|
1045
|
-
)
|
|
1046
|
-
display_name: str = Field(alias="displayName")
|
|
1047
|
-
description: Optional[str] = Field(default=None)
|
|
1048
|
-
ref_id: str = Field(alias="refId")
|
|
1049
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1050
|
-
alias="additionalMetaData", default=None
|
|
1051
|
-
)
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
1054
|
class CustomerFragment(SlimCustomerFragment):
|
|
1055
1055
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1056
1056
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1257,40 +1257,6 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1257
1257
|
pass
|
|
1258
1258
|
|
|
1259
1259
|
|
|
1260
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1261
|
-
addon_id: str = Field(alias="addonId")
|
|
1262
|
-
description: Optional[str] = Field(default=None)
|
|
1263
|
-
display_name: str = Field(alias="displayName")
|
|
1264
|
-
quantity: int
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1268
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1269
|
-
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1270
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1271
|
-
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1272
|
-
default=None
|
|
1273
|
-
)
|
|
1274
|
-
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1275
|
-
default=None
|
|
1276
|
-
)
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1280
|
-
amount: float
|
|
1281
|
-
currency: Currency
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1285
|
-
id: str
|
|
1286
|
-
ref_id: str = Field(alias="refId")
|
|
1287
|
-
display_name: str = Field(alias="displayName")
|
|
1288
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1289
|
-
feature_units_plural: Optional[str] = Field(
|
|
1290
|
-
alias="featureUnitsPlural", default=None
|
|
1291
|
-
)
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
1260
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1295
1261
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1296
1262
|
alias="subscriptionScheduleType"
|
|
@@ -1460,6 +1426,40 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1460
1426
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1461
1427
|
|
|
1462
1428
|
|
|
1429
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1430
|
+
addon_id: str = Field(alias="addonId")
|
|
1431
|
+
description: Optional[str] = Field(default=None)
|
|
1432
|
+
display_name: str = Field(alias="displayName")
|
|
1433
|
+
quantity: int
|
|
1434
|
+
|
|
1435
|
+
|
|
1436
|
+
class CustomerPortalSubscriptionPriceFragment(BaseModel):
|
|
1437
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
1438
|
+
billing_model: Optional[BillingModel] = Field(alias="billingModel", default=None)
|
|
1439
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
1440
|
+
price: Optional["CustomerPortalSubscriptionPriceFragmentPrice"] = Field(
|
|
1441
|
+
default=None
|
|
1442
|
+
)
|
|
1443
|
+
feature: Optional["CustomerPortalSubscriptionPriceFragmentFeature"] = Field(
|
|
1444
|
+
default=None
|
|
1445
|
+
)
|
|
1446
|
+
|
|
1447
|
+
|
|
1448
|
+
class CustomerPortalSubscriptionPriceFragmentPrice(BaseModel):
|
|
1449
|
+
amount: float
|
|
1450
|
+
currency: Currency
|
|
1451
|
+
|
|
1452
|
+
|
|
1453
|
+
class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
1454
|
+
id: str
|
|
1455
|
+
ref_id: str = Field(alias="refId")
|
|
1456
|
+
display_name: str = Field(alias="displayName")
|
|
1457
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1458
|
+
feature_units_plural: Optional[str] = Field(
|
|
1459
|
+
alias="featureUnitsPlural", default=None
|
|
1460
|
+
)
|
|
1461
|
+
|
|
1462
|
+
|
|
1463
1463
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1464
1464
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1465
1465
|
plan_id: str = Field(alias="planId")
|
|
@@ -2829,37 +2829,37 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2829
2829
|
|
|
2830
2830
|
AddonDependencyFragment.model_rebuild()
|
|
2831
2831
|
PriceTierFragment.model_rebuild()
|
|
2832
|
+
OveragePriceFragment.model_rebuild()
|
|
2832
2833
|
PriceFragment.model_rebuild()
|
|
2833
2834
|
PackageEntitlementFragment.model_rebuild()
|
|
2834
|
-
OveragePriceFragment.model_rebuild()
|
|
2835
2835
|
AddonFragment.model_rebuild()
|
|
2836
2836
|
FeatureFragment.model_rebuild()
|
|
2837
2837
|
EntitlementFragment.model_rebuild()
|
|
2838
|
-
CustomerResourceFragment.model_rebuild()
|
|
2839
|
-
SlimCustomerFragment.model_rebuild()
|
|
2840
|
-
TotalPriceFragment.model_rebuild()
|
|
2841
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2842
2838
|
ProductFragment.model_rebuild()
|
|
2839
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2843
2840
|
PlanFragment.model_rebuild()
|
|
2844
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2845
2841
|
SubscriptionInvoiceFragment.model_rebuild()
|
|
2842
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2843
|
+
SlimCustomerFragment.model_rebuild()
|
|
2844
|
+
CustomerResourceFragment.model_rebuild()
|
|
2846
2845
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2846
|
+
TotalPriceFragment.model_rebuild()
|
|
2847
2847
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2848
2848
|
SubscriptionFragment.model_rebuild()
|
|
2849
2849
|
ApplySubscriptionFragment.model_rebuild()
|
|
2850
2850
|
FontVariantFragment.model_rebuild()
|
|
2851
2851
|
TypographyConfigurationFragment.model_rebuild()
|
|
2852
2852
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2853
|
-
CouponFragment.model_rebuild()
|
|
2854
2853
|
PromotionalEntitlementFragment.model_rebuild()
|
|
2854
|
+
CouponFragment.model_rebuild()
|
|
2855
2855
|
CustomerFragment.model_rebuild()
|
|
2856
2856
|
CheckoutStateFragment.model_rebuild()
|
|
2857
2857
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2858
2858
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2859
2859
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2860
|
+
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2860
2861
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2861
2862
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2862
|
-
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2863
2863
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2864
2864
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2865
2865
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=Ax7idhOxqqwhmzBPImea0R-KRcq7j5EQNVAqUFbMl_8,3551
|
|
|
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=EVvFINUsmnUOpLGWRioFuhqcEjf8VqL6-NsAEkIQUgg,103124
|
|
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
|
|
@@ -161,7 +161,7 @@ stigg/generated/transfer_subscription_to_resource.py,sha256=4-N7quYhHpVTGPi6EV-U
|
|
|
161
161
|
stigg/generated/unarchive_customer.py,sha256=0OVttDrNNOHp6xIpLfDj--XfZL0ogkSpy9eW71jND2k,441
|
|
162
162
|
stigg/generated/update_customer.py,sha256=DdbIKqG3AxIJie6Wk49m4dSVyXrQbY6UjhReZR6lkIM,403
|
|
163
163
|
stigg/generated/update_subscription.py,sha256=R7RdFcFh1oEz-AHLiMBW5XvpQTi3ucB3Z4r-LvZjHJQ,457
|
|
164
|
-
stigg_api_client_v2-2.
|
|
165
|
-
stigg_api_client_v2-2.
|
|
166
|
-
stigg_api_client_v2-2.
|
|
167
|
-
stigg_api_client_v2-2.
|
|
164
|
+
stigg_api_client_v2-2.448.2.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.448.2.dist-info/METADATA,sha256=J63yrHuE9y-Qkz6ic9v1hnpSvZP5Bimzb3FtjHiUKYc,2258
|
|
166
|
+
stigg_api_client_v2-2.448.2.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.448.2.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|