Skip to content

Commit

Permalink
added ticket closure models
Browse files Browse the repository at this point in the history
  • Loading branch information
parteek65 committed Nov 3, 2024
1 parent bea25a0 commit ed970c3
Showing 1 changed file with 31 additions and 1 deletion.
32 changes: 31 additions & 1 deletion onelens_backend_client_v2/models.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# generated by datamodel-codegen:
# filename: <stdin>
# timestamp: 2024-11-03T12:31:26+00:00
# timestamp: 2024-11-03T13:11:00+00:00

from __future__ import annotations

Expand Down Expand Up @@ -1847,6 +1847,11 @@ class RecommendationUnit(BaseModel):
description="The target attribute of the recommendation",
title="Target Attribute",
)
usage_type_pattern: Optional[str] = Field(
None,
description="The usage type pattern of the recommendation",
title="Usage Type Pattern",
)


class RecommendationUnitFilters(BaseModel):
Expand Down Expand Up @@ -1891,6 +1896,11 @@ class RecommendationUnitWithActionType(BaseModel):
description="The target attribute of the recommendation",
title="Target Attribute",
)
usage_type_pattern: Optional[str] = Field(
None,
description="The usage type pattern of the recommendation",
title="Usage Type Pattern",
)
action_type_service: Optional[str] = Field(
None, description="Action type service", title="Action Type Service"
)
Expand Down Expand Up @@ -2715,6 +2725,11 @@ class UpdateRecommendationUnitRequest(BaseModel):
description="The target attribute of the recommendation",
title="Target Attribute",
)
usage_type_pattern: Optional[str] = Field(
None,
description="The usage type pattern of the recommendation",
title="Usage Type Pattern",
)


class UpdateRecommendationUnitResponse(BaseModel):
Expand All @@ -2736,6 +2751,11 @@ class UpdateRecommendationUnitResponse(BaseModel):
description="The target attribute of the recommendation",
title="Target Attribute",
)
usage_type_pattern: Optional[str] = Field(
None,
description="The usage type pattern of the recommendation",
title="Usage Type Pattern",
)


class UpdateTenantEmbedAppsLinksRequest(BaseModel):
Expand Down Expand Up @@ -3668,6 +3688,11 @@ class CreateRecommendationUnitRequest(BaseModel):
description="The target attribute of the recommendation",
title="Target Attribute",
)
usage_type_pattern: Optional[str] = Field(
None,
description="The usage type pattern of the recommendation",
title="Usage Type Pattern",
)


class CreateRecommendationUnitResponse(BaseModel):
Expand All @@ -3689,6 +3714,11 @@ class CreateRecommendationUnitResponse(BaseModel):
description="The target attribute of the recommendation",
title="Target Attribute",
)
usage_type_pattern: Optional[str] = Field(
None,
description="The usage type pattern of the recommendation",
title="Usage Type Pattern",
)


class CreateTenantEmbedAppsLinksResponse(BaseModel):
Expand Down

0 comments on commit ed970c3

Please sign in to comment.