Skip to content

Commit

Permalink
Regenerate client
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisburr committed Oct 26, 2023
1 parent 9085eb1 commit 4a55ced
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/diracx/client/models/_models.py
Original file line number Diff line number Diff line change
Expand Up @@ -279,12 +279,15 @@ class JobSearchParams(_serialization.Model):
:vartype search: list[~client.models.JobSearchParamsSearchItem]
:ivar sort: Sort.
:vartype sort: list[~client.models.SortSpec]
:ivar distinct: Distinct.
:vartype distinct: bool
"""

_attribute_map = {
"parameters": {"key": "parameters", "type": "[str]"},
"search": {"key": "search", "type": "[JobSearchParamsSearchItem]"},
"sort": {"key": "sort", "type": "[SortSpec]"},
"distinct": {"key": "distinct", "type": "bool"},
}

def __init__(
Expand All @@ -293,6 +296,7 @@ def __init__(
parameters: Optional[List[str]] = None,
search: List["_models.JobSearchParamsSearchItem"] = [],
sort: List["_models.SortSpec"] = [],
distinct: bool = False,
**kwargs: Any
) -> None:
"""
Expand All @@ -302,11 +306,14 @@ def __init__(
:paramtype search: list[~client.models.JobSearchParamsSearchItem]
:keyword sort: Sort.
:paramtype sort: list[~client.models.SortSpec]
:keyword distinct: Distinct.
:paramtype distinct: bool
"""
super().__init__(**kwargs)
self.parameters = parameters
self.search = search
self.sort = sort
self.distinct = distinct


class JobSearchParamsSearchItem(_serialization.Model):
Expand Down

0 comments on commit 4a55ced

Please sign in to comment.