We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbb663a commit 1f36a41Copy full SHA for 1f36a41
1 file changed
gooddata-sdk/gooddata_sdk/catalog/filter_by.py
@@ -1,6 +1,8 @@
1
# (C) 2024 GoodData Corporation
2
from __future__ import annotations
3
4
+from typing import Optional
5
+
6
import attr
7
from gooddata_api_client.model.filter_by import FilterBy
8
@@ -9,7 +11,7 @@
9
11
10
12
@attr.s(auto_attribs=True, kw_only=True)
13
class CatalogFilterBy(Base):
- label_type: str
14
+ label_type: Optional[str]
15
16
@staticmethod
17
def client_class() -> type[FilterBy]:
0 commit comments