Skip to content

Commit

Permalink
feat: unused field at DataSourceAccount
Browse files Browse the repository at this point in the history
  • Loading branch information
ImMin5 committed Apr 26, 2024
1 parent ecdf791 commit 671c8ed
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@
class DataSourceAccountUpdateRequest(BaseModel):
data_source_id: str
account_id: str
service_account_id: Union[str, None] = None
project_id: Union[str, None] = None
workspace_id: Union[str, None] = None
domain_id: str

Expand All @@ -36,8 +34,6 @@ class DataSourceAccountSearchQueryRequest(BaseModel):
query: Union[dict, None] = None
data_source_id: Union[str, None] = None
account_id: Union[str, None] = None
service_account_id: Union[str, None] = None
project_id: Union[str, None] = None
workspace_id: Union[str, None] = None
domain_id: str

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ class DataSourceAccountResponse(BaseModel):
data_source_id: Union[str, None] = None
name: Union[str, None] = None
is_sync: Union[bool, None] = None
service_account_id: Union[str, None] = None
project_id: Union[str, None] = None
workspace_id: Union[str, None] = None
domain_id: Union[str, None] = None
created_at: Union[datetime, None] = None
Expand Down

0 comments on commit 671c8ed

Please sign in to comment.