Skip to content

Commit

Permalink
Merge pull request #274 from whdalsrnt/master
Browse files Browse the repository at this point in the history
fix: fix wrong type
  • Loading branch information
whdalsrnt authored Apr 26, 2024
2 parents 425e92f + 383c511 commit 6eba293
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/spaceone/inventory/model/metric_example/request.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,12 +52,12 @@ class MetricExampleSearchQueryRequest(BaseModel):
metric_id: Union[str, None] = None
namespace_id: Union[str, None] = None
user_id: str
workspace_id: Union[list, None] = None
workspace_id: Union[str, None] = None
domain_id: str


class MetricExampleStatQueryRequest(BaseModel):
query: dict
user_id: str
workspace_id: Union[list, None] = None
workspace_id: Union[str, None] = None
domain_id: str

0 comments on commit 6eba293

Please sign in to comment.