You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/gooddata-sdk/src/gooddata_sdk/catalog/workspace/declarative_model/workspace/logical_model/dataset/dataset.py
+10Lines changed: 10 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -82,6 +82,8 @@ class CatalogDeclarativeAttribute(Base):
82
82
tags: Optional[list[str]] =None
83
83
is_hidden: Optional[bool] =None
84
84
locale: Optional[str] =None
85
+
is_nullable: Optional[bool] =None
86
+
null_value: Optional[str] =None
85
87
86
88
@staticmethod
87
89
defclient_class() ->type[DeclarativeAttribute]:
@@ -97,6 +99,8 @@ class CatalogDeclarativeFact(Base):
97
99
description: Optional[str] =None
98
100
tags: Optional[list[str]] =None
99
101
is_hidden: Optional[bool] =None
102
+
is_nullable: Optional[bool] =None
103
+
null_value: Optional[str] =None
100
104
101
105
@staticmethod
102
106
defclient_class() ->type[DeclarativeFact]:
@@ -121,6 +125,8 @@ class CatalogDeclarativeAggregatedFact(Base):
0 commit comments