stigg-api-client-v2 2.447.2__py3-none-any.whl → 2.448.1__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 +385 -385
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.1.dist-info}/METADATA +1 -1
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.1.dist-info}/RECORD +5 -5
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.1.dist-info}/LICENSE +0 -0
- {stigg_api_client_v2-2.447.2.dist-info → stigg_api_client_v2-2.448.1.dist-info}/WHEEL +0 -0
stigg/generated/fragments.py
CHANGED
|
@@ -60,6 +60,39 @@ class AddonDependencyFragment(BaseModel):
|
|
|
60
60
|
description: Optional[str] = Field(default=None)
|
|
61
61
|
|
|
62
62
|
|
|
63
|
+
class PackageEntitlementFragment(BaseModel):
|
|
64
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
65
|
+
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
66
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
67
|
+
feature_id: str = Field(alias="featureId")
|
|
68
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
69
|
+
alias="resetPeriod", default=None
|
|
70
|
+
)
|
|
71
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
72
|
+
alias="hiddenFromWidgets", default=None
|
|
73
|
+
)
|
|
74
|
+
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
75
|
+
display_name_override: Optional[str] = Field(
|
|
76
|
+
alias="displayNameOverride", default=None
|
|
77
|
+
)
|
|
78
|
+
feature: "PackageEntitlementFragmentFeature"
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
class PackageEntitlementFragmentFeature(BaseModel):
|
|
82
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
83
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
84
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
85
|
+
feature_units_plural: Optional[str] = Field(
|
|
86
|
+
alias="featureUnitsPlural", default=None
|
|
87
|
+
)
|
|
88
|
+
display_name: str = Field(alias="displayName")
|
|
89
|
+
description: Optional[str] = Field(default=None)
|
|
90
|
+
ref_id: str = Field(alias="refId")
|
|
91
|
+
additional_meta_data: Optional[Any] = Field(
|
|
92
|
+
alias="additionalMetaData", default=None
|
|
93
|
+
)
|
|
94
|
+
|
|
95
|
+
|
|
63
96
|
class PriceTierFragment(BaseModel):
|
|
64
97
|
up_to: Optional[float] = Field(alias="upTo", default=None)
|
|
65
98
|
unit_price: Optional["PriceTierFragmentUnitPrice"] = Field(
|
|
@@ -80,33 +113,29 @@ class PriceTierFragmentFlatPrice(BaseModel):
|
|
|
80
113
|
currency: Currency
|
|
81
114
|
|
|
82
115
|
|
|
83
|
-
class
|
|
116
|
+
class OveragePriceFragment(BaseModel):
|
|
84
117
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
85
118
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
86
|
-
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
87
119
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
88
|
-
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
89
|
-
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
90
120
|
billing_country_code: Optional[str] = Field(
|
|
91
121
|
alias="billingCountryCode", default=None
|
|
92
122
|
)
|
|
93
|
-
price: Optional["
|
|
123
|
+
price: Optional["OveragePriceFragmentPrice"] = Field(default=None)
|
|
94
124
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
95
|
-
tiers: Optional[List["
|
|
96
|
-
feature: Optional["
|
|
97
|
-
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
125
|
+
tiers: Optional[List["OveragePriceFragmentTiers"]] = Field(default=None)
|
|
126
|
+
feature: Optional["OveragePriceFragmentFeature"] = Field(default=None)
|
|
98
127
|
|
|
99
128
|
|
|
100
|
-
class
|
|
129
|
+
class OveragePriceFragmentPrice(BaseModel):
|
|
101
130
|
amount: float
|
|
102
131
|
currency: Currency
|
|
103
132
|
|
|
104
133
|
|
|
105
|
-
class
|
|
134
|
+
class OveragePriceFragmentTiers(PriceTierFragment):
|
|
106
135
|
pass
|
|
107
136
|
|
|
108
137
|
|
|
109
|
-
class
|
|
138
|
+
class OveragePriceFragmentFeature(BaseModel):
|
|
110
139
|
ref_id: str = Field(alias="refId")
|
|
111
140
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
112
141
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -116,62 +145,33 @@ class PriceFragmentFeature(BaseModel):
|
|
|
116
145
|
description: Optional[str] = Field(default=None)
|
|
117
146
|
|
|
118
147
|
|
|
119
|
-
class
|
|
120
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
121
|
-
has_unlimited_usage: Optional[bool] = Field(alias="hasUnlimitedUsage", default=None)
|
|
122
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
123
|
-
feature_id: str = Field(alias="featureId")
|
|
124
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
125
|
-
alias="resetPeriod", default=None
|
|
126
|
-
)
|
|
127
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
128
|
-
alias="hiddenFromWidgets", default=None
|
|
129
|
-
)
|
|
130
|
-
is_custom: Optional[bool] = Field(alias="isCustom", default=None)
|
|
131
|
-
display_name_override: Optional[str] = Field(
|
|
132
|
-
alias="displayNameOverride", default=None
|
|
133
|
-
)
|
|
134
|
-
feature: "PackageEntitlementFragmentFeature"
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
class PackageEntitlementFragmentFeature(BaseModel):
|
|
138
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
139
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
140
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
141
|
-
feature_units_plural: Optional[str] = Field(
|
|
142
|
-
alias="featureUnitsPlural", default=None
|
|
143
|
-
)
|
|
144
|
-
display_name: str = Field(alias="displayName")
|
|
145
|
-
description: Optional[str] = Field(default=None)
|
|
146
|
-
ref_id: str = Field(alias="refId")
|
|
147
|
-
additional_meta_data: Optional[Any] = Field(
|
|
148
|
-
alias="additionalMetaData", default=None
|
|
149
|
-
)
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
class OveragePriceFragment(BaseModel):
|
|
148
|
+
class PriceFragment(BaseModel):
|
|
153
149
|
billing_model: BillingModel = Field(alias="billingModel")
|
|
154
150
|
billing_period: BillingPeriod = Field(alias="billingPeriod")
|
|
151
|
+
billing_cadence: BillingCadence = Field(alias="billingCadence")
|
|
155
152
|
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
153
|
+
min_unit_quantity: Optional[float] = Field(alias="minUnitQuantity", default=None)
|
|
154
|
+
max_unit_quantity: Optional[float] = Field(alias="maxUnitQuantity", default=None)
|
|
156
155
|
billing_country_code: Optional[str] = Field(
|
|
157
156
|
alias="billingCountryCode", default=None
|
|
158
157
|
)
|
|
159
|
-
price: Optional["
|
|
158
|
+
price: Optional["PriceFragmentPrice"] = Field(default=None)
|
|
160
159
|
tiers_mode: Optional[TiersMode] = Field(alias="tiersMode", default=None)
|
|
161
|
-
tiers: Optional[List["
|
|
162
|
-
feature: Optional["
|
|
160
|
+
tiers: Optional[List["PriceFragmentTiers"]] = Field(default=None)
|
|
161
|
+
feature: Optional["PriceFragmentFeature"] = Field(default=None)
|
|
162
|
+
block_size: Optional[float] = Field(alias="blockSize", default=None)
|
|
163
163
|
|
|
164
164
|
|
|
165
|
-
class
|
|
165
|
+
class PriceFragmentPrice(BaseModel):
|
|
166
166
|
amount: float
|
|
167
167
|
currency: Currency
|
|
168
168
|
|
|
169
169
|
|
|
170
|
-
class
|
|
170
|
+
class PriceFragmentTiers(PriceTierFragment):
|
|
171
171
|
pass
|
|
172
172
|
|
|
173
173
|
|
|
174
|
-
class
|
|
174
|
+
class PriceFragmentFeature(BaseModel):
|
|
175
175
|
ref_id: str = Field(alias="refId")
|
|
176
176
|
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
177
177
|
feature_units_plural: Optional[str] = Field(
|
|
@@ -216,93 +216,6 @@ class AddonFragmentDependencies(AddonDependencyFragment):
|
|
|
216
216
|
pass
|
|
217
217
|
|
|
218
218
|
|
|
219
|
-
class FeatureFragment(BaseModel):
|
|
220
|
-
typename__: str = Field(alias="__typename")
|
|
221
|
-
feature_type: FeatureType = Field(alias="featureType")
|
|
222
|
-
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
223
|
-
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
224
|
-
feature_units_plural: Optional[str] = Field(
|
|
225
|
-
alias="featureUnitsPlural", default=None
|
|
226
|
-
)
|
|
227
|
-
description: Optional[str] = Field(default=None)
|
|
228
|
-
display_name: str = Field(alias="displayName")
|
|
229
|
-
ref_id: str = Field(alias="refId")
|
|
230
|
-
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
231
|
-
alias="unitTransformation", default=None
|
|
232
|
-
)
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
class FeatureFragmentUnitTransformation(BaseModel):
|
|
236
|
-
divide: float
|
|
237
|
-
round: UnitTransformationRound
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
class EntitlementFragment(BaseModel):
|
|
241
|
-
typename__: str = Field(alias="__typename")
|
|
242
|
-
is_granted: bool = Field(alias="isGranted")
|
|
243
|
-
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
244
|
-
alias="accessDeniedReason", default=None
|
|
245
|
-
)
|
|
246
|
-
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
247
|
-
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
248
|
-
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
249
|
-
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
250
|
-
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
251
|
-
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
252
|
-
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
253
|
-
entitlement_updated_at: Optional[Any] = Field(
|
|
254
|
-
alias="entitlementUpdatedAt", default=None
|
|
255
|
-
)
|
|
256
|
-
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
257
|
-
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
258
|
-
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
259
|
-
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
260
|
-
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
261
|
-
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
262
|
-
alias="resetPeriod", default=None
|
|
263
|
-
)
|
|
264
|
-
reset_period_configuration: Optional[
|
|
265
|
-
Annotated[
|
|
266
|
-
Union[
|
|
267
|
-
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
268
|
-
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
269
|
-
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
270
|
-
],
|
|
271
|
-
Field(discriminator="typename__"),
|
|
272
|
-
]
|
|
273
|
-
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
274
|
-
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
278
|
-
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
279
|
-
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
280
|
-
alias="monthlyAccordingTo", default=None
|
|
281
|
-
)
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
285
|
-
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
286
|
-
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
287
|
-
alias="weeklyAccordingTo", default=None
|
|
288
|
-
)
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
292
|
-
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
293
|
-
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
294
|
-
alias="yearlyAccordingTo", default=None
|
|
295
|
-
)
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
class EntitlementFragmentFeature(FeatureFragment):
|
|
299
|
-
pass
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
class CustomerResourceFragment(BaseModel):
|
|
303
|
-
resource_id: str = Field(alias="resourceId")
|
|
304
|
-
|
|
305
|
-
|
|
306
219
|
class SlimCustomerFragment(BaseModel):
|
|
307
220
|
id: str
|
|
308
221
|
name: Optional[str] = Field(default=None)
|
|
@@ -335,124 +248,162 @@ class TotalPriceFragmentTotal(BaseModel):
|
|
|
335
248
|
currency: Currency
|
|
336
249
|
|
|
337
250
|
|
|
338
|
-
class
|
|
339
|
-
|
|
340
|
-
display_name: str = Field(alias="displayName")
|
|
341
|
-
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
342
|
-
default=None
|
|
343
|
-
)
|
|
344
|
-
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
251
|
+
class SubscriptionTrialConfigurationFragment(BaseModel):
|
|
252
|
+
trial_end_behavior: TrialEndBehavior = Field(alias="trialEndBehavior")
|
|
345
253
|
|
|
346
254
|
|
|
347
|
-
class
|
|
348
|
-
|
|
255
|
+
class SubscriptionFutureUpdateData(BaseModel):
|
|
256
|
+
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
257
|
+
alias="subscriptionScheduleType"
|
|
258
|
+
)
|
|
259
|
+
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
260
|
+
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
261
|
+
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
262
|
+
alias="targetPackage", default=None
|
|
263
|
+
)
|
|
264
|
+
schedule_variables: Optional[
|
|
265
|
+
Annotated[
|
|
266
|
+
Union[
|
|
267
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
268
|
+
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
269
|
+
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
270
|
+
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
271
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
272
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
273
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
274
|
+
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
275
|
+
],
|
|
276
|
+
Field(discriminator="typename__"),
|
|
277
|
+
]
|
|
278
|
+
] = Field(alias="scheduleVariables", default=None)
|
|
349
279
|
|
|
350
280
|
|
|
351
|
-
class
|
|
352
|
-
|
|
353
|
-
|
|
281
|
+
class SubscriptionFutureUpdateDataTargetPackage(BaseModel):
|
|
282
|
+
id: str
|
|
283
|
+
ref_id: str = Field(alias="refId")
|
|
284
|
+
display_name: str = Field(alias="displayName")
|
|
354
285
|
|
|
355
286
|
|
|
356
|
-
class
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
additional_meta_data: Optional[Any] = Field(
|
|
361
|
-
alias="additionalMetaData", default=None
|
|
362
|
-
)
|
|
363
|
-
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
287
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables(BaseModel):
|
|
288
|
+
typename__: Literal["AddonChangeVariables"] = Field(alias="__typename")
|
|
289
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
290
|
+
new_quantity: float = Field(alias="newQuantity")
|
|
364
291
|
|
|
365
292
|
|
|
366
|
-
class
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
)
|
|
293
|
+
class SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables(
|
|
294
|
+
BaseModel
|
|
295
|
+
):
|
|
296
|
+
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
297
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
298
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
370
299
|
|
|
371
300
|
|
|
372
|
-
class
|
|
373
|
-
|
|
374
|
-
|
|
301
|
+
class SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables(
|
|
302
|
+
BaseModel
|
|
303
|
+
):
|
|
304
|
+
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
305
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
375
306
|
|
|
376
307
|
|
|
377
|
-
class
|
|
378
|
-
|
|
379
|
-
ref_id: str = Field(alias="refId")
|
|
380
|
-
display_name: str = Field(alias="displayName")
|
|
381
|
-
description: Optional[str] = Field(default=None)
|
|
382
|
-
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
383
|
-
version_number: int = Field(alias="versionNumber")
|
|
384
|
-
additional_meta_data: Optional[Any] = Field(
|
|
385
|
-
alias="additionalMetaData", default=None
|
|
386
|
-
)
|
|
387
|
-
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
388
|
-
alias="hiddenFromWidgets", default=None
|
|
389
|
-
)
|
|
390
|
-
product: "PlanFragmentProduct"
|
|
391
|
-
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
392
|
-
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
393
|
-
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
394
|
-
alias="inheritedEntitlements", default=None
|
|
395
|
-
)
|
|
396
|
-
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
397
|
-
alias="compatibleAddons", default=None
|
|
398
|
-
)
|
|
399
|
-
compatible_package_groups: Optional[
|
|
400
|
-
List["PlanFragmentCompatiblePackageGroups"]
|
|
401
|
-
] = Field(alias="compatiblePackageGroups", default=None)
|
|
402
|
-
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
403
|
-
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
404
|
-
alias="overagePrices", default=None
|
|
405
|
-
)
|
|
406
|
-
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
407
|
-
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
408
|
-
alias="defaultTrialConfig", default=None
|
|
409
|
-
)
|
|
308
|
+
class SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables(BaseModel):
|
|
309
|
+
typename__: Literal["CouponChangeVariables"] = Field(alias="__typename")
|
|
410
310
|
|
|
411
311
|
|
|
412
|
-
class
|
|
413
|
-
|
|
312
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables(BaseModel):
|
|
313
|
+
typename__: Literal["DowngradeChangeVariables"] = Field(alias="__typename")
|
|
314
|
+
downgrade_plan_ref_id: str = Field(alias="downgradePlanRefId")
|
|
315
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
316
|
+
billable_features: Optional[
|
|
317
|
+
List[
|
|
318
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures"
|
|
319
|
+
]
|
|
320
|
+
] = Field(alias="billableFeatures", default=None)
|
|
321
|
+
addons: Optional[
|
|
322
|
+
List[
|
|
323
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons"
|
|
324
|
+
]
|
|
325
|
+
] = Field(default=None)
|
|
326
|
+
price_overrides: Optional[
|
|
327
|
+
List[
|
|
328
|
+
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides"
|
|
329
|
+
]
|
|
330
|
+
] = Field(alias="priceOverrides", default=None)
|
|
414
331
|
|
|
415
332
|
|
|
416
|
-
class
|
|
417
|
-
|
|
418
|
-
|
|
333
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesBillableFeatures(
|
|
334
|
+
BaseModel
|
|
335
|
+
):
|
|
336
|
+
feature_id: str = Field(alias="featureId")
|
|
337
|
+
quantity: float
|
|
419
338
|
|
|
420
339
|
|
|
421
|
-
class
|
|
422
|
-
|
|
340
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesAddons(
|
|
341
|
+
BaseModel
|
|
342
|
+
):
|
|
343
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
344
|
+
quantity: float
|
|
423
345
|
|
|
424
346
|
|
|
425
|
-
class
|
|
426
|
-
|
|
347
|
+
class SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariablesPriceOverrides(
|
|
348
|
+
BaseModel
|
|
349
|
+
):
|
|
350
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
351
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
352
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
427
353
|
|
|
428
354
|
|
|
429
|
-
class
|
|
430
|
-
|
|
355
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables(BaseModel):
|
|
356
|
+
typename__: Literal["PlanChangeVariables"] = Field(alias="__typename")
|
|
357
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
358
|
+
change_type: PlanChangeType = Field(alias="changeType")
|
|
359
|
+
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
360
|
+
billable_features: Optional[
|
|
361
|
+
List[
|
|
362
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
363
|
+
]
|
|
364
|
+
] = Field(alias="billableFeatures", default=None)
|
|
365
|
+
addons: Optional[
|
|
366
|
+
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
367
|
+
] = Field(default=None)
|
|
368
|
+
price_overrides: Optional[
|
|
369
|
+
List[
|
|
370
|
+
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
371
|
+
]
|
|
372
|
+
] = Field(alias="priceOverrides", default=None)
|
|
431
373
|
|
|
432
374
|
|
|
433
|
-
class
|
|
434
|
-
|
|
375
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures(
|
|
376
|
+
BaseModel
|
|
377
|
+
):
|
|
378
|
+
feature_id: str = Field(alias="featureId")
|
|
379
|
+
quantity: float
|
|
435
380
|
|
|
436
381
|
|
|
437
|
-
class
|
|
438
|
-
|
|
382
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons(BaseModel):
|
|
383
|
+
addon_ref_id: str = Field(alias="addonRefId")
|
|
384
|
+
quantity: float
|
|
439
385
|
|
|
440
386
|
|
|
441
|
-
class
|
|
442
|
-
|
|
387
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides(
|
|
388
|
+
BaseModel
|
|
389
|
+
):
|
|
390
|
+
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
391
|
+
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
392
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
443
393
|
|
|
444
394
|
|
|
445
|
-
class
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
)
|
|
395
|
+
class SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables(
|
|
396
|
+
BaseModel
|
|
397
|
+
):
|
|
398
|
+
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
399
|
+
plan_ref_id: str = Field(alias="planRefId")
|
|
400
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
452
401
|
|
|
453
402
|
|
|
454
|
-
class
|
|
455
|
-
|
|
403
|
+
class SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables(BaseModel):
|
|
404
|
+
typename__: Literal["UnitAmountChangeVariables"] = Field(alias="__typename")
|
|
405
|
+
new_unit_amount: Optional[float] = Field(alias="newUnitAmount", default=None)
|
|
406
|
+
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
456
407
|
|
|
457
408
|
|
|
458
409
|
class SubscriptionScheduledUpdateData(BaseModel):
|
|
@@ -644,162 +595,128 @@ class SubscriptionInvoiceFragment(BaseModel):
|
|
|
644
595
|
attempt_count: Optional[float] = Field(alias="attemptCount", default=None)
|
|
645
596
|
|
|
646
597
|
|
|
647
|
-
class
|
|
648
|
-
|
|
598
|
+
class ProductFragment(BaseModel):
|
|
599
|
+
ref_id: str = Field(alias="refId")
|
|
600
|
+
display_name: Optional[str] = Field(alias="displayName", default=None)
|
|
601
|
+
description: Optional[str] = Field(default=None)
|
|
602
|
+
additional_meta_data: Optional[Any] = Field(
|
|
603
|
+
alias="additionalMetaData", default=None
|
|
604
|
+
)
|
|
605
|
+
product_settings: "ProductFragmentProductSettings" = Field(alias="productSettings")
|
|
649
606
|
|
|
650
607
|
|
|
651
|
-
class
|
|
652
|
-
|
|
653
|
-
alias="
|
|
654
|
-
)
|
|
655
|
-
schedule_status: SubscriptionScheduleStatus = Field(alias="scheduleStatus")
|
|
656
|
-
scheduled_execution_time: Any = Field(alias="scheduledExecutionTime")
|
|
657
|
-
target_package: Optional["SubscriptionFutureUpdateDataTargetPackage"] = Field(
|
|
658
|
-
alias="targetPackage", default=None
|
|
608
|
+
class ProductFragmentProductSettings(BaseModel):
|
|
609
|
+
downgrade_plan: Optional["ProductFragmentProductSettingsDowngradePlan"] = Field(
|
|
610
|
+
alias="downgradePlan", default=None
|
|
659
611
|
)
|
|
660
|
-
schedule_variables: Optional[
|
|
661
|
-
Annotated[
|
|
662
|
-
Union[
|
|
663
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonChangeVariables",
|
|
664
|
-
"SubscriptionFutureUpdateDataScheduleVariablesAddonPriceOverrideChangeVariables",
|
|
665
|
-
"SubscriptionFutureUpdateDataScheduleVariablesBillingPeriodChangeVariables",
|
|
666
|
-
"SubscriptionFutureUpdateDataScheduleVariablesCouponChangeVariables",
|
|
667
|
-
"SubscriptionFutureUpdateDataScheduleVariablesDowngradeChangeVariables",
|
|
668
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariables",
|
|
669
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanPriceOverrideChangeVariables",
|
|
670
|
-
"SubscriptionFutureUpdateDataScheduleVariablesUnitAmountChangeVariables",
|
|
671
|
-
],
|
|
672
|
-
Field(discriminator="typename__"),
|
|
673
|
-
]
|
|
674
|
-
] = Field(alias="scheduleVariables", default=None)
|
|
675
612
|
|
|
676
613
|
|
|
677
|
-
class
|
|
678
|
-
id: str
|
|
614
|
+
class ProductFragmentProductSettingsDowngradePlan(BaseModel):
|
|
679
615
|
ref_id: str = Field(alias="refId")
|
|
680
616
|
display_name: str = Field(alias="displayName")
|
|
681
617
|
|
|
682
618
|
|
|
683
|
-
class
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
BaseModel
|
|
691
|
-
):
|
|
692
|
-
typename__: Literal["AddonPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
693
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
694
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
619
|
+
class PlanCompatiblePackageGroupsFragment(BaseModel):
|
|
620
|
+
package_group_id: str = Field(alias="packageGroupId")
|
|
621
|
+
display_name: str = Field(alias="displayName")
|
|
622
|
+
addons: Optional[List["PlanCompatiblePackageGroupsFragmentAddons"]] = Field(
|
|
623
|
+
default=None
|
|
624
|
+
)
|
|
625
|
+
options: "PlanCompatiblePackageGroupsFragmentOptions"
|
|
695
626
|
|
|
696
627
|
|
|
697
|
-
class
|
|
698
|
-
|
|
699
|
-
):
|
|
700
|
-
typename__: Literal["BillingPeriodChangeVariables"] = Field(alias="__typename")
|
|
701
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
628
|
+
class PlanCompatiblePackageGroupsFragmentAddons(AddonFragment):
|
|
629
|
+
pass
|
|
702
630
|
|
|
703
631
|
|
|
704
|
-
class
|
|
705
|
-
|
|
632
|
+
class PlanCompatiblePackageGroupsFragmentOptions(BaseModel):
|
|
633
|
+
min_items: Optional[float] = Field(alias="minItems", default=None)
|
|
634
|
+
free_items: Optional[float] = Field(alias="freeItems", default=None)
|
|
706
635
|
|
|
707
636
|
|
|
708
|
-
class
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
|
|
637
|
+
class PlanFragment(BaseModel):
|
|
638
|
+
id: str
|
|
639
|
+
ref_id: str = Field(alias="refId")
|
|
640
|
+
display_name: str = Field(alias="displayName")
|
|
641
|
+
description: Optional[str] = Field(default=None)
|
|
642
|
+
billing_id: Optional[str] = Field(alias="billingId", default=None)
|
|
643
|
+
version_number: int = Field(alias="versionNumber")
|
|
644
|
+
additional_meta_data: Optional[Any] = Field(
|
|
645
|
+
alias="additionalMetaData", default=None
|
|
646
|
+
)
|
|
647
|
+
hidden_from_widgets: Optional[List[WidgetType]] = Field(
|
|
648
|
+
alias="hiddenFromWidgets", default=None
|
|
649
|
+
)
|
|
650
|
+
product: "PlanFragmentProduct"
|
|
651
|
+
base_plan: Optional["PlanFragmentBasePlan"] = Field(alias="basePlan", default=None)
|
|
652
|
+
entitlements: Optional[List["PlanFragmentEntitlements"]] = Field(default=None)
|
|
653
|
+
inherited_entitlements: Optional[List["PlanFragmentInheritedEntitlements"]] = Field(
|
|
654
|
+
alias="inheritedEntitlements", default=None
|
|
655
|
+
)
|
|
656
|
+
compatible_addons: Optional[List["PlanFragmentCompatibleAddons"]] = Field(
|
|
657
|
+
alias="compatibleAddons", default=None
|
|
658
|
+
)
|
|
659
|
+
compatible_package_groups: Optional[
|
|
660
|
+
List["PlanFragmentCompatiblePackageGroups"]
|
|
661
|
+
] = Field(alias="compatiblePackageGroups", default=None)
|
|
662
|
+
prices: Optional[List["PlanFragmentPrices"]] = Field(default=None)
|
|
663
|
+
overage_prices: Optional[List["PlanFragmentOveragePrices"]] = Field(
|
|
664
|
+
alias="overagePrices", default=None
|
|
665
|
+
)
|
|
666
|
+
pricing_type: Optional[PricingType] = Field(alias="pricingType", default=None)
|
|
667
|
+
default_trial_config: Optional["PlanFragmentDefaultTrialConfig"] = Field(
|
|
668
|
+
alias="defaultTrialConfig", default=None
|
|
669
|
+
)
|
|
727
670
|
|
|
728
671
|
|
|
729
|
-
class
|
|
730
|
-
|
|
731
|
-
):
|
|
732
|
-
feature_id: str = Field(alias="featureId")
|
|
733
|
-
quantity: float
|
|
672
|
+
class PlanFragmentProduct(ProductFragment):
|
|
673
|
+
pass
|
|
734
674
|
|
|
735
675
|
|
|
736
|
-
class
|
|
737
|
-
|
|
738
|
-
)
|
|
739
|
-
addon_ref_id: str = Field(alias="addonRefId")
|
|
740
|
-
quantity: float
|
|
676
|
+
class PlanFragmentBasePlan(BaseModel):
|
|
677
|
+
ref_id: str = Field(alias="refId")
|
|
678
|
+
display_name: str = Field(alias="displayName")
|
|
741
679
|
|
|
742
680
|
|
|
743
|
-
class
|
|
744
|
-
|
|
745
|
-
):
|
|
746
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
747
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
748
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
681
|
+
class PlanFragmentEntitlements(PackageEntitlementFragment):
|
|
682
|
+
pass
|
|
749
683
|
|
|
750
684
|
|
|
751
|
-
class
|
|
752
|
-
|
|
753
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
754
|
-
change_type: PlanChangeType = Field(alias="changeType")
|
|
755
|
-
billing_period: Optional[BillingPeriod] = Field(alias="billingPeriod", default=None)
|
|
756
|
-
billable_features: Optional[
|
|
757
|
-
List[
|
|
758
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesBillableFeatures"
|
|
759
|
-
]
|
|
760
|
-
] = Field(alias="billableFeatures", default=None)
|
|
761
|
-
addons: Optional[
|
|
762
|
-
List["SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesAddons"]
|
|
763
|
-
] = Field(default=None)
|
|
764
|
-
price_overrides: Optional[
|
|
765
|
-
List[
|
|
766
|
-
"SubscriptionFutureUpdateDataScheduleVariablesPlanChangeVariablesPriceOverrides"
|
|
767
|
-
]
|
|
768
|
-
] = Field(alias="priceOverrides", default=None)
|
|
685
|
+
class PlanFragmentInheritedEntitlements(PackageEntitlementFragment):
|
|
686
|
+
pass
|
|
769
687
|
|
|
770
688
|
|
|
771
|
-
class
|
|
772
|
-
|
|
773
|
-
):
|
|
774
|
-
feature_id: str = Field(alias="featureId")
|
|
775
|
-
quantity: float
|
|
689
|
+
class PlanFragmentCompatibleAddons(AddonFragment):
|
|
690
|
+
pass
|
|
776
691
|
|
|
777
692
|
|
|
778
|
-
class
|
|
779
|
-
|
|
780
|
-
quantity: float
|
|
693
|
+
class PlanFragmentCompatiblePackageGroups(PlanCompatiblePackageGroupsFragment):
|
|
694
|
+
pass
|
|
781
695
|
|
|
782
696
|
|
|
783
|
-
class
|
|
784
|
-
|
|
785
|
-
):
|
|
786
|
-
plan_ref_id: Optional[str] = Field(alias="planRefId", default=None)
|
|
787
|
-
addon_ref_id: Optional[str] = Field(alias="addonRefId", default=None)
|
|
788
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
697
|
+
class PlanFragmentPrices(PriceFragment):
|
|
698
|
+
pass
|
|
789
699
|
|
|
790
700
|
|
|
791
|
-
class
|
|
792
|
-
|
|
793
|
-
):
|
|
794
|
-
typename__: Literal["PlanPriceOverrideChangeVariables"] = Field(alias="__typename")
|
|
795
|
-
plan_ref_id: str = Field(alias="planRefId")
|
|
796
|
-
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
701
|
+
class PlanFragmentOveragePrices(OveragePriceFragment):
|
|
702
|
+
pass
|
|
797
703
|
|
|
798
704
|
|
|
799
|
-
class
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
705
|
+
class PlanFragmentDefaultTrialConfig(BaseModel):
|
|
706
|
+
duration: float
|
|
707
|
+
units: TrialPeriodUnits
|
|
708
|
+
budget: Optional["PlanFragmentDefaultTrialConfigBudget"] = Field(default=None)
|
|
709
|
+
trial_end_behavior: Optional[TrialEndBehavior] = Field(
|
|
710
|
+
alias="trialEndBehavior", default=None
|
|
711
|
+
)
|
|
712
|
+
|
|
713
|
+
|
|
714
|
+
class PlanFragmentDefaultTrialConfigBudget(BaseModel):
|
|
715
|
+
limit: float
|
|
716
|
+
|
|
717
|
+
|
|
718
|
+
class CustomerResourceFragment(BaseModel):
|
|
719
|
+
resource_id: str = Field(alias="resourceId")
|
|
803
720
|
|
|
804
721
|
|
|
805
722
|
class SubscriptionFragment(BaseModel):
|
|
@@ -911,6 +828,89 @@ class SubscriptionFragmentTrialConfiguration(SubscriptionTrialConfigurationFragm
|
|
|
911
828
|
pass
|
|
912
829
|
|
|
913
830
|
|
|
831
|
+
class FeatureFragment(BaseModel):
|
|
832
|
+
typename__: str = Field(alias="__typename")
|
|
833
|
+
feature_type: FeatureType = Field(alias="featureType")
|
|
834
|
+
meter_type: Optional[MeterType] = Field(alias="meterType", default=None)
|
|
835
|
+
feature_units: Optional[str] = Field(alias="featureUnits", default=None)
|
|
836
|
+
feature_units_plural: Optional[str] = Field(
|
|
837
|
+
alias="featureUnitsPlural", default=None
|
|
838
|
+
)
|
|
839
|
+
description: Optional[str] = Field(default=None)
|
|
840
|
+
display_name: str = Field(alias="displayName")
|
|
841
|
+
ref_id: str = Field(alias="refId")
|
|
842
|
+
unit_transformation: Optional["FeatureFragmentUnitTransformation"] = Field(
|
|
843
|
+
alias="unitTransformation", default=None
|
|
844
|
+
)
|
|
845
|
+
|
|
846
|
+
|
|
847
|
+
class FeatureFragmentUnitTransformation(BaseModel):
|
|
848
|
+
divide: float
|
|
849
|
+
round: UnitTransformationRound
|
|
850
|
+
|
|
851
|
+
|
|
852
|
+
class EntitlementFragment(BaseModel):
|
|
853
|
+
typename__: str = Field(alias="__typename")
|
|
854
|
+
is_granted: bool = Field(alias="isGranted")
|
|
855
|
+
access_denied_reason: Optional[AccessDeniedReason] = Field(
|
|
856
|
+
alias="accessDeniedReason", default=None
|
|
857
|
+
)
|
|
858
|
+
customer_id: Optional[str] = Field(alias="customerId", default=None)
|
|
859
|
+
resource_id: Optional[str] = Field(alias="resourceId", default=None)
|
|
860
|
+
usage_limit: Optional[float] = Field(alias="usageLimit", default=None)
|
|
861
|
+
has_unlimited_usage: bool = Field(alias="hasUnlimitedUsage")
|
|
862
|
+
has_soft_limit: Optional[bool] = Field(alias="hasSoftLimit", default=None)
|
|
863
|
+
current_usage: Optional[float] = Field(alias="currentUsage", default=None)
|
|
864
|
+
requested_usage: Optional[float] = Field(alias="requestedUsage", default=None)
|
|
865
|
+
entitlement_updated_at: Optional[Any] = Field(
|
|
866
|
+
alias="entitlementUpdatedAt", default=None
|
|
867
|
+
)
|
|
868
|
+
usage_updated_at: Optional[Any] = Field(alias="usageUpdatedAt", default=None)
|
|
869
|
+
usage_period_anchor: Optional[Any] = Field(alias="usagePeriodAnchor", default=None)
|
|
870
|
+
usage_period_start: Optional[Any] = Field(alias="usagePeriodStart", default=None)
|
|
871
|
+
usage_period_end: Optional[Any] = Field(alias="usagePeriodEnd", default=None)
|
|
872
|
+
next_reset_date: Optional[Any] = Field(alias="nextResetDate", default=None)
|
|
873
|
+
reset_period: Optional[EntitlementResetPeriod] = Field(
|
|
874
|
+
alias="resetPeriod", default=None
|
|
875
|
+
)
|
|
876
|
+
reset_period_configuration: Optional[
|
|
877
|
+
Annotated[
|
|
878
|
+
Union[
|
|
879
|
+
"EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig",
|
|
880
|
+
"EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig",
|
|
881
|
+
"EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig",
|
|
882
|
+
],
|
|
883
|
+
Field(discriminator="typename__"),
|
|
884
|
+
]
|
|
885
|
+
] = Field(alias="resetPeriodConfiguration", default=None)
|
|
886
|
+
feature: Optional["EntitlementFragmentFeature"] = Field(default=None)
|
|
887
|
+
|
|
888
|
+
|
|
889
|
+
class EntitlementFragmentResetPeriodConfigurationMonthlyResetPeriodConfig(BaseModel):
|
|
890
|
+
typename__: Literal["MonthlyResetPeriodConfig"] = Field(alias="__typename")
|
|
891
|
+
monthly_according_to: Optional[MonthlyAccordingTo] = Field(
|
|
892
|
+
alias="monthlyAccordingTo", default=None
|
|
893
|
+
)
|
|
894
|
+
|
|
895
|
+
|
|
896
|
+
class EntitlementFragmentResetPeriodConfigurationWeeklyResetPeriodConfig(BaseModel):
|
|
897
|
+
typename__: Literal["WeeklyResetPeriodConfig"] = Field(alias="__typename")
|
|
898
|
+
weekly_according_to: Optional[WeeklyAccordingTo] = Field(
|
|
899
|
+
alias="weeklyAccordingTo", default=None
|
|
900
|
+
)
|
|
901
|
+
|
|
902
|
+
|
|
903
|
+
class EntitlementFragmentResetPeriodConfigurationYearlyResetPeriodConfig(BaseModel):
|
|
904
|
+
typename__: Literal["YearlyResetPeriodConfig"] = Field(alias="__typename")
|
|
905
|
+
yearly_according_to: Optional[YearlyAccordingTo] = Field(
|
|
906
|
+
alias="yearlyAccordingTo", default=None
|
|
907
|
+
)
|
|
908
|
+
|
|
909
|
+
|
|
910
|
+
class EntitlementFragmentFeature(FeatureFragment):
|
|
911
|
+
pass
|
|
912
|
+
|
|
913
|
+
|
|
914
914
|
class ApplySubscriptionFragment(BaseModel):
|
|
915
915
|
subscription: Optional["ApplySubscriptionFragmentSubscription"] = Field(
|
|
916
916
|
default=None
|
|
@@ -1264,33 +1264,6 @@ class CustomerPortalSubscriptionAddonFragment(BaseModel):
|
|
|
1264
1264
|
quantity: int
|
|
1265
1265
|
|
|
1266
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
1267
|
class CustomerPortalSubscriptionScheduledUpdateDataFragment(BaseModel):
|
|
1295
1268
|
subscription_schedule_type: SubscriptionScheduleType = Field(
|
|
1296
1269
|
alias="subscriptionScheduleType"
|
|
@@ -1460,6 +1433,33 @@ class CustomerPortalSubscriptionScheduledUpdateDataFragmentScheduleVariablesUnit
|
|
|
1460
1433
|
feature_id: Optional[str] = Field(alias="featureId", default=None)
|
|
1461
1434
|
|
|
1462
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")
|
|
@@ -2828,24 +2828,24 @@ class UsageHistoryV2FragmentSeriesPoints(BaseModel):
|
|
|
2828
2828
|
|
|
2829
2829
|
|
|
2830
2830
|
AddonDependencyFragment.model_rebuild()
|
|
2831
|
-
PriceTierFragment.model_rebuild()
|
|
2832
|
-
PriceFragment.model_rebuild()
|
|
2833
2831
|
PackageEntitlementFragment.model_rebuild()
|
|
2832
|
+
PriceTierFragment.model_rebuild()
|
|
2834
2833
|
OveragePriceFragment.model_rebuild()
|
|
2834
|
+
PriceFragment.model_rebuild()
|
|
2835
2835
|
AddonFragment.model_rebuild()
|
|
2836
|
-
FeatureFragment.model_rebuild()
|
|
2837
|
-
EntitlementFragment.model_rebuild()
|
|
2838
|
-
CustomerResourceFragment.model_rebuild()
|
|
2839
2836
|
SlimCustomerFragment.model_rebuild()
|
|
2840
2837
|
TotalPriceFragment.model_rebuild()
|
|
2841
|
-
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2842
|
-
ProductFragment.model_rebuild()
|
|
2843
|
-
PlanFragment.model_rebuild()
|
|
2844
|
-
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2845
|
-
SubscriptionInvoiceFragment.model_rebuild()
|
|
2846
2838
|
SubscriptionTrialConfigurationFragment.model_rebuild()
|
|
2847
2839
|
SubscriptionFutureUpdateData.model_rebuild()
|
|
2840
|
+
SubscriptionScheduledUpdateData.model_rebuild()
|
|
2841
|
+
SubscriptionInvoiceFragment.model_rebuild()
|
|
2842
|
+
ProductFragment.model_rebuild()
|
|
2843
|
+
PlanCompatiblePackageGroupsFragment.model_rebuild()
|
|
2844
|
+
PlanFragment.model_rebuild()
|
|
2845
|
+
CustomerResourceFragment.model_rebuild()
|
|
2848
2846
|
SubscriptionFragment.model_rebuild()
|
|
2847
|
+
FeatureFragment.model_rebuild()
|
|
2848
|
+
EntitlementFragment.model_rebuild()
|
|
2849
2849
|
ApplySubscriptionFragment.model_rebuild()
|
|
2850
2850
|
FontVariantFragment.model_rebuild()
|
|
2851
2851
|
TypographyConfigurationFragment.model_rebuild()
|
|
@@ -2858,8 +2858,8 @@ CustomerPortalBillingInformationFragment.model_rebuild()
|
|
|
2858
2858
|
CustomerPortalConfigurationFragment.model_rebuild()
|
|
2859
2859
|
CustomerPortalEntitlementFragment.model_rebuild()
|
|
2860
2860
|
CustomerPortalSubscriptionAddonFragment.model_rebuild()
|
|
2861
|
-
CustomerPortalSubscriptionPriceFragment.model_rebuild()
|
|
2862
2861
|
CustomerPortalSubscriptionScheduledUpdateDataFragment.model_rebuild()
|
|
2862
|
+
CustomerPortalSubscriptionPriceFragment.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=S2YlhH9HwRbYvPdnWPx4cMApaBIFnqpl1G8NdIIH044,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.1.dist-info/LICENSE,sha256=yhOTQTha61N-7pgHWeRZ0TGF5uq0ifi5U8qU8nHvzME,5127
|
|
165
|
+
stigg_api_client_v2-2.448.1.dist-info/METADATA,sha256=UJoeUveCzXohN4lPEX54L1xRxkbzikLWevdX65apV10,2258
|
|
166
|
+
stigg_api_client_v2-2.448.1.dist-info/WHEEL,sha256=kLuE8m1WYU0Ig0_YEGrXyTtiJvKPpLpDEiChiNyei5Y,88
|
|
167
|
+
stigg_api_client_v2-2.448.1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|