@@ -140,13 +140,13 @@ class FreeActorPricingInfo(BaseModel):
140
140
141
141
class FlatPricePerMonthActorPricingInfo (BaseModel ):
142
142
pricing_model : Annotated [Literal ['FLAT_PRICE_PER_MONTH' ], Field (alias = 'pricingModel' )]
143
- trial_minutes : Annotated [int | None , Field (alias = 'trialMinutes' )]
143
+ trial_minutes : Annotated [int | None , Field (alias = 'trialMinutes' )] = None
144
144
price_per_unit_usd : Annotated [Decimal , Field (alias = 'pricePerUnitUsd' )]
145
145
146
146
147
147
class PricePerDatasetItemActorPricingInfo (BaseModel ):
148
148
pricing_model : Annotated [Literal ['PRICE_PER_DATASET_ITEM' ], Field (alias = 'pricingModel' )]
149
- unit_name : Annotated [str | None , Field (alias = 'unitName' )]
149
+ unit_name : Annotated [str | None , Field (alias = 'unitName' )] = None
150
150
price_per_unit_usd : Annotated [Decimal , Field (alias = 'pricePerUnitUsd' )]
151
151
152
152
@@ -163,7 +163,7 @@ class PricingPerEvent(BaseModel):
163
163
class PayPerEventActorPricingInfo (BaseModel ):
164
164
pricing_model : Annotated [Literal ['PAY_PER_EVENT' ], Field (alias = 'pricingModel' )]
165
165
pricing_per_event : Annotated [PricingPerEvent , Field (alias = 'pricingPerEvent' )]
166
- minimal_max_total_charge_usd : Annotated [Decimal | None , Field (alias = 'minimalMaxTotalChargeUsd' )]
166
+ minimal_max_total_charge_usd : Annotated [Decimal | None , Field (alias = 'minimalMaxTotalChargeUsd' )] = None
167
167
168
168
169
169
PricingModel : TypeAlias = Literal [
0 commit comments