Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .generator/schemas/v2/openapi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65120,9 +65120,6 @@ components:
filter:
description: Filter expression applied to the recommendations.
type: string
scope:
description: Recommendations scope. Defaults to `ccm`; use `experiment` for experimental recommendations or `*` for both.
type: string
sort:
description: Ordered list of sort clauses applied to the result set.
items:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,22 +28,19 @@ def openapi_types(_):

return {
"filter": (str,),
"scope": (str,),
"sort": ([RecommendationsFilterRequestSortItems],),
"view": (str,),
}

attribute_map = {
"filter": "filter",
"scope": "scope",
"sort": "sort",
"view": "view",
}

def __init__(
self_,
filter: Union[str, UnsetType] = unset,
scope: Union[str, UnsetType] = unset,
sort: Union[List[RecommendationsFilterRequestSortItems], UnsetType] = unset,
view: Union[str, UnsetType] = unset,
**kwargs,
Expand All @@ -54,9 +51,6 @@ def __init__(
:param filter: Filter expression applied to the recommendations.
:type filter: str, optional

:param scope: Recommendations scope. Defaults to ``ccm`` ; use ``experiment`` for experimental recommendations or ``*`` for both.
:type scope: str, optional

:param sort: Ordered list of sort clauses applied to the result set.
:type sort: [RecommendationsFilterRequestSortItems], optional

Expand All @@ -65,8 +59,6 @@ def __init__(
"""
if filter is not unset:
kwargs["filter"] = filter
if scope is not unset:
kwargs["scope"] = scope
if sort is not unset:
kwargs["sort"] = sort
if view is not unset:
Expand Down
Loading