We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a844700 commit dbcab1aCopy full SHA for dbcab1a
1 file changed
builder/utils.py
@@ -56,6 +56,7 @@ class Block:
56
visibilityCondition: str | None = None
57
elementBeforeConversion: str | None = None
58
customAttributes: dict | None = None
59
+ dynamicValues: list[BlockDataKey] | None = None
60
61
def __init__(self, **kwargs) -> None:
62
for key, value in kwargs.items():
@@ -87,6 +88,7 @@ def as_dict(self):
87
88
"visibilityCondition": self.visibilityCondition,
89
"elementBeforeConversion": self.elementBeforeConversion,
90
"customAttributes": self.customAttributes,
91
+ "dynamicValues": self.dynamicValues,
92
}
93
94
0 commit comments