stigg-api-client-v2 2.285.0__py3-none-any.whl → 2.287.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of stigg-api-client-v2 might be problematic. Click here for more details.
- stigg/generated/fragments.py +337 -337
- {stigg_api_client_v2-2.285.0.dist-info → stigg_api_client_v2-2.287.0.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.285.0.dist-info → stigg_api_client_v2-2.287.0.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.285.0.dist-info → stigg_api_client_v2-2.287.0.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.285.0.dist-info → stigg_api_client_v2-2.287.0.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -59,6 +59,39 @@ class AddonDependencyFragment(BaseModel):
|
|
|
59
59
|
description: Optional[str] = Field(default=None)
|
|
60
60
|
|
|
61
61
|
|
|
62
|
+
class PackageEntitlementFragment(BaseModel):
|
|
63
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
64
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
65
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
66
|
+
feature_id: str = Field(alias="featureId")
|
|
67
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
68
|
+
alias="resetPeriod", default=None
|
|
69
|
+
)
|
|
70
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
71
|
+
alias="hiddenFromWidgets", default=None
|
|
72
|
+
)
|
|
73
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
74
|
+
display_name_override: Optional[str] = Field(
|
|
75
|
+
alias="displayNameOverride", default=None
|
|
76
|
+
)
|
|
77
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
81
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
82
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
83
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
84
|
+
feature_units_plural: Optional[str] = Field(
|
|
85
|
+
alias="featureUnitsPlural", default=None
|
|
86
|
+
)
|
|
87
|
+
display_name: str = Field(alias="displayName")
|
|
88
|
+
description: Optional[str] = Field(default=None)
|
|
89
|
+
ref_id: str = Field(alias="refId")
|
|
90
|
+
additional_meta_data: Optional[Any] = Field(
|
|
91
|
+
alias="additionalMetaData", default=None
|
|
92
|
+
)
|
|
93
|
+
|
|
94
|
+
|
|
62
95
|
class PriceTierFragment(BaseModel):
|
|
63
96
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
64
97
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -79,29 +112,33 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
79
112
|
currency: Currency
|
|
80
113
|
|
|
81
114
|
|
|
82
|
-
class
|
|
115
|
+
class PriceFragment(BaseModel):
|
|
83
116
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
84
117
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
118
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
85
119
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
120
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
121
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
86
122
|
billing_country_code: Optional[str] = Field(
|
|
87
123
|
alias="billingCountryCode", default=None
|
|
88
124
|
)
|
|
89
|
-
price: Optional["
|
|
125
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
90
126
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
91
|
-
tiers: Optional[List["
|
|
92
|
-
feature: Optional["
|
|
127
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
128
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
129
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
93
130
|
|
|
94
131
|
|
|
95
|
-
class
|
|
132
|
+
class PriceFragmentPrice(BaseModel):
|
|
96
133
|
amount: float
|
|
97
134
|
currency: Currency
|
|
98
135
|
|
|
99
136
|
|
|
100
|
-
class
|
|
137
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
101
138
|
pass
|
|
102
139
|
|
|
103
140
|
|
|
104
|
-
class
|
|
141
|
+
class PriceFragmentFeature(BaseModel):
|
|
105
142
|
ref_id: str = Field(alias="refId")
|
|
106
143
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
107
144
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -111,33 +148,29 @@ class OveragePriceFragmentFeature(BaseModel):
|
|
|
111
148
|
description: Optional[str] = Field(default=None)
|
|
112
149
|
|
|
113
150
|
|
|
114
|
-
class
|
|
151
|
+
class OveragePriceFragment(BaseModel):
|
|
115
152
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
116
153
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
117
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
118
154
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
119
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
120
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
121
155
|
billing_country_code: Optional[str] = Field(
|
|
122
156
|
alias="billingCountryCode", default=None
|
|
123
157
|
)
|
|
124
|
-
price: Optional["
|
|
158
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
125
159
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
126
|
-
tiers: Optional[List["
|
|
127
|
-
feature: Optional["
|
|
128
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
160
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
129
162
|
|
|
130
163
|
|
|
131
|
-
class
|
|
164
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
132
165
|
amount: float
|
|
133
166
|
currency: Currency
|
|
134
167
|
|
|
135
168
|
|
|
136
|
-
class
|
|
169
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
137
170
|
pass
|
|
138
171
|
|
|
139
172
|
|
|
140
|
-
class
|
|
173
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
141
174
|
ref_id: str = Field(alias="refId")
|
|
142
175
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
143
176
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -147,39 +180,6 @@ class PriceFragmentFeature(BaseModel):
|
|
|
147
180
|
description: Optional[str] = Field(default=None)
|
|
148
181
|
|
|
149
182
|
|
|
150
|
-
class PackageEntitlementFragment(BaseModel):
|
|
151
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
152
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
153
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
154
|
-
feature_id: str = Field(alias="featureId")
|
|
155
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
156
|
-
alias="resetPeriod", default=None
|
|
157
|
-
)
|
|
158
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
159
|
-
alias="hiddenFromWidgets", default=None
|
|
160
|
-
)
|
|
161
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
162
|
-
display_name_override: Optional[str] = Field(
|
|
163
|
-
alias="displayNameOverride", default=None
|
|
164
|
-
)
|
|
165
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
169
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
170
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
171
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
172
|
-
feature_units_plural: Optional[str] = Field(
|
|
173
|
-
alias="featureUnitsPlural", default=None
|
|
174
|
-
)
|
|
175
|
-
display_name: str = Field(alias="displayName")
|
|
176
|
-
description: Optional[str] = Field(default=None)
|
|
177
|
-
ref_id: str = Field(alias="refId")
|
|
178
|
-
additional_meta_data: Optional[Any] = Field(
|
|
179
|
-
alias="additionalMetaData", default=None
|
|
180
|
-
)
|
|
181
|
-
|
|
182
|
-
|
|
183
183
|
class AddonFragment(BaseModel):
|
|
184
184
|
id: str
|
|
185
185
|
ref_id: str = Field(alias="refId")
|
|
@@ -298,162 +298,30 @@ class EntitlementFragmentFeature(FeatureFragment):
|
|
|
298
298
|
pass
|
|
299
299
|
|
|
300
300
|
|
|
301
|
-
class
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
301
|
+
class SubscriptionInvoiceFragment(BaseModel):
|
|
302
|
+
billing_id: str = Field(alias="billingId")
|
|
303
|
+
status: SubscriptionInvoiceStatus
|
|
304
|
+
created_at: Any = Field(alias="createdAt")
|
|
305
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
306
|
+
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
307
|
+
requires_action: bool = Field(alias="requiresAction")
|
|
308
|
+
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
309
|
+
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
310
|
+
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
311
|
+
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
312
|
+
alias="billingReason", default=None
|
|
308
313
|
)
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
alias="
|
|
314
|
+
currency: Optional[str] = Field(default=None)
|
|
315
|
+
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
316
|
+
sub_total_excluding_tax: Optional[float] = Field(
|
|
317
|
+
alias="subTotalExcludingTax", default=None
|
|
313
318
|
)
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
321
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
322
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
323
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
324
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
325
|
-
],
|
|
326
|
-
Field(discriminator="typename__"),
|
|
327
|
-
]
|
|
328
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
332
|
-
id: str
|
|
333
|
-
ref_id: str = Field(alias="refId")
|
|
334
|
-
display_name: str = Field(alias="displayName")
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
338
|
-
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
339
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
340
|
-
new_quantity: float = Field(alias="newQuantity")
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
344
|
-
BaseModel
|
|
345
|
-
):
|
|
346
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
347
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
348
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
352
|
-
BaseModel
|
|
353
|
-
):
|
|
354
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
355
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
359
|
-
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
363
|
-
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
364
|
-
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
365
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
366
|
-
billable_features: Optional[
|
|
367
|
-
List[
|
|
368
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
369
|
-
]
|
|
370
|
-
] = Field(alias="billableFeatures", default=None)
|
|
371
|
-
addons: Optional[
|
|
372
|
-
List[
|
|
373
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
374
|
-
]
|
|
375
|
-
] = Field(default=None)
|
|
376
|
-
price_overrides: Optional[
|
|
377
|
-
List[
|
|
378
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
379
|
-
]
|
|
380
|
-
] = Field(alias="priceOverrides", default=None)
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
384
|
-
BaseModel
|
|
385
|
-
):
|
|
386
|
-
feature_id: str = Field(alias="featureId")
|
|
387
|
-
quantity: float
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
391
|
-
BaseModel
|
|
392
|
-
):
|
|
393
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
394
|
-
quantity: float
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
398
|
-
BaseModel
|
|
399
|
-
):
|
|
400
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
401
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
402
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
406
|
-
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
407
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
408
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
409
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
410
|
-
billable_features: Optional[
|
|
411
|
-
List[
|
|
412
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
413
|
-
]
|
|
414
|
-
] = Field(alias="billableFeatures", default=None)
|
|
415
|
-
addons: Optional[
|
|
416
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
417
|
-
] = Field(default=None)
|
|
418
|
-
price_overrides: Optional[
|
|
419
|
-
List[
|
|
420
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
421
|
-
]
|
|
422
|
-
] = Field(alias="priceOverrides", default=None)
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
426
|
-
BaseModel
|
|
427
|
-
):
|
|
428
|
-
feature_id: str = Field(alias="featureId")
|
|
429
|
-
quantity: float
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
433
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
434
|
-
quantity: float
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
438
|
-
BaseModel
|
|
439
|
-
):
|
|
440
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
441
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
442
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
446
|
-
BaseModel
|
|
447
|
-
):
|
|
448
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
449
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
450
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
454
|
-
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
455
|
-
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
456
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
319
|
+
total: Optional[float] = Field(default=None)
|
|
320
|
+
total_excluding_tax: Optional[float] = Field(
|
|
321
|
+
alias="totalExcludingTax", default=None
|
|
322
|
+
)
|
|
323
|
+
tax: Optional[float] = Field(default=None)
|
|
324
|
+
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
457
325
|
|
|
458
326
|
|
|
459
327
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -618,6 +486,28 @@ class SubscriptionScheduledUpdateDataScheduleVariablesUnitAmountChangeVariables(
|
|
|
618
486
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
619
487
|
|
|
620
488
|
|
|
489
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
490
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
491
|
+
|
|
492
|
+
|
|
493
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
494
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
495
|
+
display_name: str = Field(alias="displayName")
|
|
496
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
497
|
+
default=None
|
|
498
|
+
)
|
|
499
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
500
|
+
|
|
501
|
+
|
|
502
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
503
|
+
pass
|
|
504
|
+
|
|
505
|
+
|
|
506
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
507
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
508
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
509
|
+
|
|
510
|
+
|
|
621
511
|
class ProductFragment(BaseModel):
|
|
622
512
|
ref_id: str = Field(alias="refId")
|
|
623
513
|
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
@@ -639,24 +529,6 @@ class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
|
639
529
|
display_name: str = Field(alias="displayName")
|
|
640
530
|
|
|
641
531
|
|
|
642
|
-
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
643
|
-
package_group_id: str = Field(alias="packageGroupId")
|
|
644
|
-
display_name: str = Field(alias="displayName")
|
|
645
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
646
|
-
default=None
|
|
647
|
-
)
|
|
648
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
652
|
-
pass
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
656
|
-
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
657
|
-
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
658
|
-
|
|
659
|
-
|
|
660
532
|
class PlanFragment(BaseModel):
|
|
661
533
|
id: str
|
|
662
534
|
ref_id: str = Field(alias="refId")
|
|
@@ -692,50 +564,221 @@ class PlanFragment(BaseModel):
|
|
|
692
564
|
)
|
|
693
565
|
|
|
694
566
|
|
|
695
|
-
class PlanFragmentProduct(ProductFragment):
|
|
696
|
-
pass
|
|
567
|
+
class PlanFragmentProduct(ProductFragment):
|
|
568
|
+
pass
|
|
569
|
+
|
|
570
|
+
|
|
571
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
572
|
+
ref_id: str = Field(alias="refId")
|
|
573
|
+
display_name: str = Field(alias="displayName")
|
|
574
|
+
|
|
575
|
+
|
|
576
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
577
|
+
pass
|
|
578
|
+
|
|
579
|
+
|
|
580
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
581
|
+
pass
|
|
582
|
+
|
|
583
|
+
|
|
584
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
585
|
+
pass
|
|
586
|
+
|
|
587
|
+
|
|
588
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
589
|
+
pass
|
|
590
|
+
|
|
591
|
+
|
|
592
|
+
class PlanFragmentPrices(PriceFragment):
|
|
593
|
+
pass
|
|
594
|
+
|
|
595
|
+
|
|
596
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
597
|
+
pass
|
|
598
|
+
|
|
599
|
+
|
|
600
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
601
|
+
duration: float
|
|
602
|
+
units: TrialPeriodUnits
|
|
603
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
604
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
605
|
+
alias="trialEndBehavior", default=None
|
|
606
|
+
)
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
610
|
+
limit: float
|
|
611
|
+
|
|
612
|
+
|
|
613
|
+
class SlimCustomerFragment(BaseModel):
|
|
614
|
+
id: str
|
|
615
|
+
name: Optional[str] = Field(default=None)
|
|
616
|
+
email: Optional[str] = Field(default=None)
|
|
617
|
+
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
618
|
+
updated_at: Any = Field(alias="updatedAt")
|
|
619
|
+
ref_id: str = Field(alias="refId")
|
|
620
|
+
customer_id: str = Field(alias="customerId")
|
|
621
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
622
|
+
additional_meta_data: Optional[Any] = Field(
|
|
623
|
+
alias="additionalMetaData", default=None
|
|
624
|
+
)
|
|
625
|
+
aws_marketplace_customer_id: Optional[str] = Field(
|
|
626
|
+
alias="awsMarketplaceCustomerId", default=None
|
|
627
|
+
)
|
|
628
|
+
|
|
629
|
+
|
|
630
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
631
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
632
|
+
alias="subscriptionScheduleType"
|
|
633
|
+
)
|
|
634
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
635
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
636
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
637
|
+
alias="targetPackage", default=None
|
|
638
|
+
)
|
|
639
|
+
schedule_variables: Optional[
|
|
640
|
+
Annotated[
|
|
641
|
+
Union[
|
|
642
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
643
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
644
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
645
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
646
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
647
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
648
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
649
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
650
|
+
],
|
|
651
|
+
Field(discriminator="typename__"),
|
|
652
|
+
]
|
|
653
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
654
|
+
|
|
655
|
+
|
|
656
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
657
|
+
id: str
|
|
658
|
+
ref_id: str = Field(alias="refId")
|
|
659
|
+
display_name: str = Field(alias="displayName")
|
|
660
|
+
|
|
661
|
+
|
|
662
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
663
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
664
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
665
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
666
|
+
|
|
667
|
+
|
|
668
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
669
|
+
BaseModel
|
|
670
|
+
):
|
|
671
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
672
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
673
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
697
674
|
|
|
698
675
|
|
|
699
|
-
class
|
|
700
|
-
|
|
701
|
-
|
|
676
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
677
|
+
BaseModel
|
|
678
|
+
):
|
|
679
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
680
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
702
681
|
|
|
703
682
|
|
|
704
|
-
class
|
|
705
|
-
|
|
683
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
684
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
706
685
|
|
|
707
686
|
|
|
708
|
-
class
|
|
709
|
-
|
|
687
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
688
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
689
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
690
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
691
|
+
billable_features: Optional[
|
|
692
|
+
List[
|
|
693
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
694
|
+
]
|
|
695
|
+
] = Field(alias="billableFeatures", default=None)
|
|
696
|
+
addons: Optional[
|
|
697
|
+
List[
|
|
698
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
699
|
+
]
|
|
700
|
+
] = Field(default=None)
|
|
701
|
+
price_overrides: Optional[
|
|
702
|
+
List[
|
|
703
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
704
|
+
]
|
|
705
|
+
] = Field(alias="priceOverrides", default=None)
|
|
710
706
|
|
|
711
707
|
|
|
712
|
-
class
|
|
713
|
-
|
|
708
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
709
|
+
BaseModel
|
|
710
|
+
):
|
|
711
|
+
feature_id: str = Field(alias="featureId")
|
|
712
|
+
quantity: float
|
|
714
713
|
|
|
715
714
|
|
|
716
|
-
class
|
|
717
|
-
|
|
715
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
716
|
+
BaseModel
|
|
717
|
+
):
|
|
718
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
719
|
+
quantity: float
|
|
718
720
|
|
|
719
721
|
|
|
720
|
-
class
|
|
721
|
-
|
|
722
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
723
|
+
BaseModel
|
|
724
|
+
):
|
|
725
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
726
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
727
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
722
728
|
|
|
723
729
|
|
|
724
|
-
class
|
|
725
|
-
|
|
730
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
731
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
732
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
733
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
734
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
735
|
+
billable_features: Optional[
|
|
736
|
+
List[
|
|
737
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
738
|
+
]
|
|
739
|
+
] = Field(alias="billableFeatures", default=None)
|
|
740
|
+
addons: Optional[
|
|
741
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
742
|
+
] = Field(default=None)
|
|
743
|
+
price_overrides: Optional[
|
|
744
|
+
List[
|
|
745
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
746
|
+
]
|
|
747
|
+
] = Field(alias="priceOverrides", default=None)
|
|
726
748
|
|
|
727
749
|
|
|
728
|
-
class
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
alias="trialEndBehavior", default=None
|
|
734
|
-
)
|
|
750
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
751
|
+
BaseModel
|
|
752
|
+
):
|
|
753
|
+
feature_id: str = Field(alias="featureId")
|
|
754
|
+
quantity: float
|
|
735
755
|
|
|
736
756
|
|
|
737
|
-
class
|
|
738
|
-
|
|
757
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
758
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
759
|
+
quantity: float
|
|
760
|
+
|
|
761
|
+
|
|
762
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
763
|
+
BaseModel
|
|
764
|
+
):
|
|
765
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
766
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
767
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
768
|
+
|
|
769
|
+
|
|
770
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
771
|
+
BaseModel
|
|
772
|
+
):
|
|
773
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
774
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
775
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
776
|
+
|
|
777
|
+
|
|
778
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
779
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
780
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
781
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
739
782
|
|
|
740
783
|
|
|
741
784
|
class TotalPriceFragment(BaseModel):
|
|
@@ -753,53 +796,10 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
753
796
|
currency: Currency
|
|
754
797
|
|
|
755
798
|
|
|
756
|
-
class SlimCustomerFragment(BaseModel):
|
|
757
|
-
id: str
|
|
758
|
-
name: Optional[str] = Field(default=None)
|
|
759
|
-
email: Optional[str] = Field(default=None)
|
|
760
|
-
created_at: Optional[Any] = Field(alias="createdAt", default=None)
|
|
761
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
762
|
-
ref_id: str = Field(alias="refId")
|
|
763
|
-
customer_id: str = Field(alias="customerId")
|
|
764
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
765
|
-
additional_meta_data: Optional[Any] = Field(
|
|
766
|
-
alias="additionalMetaData", default=None
|
|
767
|
-
)
|
|
768
|
-
aws_marketplace_customer_id: Optional[str] = Field(
|
|
769
|
-
alias="awsMarketplaceCustomerId", default=None
|
|
770
|
-
)
|
|
771
|
-
|
|
772
|
-
|
|
773
799
|
class CustomerResourceFragment(BaseModel):
|
|
774
800
|
resource_id: str = Field(alias="resourceId")
|
|
775
801
|
|
|
776
802
|
|
|
777
|
-
class SubscriptionInvoiceFragment(BaseModel):
|
|
778
|
-
billing_id: str = Field(alias="billingId")
|
|
779
|
-
status: SubscriptionInvoiceStatus
|
|
780
|
-
created_at: Any = Field(alias="createdAt")
|
|
781
|
-
updated_at: Any = Field(alias="updatedAt")
|
|
782
|
-
error_message: Optional[str] = Field(alias="errorMessage", default=None)
|
|
783
|
-
requires_action: bool = Field(alias="requiresAction")
|
|
784
|
-
payment_secret: Optional[str] = Field(alias="paymentSecret", default=None)
|
|
785
|
-
payment_url: Optional[str] = Field(alias="paymentUrl", default=None)
|
|
786
|
-
pdf_url: Optional[str] = Field(alias="pdfUrl", default=None)
|
|
787
|
-
billing_reason: Optional[SubscriptionInvoiceBillingReason] = Field(
|
|
788
|
-
alias="billingReason", default=None
|
|
789
|
-
)
|
|
790
|
-
currency: Optional[str] = Field(default=None)
|
|
791
|
-
sub_total: Optional[float] = Field(alias="subTotal", default=None)
|
|
792
|
-
sub_total_excluding_tax: Optional[float] = Field(
|
|
793
|
-
alias="subTotalExcludingTax", default=None
|
|
794
|
-
)
|
|
795
|
-
total: Optional[float] = Field(default=None)
|
|
796
|
-
total_excluding_tax: Optional[float] = Field(
|
|
797
|
-
alias="totalExcludingTax", default=None
|
|
798
|
-
)
|
|
799
|
-
tax: Optional[float] = Field(default=None)
|
|
800
|
-
amount_due: Optional[float] = Field(alias="amountDue", default=None)
|
|
801
|
-
|
|
802
|
-
|
|
803
803
|
class SubscriptionFragment(BaseModel):
|
|
804
804
|
id: str
|
|
805
805
|
subscription_id: str = Field(alias="subscriptionId")
|
|
@@ -986,35 +986,6 @@ class CheckoutConfigurationFragmentContent(BaseModel):
|
|
|
986
986
|
)
|
|
987
987
|
|
|
988
988
|
|
|
989
|
-
class PromotionalEntitlementFragment(BaseModel):
|
|
990
|
-
status: PromotionalEntitlementStatus
|
|
991
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
992
|
-
feature_id: str = Field(alias="featureId")
|
|
993
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
994
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
995
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
996
|
-
alias="resetPeriod", default=None
|
|
997
|
-
)
|
|
998
|
-
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
999
|
-
is_visible: bool = Field(alias="isVisible")
|
|
1000
|
-
feature: "PromotionalEntitlementFragmentFeature"
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1004
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
1005
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1006
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1007
|
-
feature_units_plural: Optional[str] = Field(
|
|
1008
|
-
alias="featureUnitsPlural", default=None
|
|
1009
|
-
)
|
|
1010
|
-
display_name: str = Field(alias="displayName")
|
|
1011
|
-
description: Optional[str] = Field(default=None)
|
|
1012
|
-
ref_id: str = Field(alias="refId")
|
|
1013
|
-
additional_meta_data: Optional[Any] = Field(
|
|
1014
|
-
alias="additionalMetaData", default=None
|
|
1015
|
-
)
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
989
|
class CouponFragment(BaseModel):
|
|
1019
990
|
id: str
|
|
1020
991
|
discount_value: float = Field(alias="discountValue")
|
|
@@ -1049,6 +1020,35 @@ class CouponFragmentSyncStates(BaseModel):
|
|
|
1049
1020
|
status: SyncStatus
|
|
1050
1021
|
|
|
1051
1022
|
|
|
1023
|
+
class PromotionalEntitlementFragment(BaseModel):
|
|
1024
|
+
status: PromotionalEntitlementStatus
|
|
1025
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
1026
|
+
feature_id: str = Field(alias="featureId")
|
|
1027
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
1028
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
1029
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
1030
|
+
alias="resetPeriod", default=None
|
|
1031
|
+
)
|
|
1032
|
+
end_date: Optional[Any] = Field(alias="endDate", default=None)
|
|
1033
|
+
is_visible: bool = Field(alias="isVisible")
|
|
1034
|
+
feature: "PromotionalEntitlementFragmentFeature"
|
|
1035
|
+
|
|
1036
|
+
|
|
1037
|
+
class PromotionalEntitlementFragmentFeature(BaseModel):
|
|
1038
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
1039
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
1040
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
1041
|
+
feature_units_plural: Optional[str] = Field(
|
|
1042
|
+
alias="featureUnitsPlural", default=None
|
|
1043
|
+
)
|
|
1044
|
+
display_name: str = Field(alias="displayName")
|
|
1045
|
+
description: Optional[str] = Field(default=None)
|
|
1046
|
+
ref_id: str = Field(alias="refId")
|
|
1047
|
+
additional_meta_data: Optional[Any] = Field(
|
|
1048
|
+
alias="additionalMetaData", default=None
|
|
1049
|
+
)
|
|
1050
|
+
|
|
1051
|
+
|
|
1052
1052
|
class CustomerFragment(SlimCustomerFragment):
|
|
1053
1053
|
has_payment_method: bool = Field(alias="hasPaymentMethod")
|
|
1054
1054
|
has_active_subscription: bool = Field(alias="hasActiveSubscription")
|
|
@@ -1249,6 +1249,13 @@ class CustomerPortalEntitlementFragmentFeature(FeatureFragment):
|
|
|
1249
1249
|
pass
|
|
1250
1250
|
|
|
1251
1251
|
|
|
1252
|
+
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1253
|
+
addon_id: str = Field(alias="addonId")
|
|
1254
|
+
description: Optional[str] = Field(default=None)
|
|
1255
|
+
display_name: str = Field(alias="displayName")
|
|
1256
|
+
quantity: int
|
|
1257
|
+
|
|
1258
|
+
|
|
1252
1259
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1253
1260
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1254
1261
|
alias="subscriptionScheduleType"
|
|
@@ -1445,13 +1452,6 @@ class CustomerPortalSubscriptionPriceFragmentFeature(BaseModel):
|
|
|
1445
1452
|
)
|
|
1446
1453
|
|
|
1447
1454
|
|
|
1448
|
-
class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
1449
|
-
addon_id: str = Field(alias="addonId")
|
|
1450
|
-
description: Optional[str] = Field(default=None)
|
|
1451
|
-
display_name: str = Field(alias="displayName")
|
|
1452
|
-
quantity: int
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
1455
|
class CustomerPortalSubscriptionFragment(BaseModel):
|
|
1456
1456
|
subscription_id: str = Field(alias="subscriptionId")
|
|
1457
1457
|
plan_id: str = Field(alias="planId")
|
|
@@ -2762,38 +2762,38 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2762
2762
|
|
|
2763
2763
|
|
|
2764
2764
|
AddonDependencyFragment.model_rebuild()
|
|
2765
|
+
PackageEntitlementFragment.model_rebuild()
|
|
2765
2766
|
PriceTierFragment.model_rebuild()
|
|
2766
|
-
OveragePriceFragment.model_rebuild()
|
|
2767
2767
|
PriceFragment.model_rebuild()
|
|
2768
|
-
|
|
2768
|
+
OveragePriceFragment.model_rebuild()
|
|
2769
2769
|
AddonFragment.model_rebuild()
|
|
2770
2770
|
FeatureFragment.model_rebuild()
|
|
2771
2771
|
EntitlementFragment.model_rebuild()
|
|
2772
|
-
|
|
2773
|
-
SubscriptionFutureUpdateData.model_rebuild()
|
|
2772
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2774
2773
|
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2775
|
-
|
|
2774
|
+
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2776
2775
|
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2776
|
+
ProductFragment.model_rebuild()
|
|
2777
2777
|
PlanFragment.model_rebuild()
|
|
2778
|
-
TotalPriceFragment.model_rebuild()
|
|
2779
2778
|
SlimCustomerFragment.model_rebuild()
|
|
2779
|
+
SubscriptionFutureUpdateData.model_rebuild()
|
|
2780
|
+
TotalPriceFragment.model_rebuild()
|
|
2780
2781
|
CustomerResourceFragment.model_rebuild()
|
|
2781
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2782
2782
|
SubscriptionFragment.model_rebuild()
|
|
2783
2783
|
ApplySubscriptionFragment.model_rebuild()
|
|
2784
2784
|
FontVariantFragment.model_rebuild()
|
|
2785
2785
|
TypographyConfigurationFragment.model_rebuild()
|
|
2786
2786
|
CheckoutConfigurationFragment.model_rebuild()
|
|
2787
|
-
PromotionalEntitlementFragment.model_rebuild()
|
|
2788
2787
|
CouponFragment.model_rebuild()
|
|
2788
|
+
PromotionalEntitlementFragment.model_rebuild()
|
|
2789
2789
|
CustomerFragment.model_rebuild()
|
|
2790
2790
|
CheckoutStateFragment.model_rebuild()
|
|
2791
2791
|
CustomerPortalBillingInformationFragment.model_rebuild()
|
|
2792
2792
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2793
2793
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2794
|
+
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2794
2795
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2795
2796
|
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2796
|
-
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2797
2797
|
CustomerPortalSubscriptionFragment.model_rebuild()
|
|
2798
2798
|
CustomerPortalPromotionalEntitlementFragment.model_rebuild()
|
|
2799
2799
|
CustomerPortalFragment.model_rebuild()
|
|
@@ -123,7 +123,7 @@ stigg/generated/enums.py,sha256=sAWkIRKUluDgemnIRIPpRnCf49mbnaTUKOc_OxDO3NY,3415
|
|
|
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=V7tPqSEauSwTm1VuvA89bqPHchVMKvwp3d2trLjH7B0,100553
|
|
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.287.0.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
164
|
+
stigg_api_client_v2-2.287.0.dist-info/METADATA,sha256=0gT4I7FctlYbN9lEIdFYbH34ZD4o9r5I5hbdnb4Nne4,2258
|
|
165
|
+
stigg_api_client_v2-2.287.0.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
166
|
+
stigg_api_client_v2-2.287.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|