Skip to content

Commit a420543

Browse files
committed
fixes tests
1 parent 9ffa4c6 commit a420543

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

packages/models-library/src/models_library/api_schemas_webserver/licensed_items.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,16 @@
1515

1616
class LicensedItemGet(OutputSchema):
1717
licensed_item_id: LicensedItemID
18+
1819
name: str
1920
license_key: str | None
2021
licensed_resource_type: LicensedResourceType
22+
2123
pricing_plan_id: PricingPlanId
24+
2225
created_at: datetime
2326
modified_at: datetime
27+
2428
model_config = ConfigDict(
2529
json_schema_extra={
2630
"examples": [
@@ -45,7 +49,7 @@ def from_domain_model(cls, licensed_item_db: LicensedItemDB) -> Self:
4549
include={
4650
"licensed_item_id",
4751
"licensed_resource_name",
48-
"license_key",
52+
"licensed_resource_type" "license_key",
4953
"pricing_plan_id",
5054
"created",
5155
"modified",

0 commit comments

Comments
 (0)